Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

388

389

390

391

392

393

394

395

396

397

398

399

400

401

402

403

404

405

406

407

408

409

410

411

412

413

414

415

416

417

418

419

420

421

422

423

424

425

426

427

428

429

430

431

432

433

434

435

436

437

438

439

440

441

442

443

444

445

446

447

""" 

Utilities and mock modules for unittests of statistics modules 

 

""" 

import os 

import io 

import time 

import sys 

import threading 

import tempfile 

import json 

import signal 

 

import msgq 

import isc.config.cfgmgr 

import stats 

import stats_httpd 

 

class SignalHandler(): 

    """A signal handler class for deadlock in unittest""" 

    def __init__(self, fail_handler, timeout=20): 

        """sets a schedule in SIGARM for invoking the handler via 

        unittest.TestCase after timeout seconds (default is 20)""" 

        self.fail_handler = fail_handler 

        self.orig_handler = signal.signal(signal.SIGALRM, self.sig_handler) 

        signal.alarm(timeout) 

 

    def reset(self): 

        """resets the schedule in SIGALRM""" 

        signal.alarm(0) 

        signal.signal(signal.SIGALRM, self.orig_handler) 

 

    def sig_handler(self, signal, frame): 

        """envokes unittest.TestCase.fail as a signal handler""" 

        self.fail_handler("A deadlock might be detected") 

 

def send_command(command_name, module_name, params=None, session=None, nonblock=False, timeout=None): 

39    if session is not None: 

        cc_session = session 

    else: 

        cc_session = isc.cc.Session() 

43    if timeout is not None: 

        orig_timeout = cc_session.get_timeout() 

        cc_session.set_timeout(timeout * 1000) 

    command = isc.config.ccsession.create_command(command_name, params) 

    seq = cc_session.group_sendmsg(command, module_name) 

    try: 

        (answer, env) = cc_session.group_recvmsg(nonblock, seq) 

54        if answer: 

            return isc.config.ccsession.parse_answer(answer) 

    except isc.cc.SessionTimeout: 

        pass 

    finally: 

55        if timeout is not None: 

            cc_session.set_timeout(orig_timeout) 

exit        if session is None: 

            cc_session.close() 

 

def send_shutdown(module_name, **kwargs): 

    return send_command("shutdown", module_name, **kwargs) 

 

class ThreadingServerManager: 

    def __init__(self, server, *args, **kwargs): 

        self.server = server(*args, **kwargs) 

        self.server_name = server.__name__ 

        self.server._thread = threading.Thread( 

            name=self.server_name, target=self.server.run) 

        self.server._thread.daemon = True 

 

    def run(self): 

        self.server._thread.start() 

        self.server._started.wait() 

        self.server._started.clear() 

 

    def shutdown(self, blocking=False): 

        """Shut down the server by calling its own shutdown() method. 

           Then wait for its thread to finish. If blocking is True, 

           the thread.join() blocks until the thread finishes. If not, 

           it uses a zero timeout. The latter is necessary in a number 

           of existing tests. We should redo this part (we should not 

           even need threads in most, if not all, of these threads, see 

           ticket #1668)""" 

        self.server.shutdown() 

        if blocking: 

            self.server._thread.join() 

        else: 

            self.server._thread.join(0) # timeout is 0 

 

def do_nothing(*args, **kwargs): pass 

 

class dummy_sys: 

    """Dummy for sys""" 

    class dummy_io: 

        write = do_nothing 

    stdout = stderr = dummy_io() 

 

class MockMsgq: 

    def __init__(self): 

        self._started = threading.Event() 

        # suppress output to stdout and stderr 

        msgq.sys = dummy_sys() 

        msgq.print = do_nothing 

        self.msgq = msgq.MsgQ(verbose=False) 

        result = self.msgq.setup() 

106        if result: 

            sys.exit("Error on Msgq startup: %s" % result) 

 

    def run(self): 

        self._started.set() 

        try: 

            self.msgq.run() 

        except Exception: 

            pass 

        finally: 

            # explicitly shut down the socket of the msgq before 

            # shutting down the msgq 

            self.msgq.listen_socket.shutdown(msgq.socket.SHUT_RDWR) 

            self.msgq.shutdown() 

 

    def shutdown(self): 

        # do nothing 

        pass 

 

class MockCfgmgr: 

    def __init__(self): 

        self._started = threading.Event() 

        self.cfgmgr = isc.config.cfgmgr.ConfigManager( 

            os.environ['CONFIG_TESTDATA_PATH'], "b10-config.db") 

        self.cfgmgr.read_config() 

 

    def run(self): 

        self._started.set() 

        try: 

            self.cfgmgr.run() 

        except Exception: 

            pass 

 

    def shutdown(self): 

        self.cfgmgr.running = False 

 

class MockBoss: 

    spec_str = """\ 

{ 

  "module_spec": { 

    "module_name": "Boss", 

    "module_description": "Mock Master process", 

    "config_data": [], 

    "commands": [ 

      { 

        "command_name": "sendstats", 

        "command_description": "Send data to a statistics module at once", 

        "command_args": [] 

      }, 

      { 

        "command_name": "show_processes", 

        "command_description": "List the running BIND 10 processes", 

        "command_args": [] 

      } 

    ], 

    "statistics": [ 

      { 

        "item_name": "boot_time", 

        "item_type": "string", 

        "item_optional": false, 

        "item_default": "1970-01-01T00:00:00Z", 

        "item_title": "Boot time", 

        "item_description": "A date time when bind10 process starts initially", 

        "item_format": "date-time" 

      } 

    ] 

  } 

} 

""" 

    _BASETIME = (2011, 6, 22, 8, 14, 8, 2, 173, 0) 

 

    def __init__(self): 

        self._started = threading.Event() 

        self.running = False 

        self.spec_file = io.StringIO(self.spec_str) 

        # create ModuleCCSession object 

        self.mccs = isc.config.ModuleCCSession( 

            self.spec_file, 

            self.config_handler, 

            self.command_handler) 

        self.spec_file.close() 

        self.cc_session = self.mccs._session 

        self.got_command_name = '' 

        self.pid_list = [[ 9999, "b10-auth"   ], 

                         [ 9998, "b10-auth-2" ], 

                         [ 9997, "b10-auth-3" ], 

                         [ 9996, "b10-auth-4" ]] 

 

    def run(self): 

        self.mccs.start() 

        self.running = True 

        self._started.set() 

        try: 

            while self.running: 

                self.mccs.check_command(False) 

        except Exception: 

            pass 

 

    def shutdown(self): 

        self.running = False 

 

    def config_handler(self, new_config): 

        return isc.config.create_answer(0) 

 

    def command_handler(self, command, *args, **kwargs): 

        self._started.set() 

        self.got_command_name = command 

        params = { "owner": "Boss", 

                   "data": { 

                'boot_time': time.strftime('%Y-%m-%dT%H:%M:%SZ', self._BASETIME) 

                } 

                   } 

218        if command == 'sendstats': 

            send_command("set", "Stats", params=params, session=self.cc_session) 

            return isc.config.create_answer(0) 

        elif command == 'getstats': 

            return isc.config.create_answer(0, params) 

226        elif command == 'show_processes': 

            # Return dummy pids 

            return isc.config.create_answer( 

                0, self.pid_list) 

        return isc.config.create_answer(1, "Unknown Command") 

 

class MockAuth: 

    spec_str = """\ 

{ 

  "module_spec": { 

    "module_name": "Auth", 

    "module_description": "Mock Authoritative service", 

    "config_data": [], 

    "commands": [ 

      { 

        "command_name": "sendstats", 

        "command_description": "Send data to a statistics module at once", 

        "command_args": [] 

      } 

    ], 

    "statistics": [ 

      { 

        "item_name": "queries.tcp", 

        "item_type": "integer", 

        "item_optional": false, 

        "item_default": 0, 

        "item_title": "Queries TCP", 

        "item_description": "A number of total query counts which all auth servers receive over TCP since they started initially" 

      }, 

      { 

        "item_name": "queries.udp", 

        "item_type": "integer", 

        "item_optional": false, 

        "item_default": 0, 

        "item_title": "Queries UDP", 

        "item_description": "A number of total query counts which all auth servers receive over UDP since they started initially" 

      }, 

      { 

        "item_name": "queries.perzone", 

        "item_type": "list", 

        "item_optional": false, 

        "item_default": [ 

          { 

            "zonename" : "test1.example", 

            "queries.udp" : 1, 

            "queries.tcp" : 2 

          }, 

          { 

            "zonename" : "test2.example", 

            "queries.udp" : 3, 

            "queries.tcp" : 4 

          } 

        ], 

        "item_title": "Queries per zone", 

        "item_description": "Queries per zone", 

        "list_item_spec": { 

          "item_name": "zones", 

          "item_type": "map", 

          "item_optional": false, 

          "item_default": {}, 

          "map_item_spec": [ 

            { 

              "item_name": "zonename", 

              "item_type": "string", 

              "item_optional": false, 

              "item_default": "", 

              "item_title": "Zonename", 

              "item_description": "Zonename" 

            }, 

            { 

              "item_name": "queries.udp", 

              "item_type": "integer", 

              "item_optional": false, 

              "item_default": 0, 

              "item_title": "Queries UDP per zone", 

              "item_description": "A number of UDP query counts per zone" 

            }, 

            { 

              "item_name": "queries.tcp", 

              "item_type": "integer", 

              "item_optional": false, 

              "item_default": 0, 

              "item_title": "Queries TCP per zone", 

              "item_description": "A number of TCP query counts per zone" 

            } 

          ] 

        } 

      } 

    ] 

  } 

} 

""" 

    def __init__(self): 

        self._started = threading.Event() 

        self.running = False 

        self.spec_file = io.StringIO(self.spec_str) 

        # create ModuleCCSession object 

        self.mccs = isc.config.ModuleCCSession( 

            self.spec_file, 

            self.config_handler, 

            self.command_handler) 

        self.spec_file.close() 

        self.cc_session = self.mccs._session 

        self.got_command_name = '' 

        self.queries_tcp = 3 

        self.queries_udp = 2 

        self.queries_per_zone = [{ 

                'zonename': 'test1.example', 

                'queries.tcp': 5, 

                'queries.udp': 4 

                }] 

 

    def run(self): 

        self.mccs.start() 

        self.running = True 

        self._started.set() 

        try: 

exit            while self.running: 

                self.mccs.check_command(False) 

        except Exception: 

            pass 

 

    def shutdown(self): 

        self.running = False 

 

    def config_handler(self, new_config): 

        return isc.config.create_answer(0) 

 

    def command_handler(self, command, *args, **kwargs): 

        self.got_command_name = command 

        if command == 'sendstats': 

            params = { "owner": "Auth", 

                       "data": { 'queries.tcp': self.queries_tcp, 

                                 'queries.udp': self.queries_udp, 

                                 'queries.perzone' : self.queries_per_zone } } 

            return send_command("set", "Stats", params=params, session=self.cc_session) 

        return isc.config.create_answer(1, "Unknown Command") 

 

class MyStats(stats.Stats): 

    def __init__(self): 

        self._started = threading.Event() 

        stats.Stats.__init__(self) 

 

    def run(self): 

        self._started.set() 

        try: 

            self.start() 

        except Exception: 

            pass 

 

    def shutdown(self): 

        self.command_shutdown() 

 

class MyStatsHttpd(stats_httpd.StatsHttpd): 

    ORIG_SPECFILE_LOCATION = stats_httpd.SPECFILE_LOCATION 

    def __init__(self, *server_address): 

        self._started = threading.Event() 

388        if server_address: 

            stats_httpd.SPECFILE_LOCATION = self.create_specfile(*server_address) 

            try: 

                stats_httpd.StatsHttpd.__init__(self) 

            finally: 

386                if hasattr(stats_httpd.SPECFILE_LOCATION, "close"): 

                    stats_httpd.SPECFILE_LOCATION.close() 

                stats_httpd.SPECFILE_LOCATION = self.ORIG_SPECFILE_LOCATION 

        else: 

            stats_httpd.StatsHttpd.__init__(self) 

 

    def create_specfile(self, *server_address): 

        spec_io = open(self.ORIG_SPECFILE_LOCATION) 

        try: 

            spec = json.load(spec_io) 

            spec_io.close() 

            config = spec['module_spec']['config_data'] 

401            for i in range(len(config)): 

396                if config[i]['item_name'] == 'listen_on': 

                    config[i]['item_default'] = \ 

                        [ dict(address=a[0], port=a[1]) for a in server_address ] 

                    break 

            return io.StringIO(json.dumps(spec)) 

        finally: 

            spec_io.close() 

 

    def run(self): 

        self._started.set() 

        try: 

            self.start() 

        except Exception: 

            pass 

 

    def shutdown(self): 

        self.command_handler('shutdown', None) 

 

class BaseModules: 

    def __init__(self): 

        # MockMsgq 

        self.msgq = ThreadingServerManager(MockMsgq) 

        self.msgq.run() 

        # Check whether msgq is ready. A SessionTimeout is raised here if not. 

        isc.cc.session.Session().close() 

        # MockCfgmgr 

        self.cfgmgr = ThreadingServerManager(MockCfgmgr) 

        self.cfgmgr.run() 

        # MockBoss 

        self.boss = ThreadingServerManager(MockBoss) 

        self.boss.run() 

        # MockAuth 

        self.auth = ThreadingServerManager(MockAuth) 

        self.auth.run() 

 

    def shutdown(self): 

        # MockAuth 

        self.auth.shutdown() 

        # MockBoss 

        self.boss.shutdown() 

        # MockCfgmgr 

        self.cfgmgr.shutdown() 

        # MockMsgq 

        self.msgq.shutdown() 

        # remove the unused socket file 

        socket_file = self.msgq.server.msgq.socket_file 

        try: 

exit            if os.path.exists(socket_file): 

                os.remove(socket_file) 

        except OSError: 

            pass