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

448

449

450

451

452

453

454

455

456

457

458

459

460

461

462

463

464

465

466

467

468

469

470

471

472

473

474

475

476

477

478

479

480

481

482

483

484

# Copyright (C) 2009  Internet Systems Consortium. 

# 

# Permission to use, copy, modify, and distribute this software for any 

# purpose with or without fee is hereby granted, provided that the above 

# copyright notice and this permission notice appear in all copies. 

# 

# THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SYSTEMS CONSORTIUM 

# DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL 

# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL 

# INTERNET SYSTEMS CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, 

# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING 

# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, 

# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION 

# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 

 

 

import unittest 

import isc.cc.data 

import os 

import io 

import sys 

import socket 

import http.client 

import pwd 

import getpass 

from optparse import OptionParser 

from isc.config.config_data import ConfigData, MultiConfigData 

from isc.config.module_spec import ModuleSpec 

from isc.testutils.parse_args import TestOptParser, OptsError 

from bindctl_main import set_bindctl_options 

from bindctl import cmdparse 

from bindctl import bindcmd 

from bindctl.moduleinfo import * 

from bindctl.exception import * 

try: 

    from collections import OrderedDict 

except ImportError: 

    from mycollections import OrderedDict 

 

class TestCmdLex(unittest.TestCase): 

 

    def my_assert_raise(self, exception_type, cmd_line): 

        self.assertRaises(exception_type, cmdparse.BindCmdParse, cmd_line) 

 

 

    def testCommandWithoutParameter(self): 

        cmd = cmdparse.BindCmdParse("zone add") 

        assert cmd.module == "zone" 

        assert cmd.command == "add" 

        self.assertEqual(len(cmd.params), 0) 

 

 

    def testCommandWithParameters(self): 

        lines = {"zone add zone_name = cnnic.cn, file = cnnic.cn.file master=1.1.1.1", 

                 "zone add zone_name = \"cnnic.cn\", file ='cnnic.cn.file' master=1.1.1.1  ", 

                 "zone add zone_name = 'cnnic.cn\", file ='cnnic.cn.file' master=1.1.1.1, " } 

 

        for cmd_line in lines: 

            cmd = cmdparse.BindCmdParse(cmd_line) 

            assert cmd.module == "zone" 

            assert cmd.command == "add" 

            assert cmd.params["zone_name"] == "cnnic.cn" 

            assert cmd.params["file"] == "cnnic.cn.file" 

            assert cmd.params["master"] == '1.1.1.1' 

 

    def testCommandWithParamters_2(self): 

        '''Test whether the parameters in key=value can be parsed properly.''' 

        cmd = cmdparse.BindCmdParse('zone cmd name = 1:34::2') 

        self.assertEqual(cmd.params['name'], '1:34::2') 

 

        cmd = cmdparse.BindCmdParse('zone cmd name = 1\"\'34**&2 value=44\"\'\"') 

        self.assertEqual(cmd.params['name'], '1\"\'34**&2') 

        self.assertEqual(cmd.params['value'], '44\"\'\"') 

 

        cmd = cmdparse.BindCmdParse('zone cmd name = 1\"\'34**&2 ,value=  44\"\'\"') 

        self.assertEqual(cmd.params['name'], '1\"\'34**&2') 

        self.assertEqual(cmd.params['value'], '44\"\'\"') 

 

        cmd = cmdparse.BindCmdParse('zone cmd name =  1\'34**&2value=44\"\'\" value = \"==============\'') 

        self.assertEqual(cmd.params['name'], '1\'34**&2value=44\"\'\"') 

        self.assertEqual(cmd.params['value'], '==============') 

 

        cmd = cmdparse.BindCmdParse('zone cmd name =    \"1234, 567890 \" value ==&*/') 

        self.assertEqual(cmd.params['name'], '1234, 567890 ') 

        self.assertEqual(cmd.params['value'], '=&*/') 

 

    def testCommandWithListParam(self): 

        cmd = cmdparse.BindCmdParse("zone set zone_name='cnnic.cn', master='1.1.1.1, 2.2.2.2'") 

        assert cmd.params["master"] == '1.1.1.1, 2.2.2.2' 

 

    def testCommandWithHelpParam(self): 

        cmd = cmdparse.BindCmdParse("zone add help") 

        assert cmd.params["help"] == "help" 

 

        cmd = cmdparse.BindCmdParse("zone add help *&)&)*&&$#$^%") 

        assert cmd.params["help"] == "help" 

        self.assertEqual(len(cmd.params), 1) 

 

 

    def testCmdModuleNameFormatError(self): 

        self.my_assert_raise(CmdModuleNameFormatError, "zone=good") 

        self.my_assert_raise(CmdModuleNameFormatError, "zo/ne") 

        self.my_assert_raise(CmdModuleNameFormatError, "") 

        self.my_assert_raise(CmdModuleNameFormatError, "=zone") 

        self.my_assert_raise(CmdModuleNameFormatError, "zone,") 

 

 

    def testCmdMissCommandNameFormatError(self): 

        self.my_assert_raise(CmdMissCommandNameFormatError, "zone") 

        self.my_assert_raise(CmdMissCommandNameFormatError, "zone ") 

        self.my_assert_raise(CmdMissCommandNameFormatError, "help ") 

 

 

    def testCmdCommandNameFormatError(self): 

        self.my_assert_raise(CmdCommandNameFormatError, "zone =d") 

        self.my_assert_raise(CmdCommandNameFormatError, "zone z=d") 

        self.my_assert_raise(CmdCommandNameFormatError, "zone z-d ") 

        self.my_assert_raise(CmdCommandNameFormatError, "zone zdd/") 

        self.my_assert_raise(CmdCommandNameFormatError, "zone zdd/ \"") 

 

class TestCmdSyntax(unittest.TestCase): 

 

    def _create_bindcmd(self): 

        """Create one bindcmd""" 

 

        tool = bindcmd.BindCmdInterpreter() 

        string_spec = { 'item_type' : 'string', 

                       'item_optional' : False, 

                       'item_default' : ''} 

        int_spec = { 'item_type' : 'integer', 

                       'item_optional' : False, 

                       'item_default' : 10} 

        zone_file_param = ParamInfo(name = "zone_file", param_spec = string_spec) 

        zone_name = ParamInfo(name = 'zone_name', param_spec = string_spec) 

        load_cmd = CommandInfo(name = "load") 

        load_cmd.add_param(zone_file_param) 

        load_cmd.add_param(zone_name) 

 

        param_master = ParamInfo(name = "master", optional = True, param_spec = string_spec) 

        param_master = ParamInfo(name = "port", optional = True, param_spec = int_spec) 

        param_allow_update = ParamInfo(name = "allow_update", optional = True, param_spec = string_spec) 

        set_cmd = CommandInfo(name = "set") 

        set_cmd.add_param(param_master) 

        set_cmd.add_param(param_allow_update) 

        set_cmd.add_param(zone_name) 

 

        reload_all_cmd = CommandInfo(name = "reload_all") 

 

        zone_module = ModuleInfo(name = "zone") 

        zone_module.add_command(load_cmd) 

        zone_module.add_command(set_cmd) 

        zone_module.add_command(reload_all_cmd) 

 

        tool.add_module_info(zone_module) 

        return tool 

 

 

    def setUp(self): 

        self.bindcmd = self._create_bindcmd() 

 

 

    def no_assert_raise(self, cmd_line): 

        cmd = cmdparse.BindCmdParse(cmd_line) 

        self.bindcmd._validate_cmd(cmd) 

 

 

    def my_assert_raise(self, exception_type, cmd_line): 

        cmd = cmdparse.BindCmdParse(cmd_line) 

        self.assertRaises(exception_type, self.bindcmd._validate_cmd, cmd) 

 

 

    def testValidateSuccess(self): 

        self.no_assert_raise("zone load zone_file='cn' zone_name='cn'") 

        self.no_assert_raise("zone load zone_file='cn', zone_name='cn', ") 

        self.no_assert_raise("zone help ") 

        self.no_assert_raise("zone load help ") 

        self.no_assert_raise("zone help help='dd' ") 

        self.no_assert_raise("zone set allow_update='1.1.1.1' zone_name='cn'") 

        self.no_assert_raise("zone set zone_name='cn'") 

        self.my_assert_raise(isc.cc.data.DataTypeError, "zone set zone_name ='cn', port='cn'") 

        self.no_assert_raise("zone reload_all") 

 

    def testCmdUnknownModuleSyntaxError(self): 

        self.my_assert_raise(CmdUnknownModuleSyntaxError, "zoned d") 

        self.my_assert_raise(CmdUnknownModuleSyntaxError, "dd dd  ") 

 

    def testCmdUnknownCmdSyntaxError(self): 

        self.my_assert_raise(CmdUnknownCmdSyntaxError, "zone dd") 

 

    def testCmdMissParamSyntaxError(self): 

        self.my_assert_raise(CmdMissParamSyntaxError, "zone load zone_file='cn'") 

        self.my_assert_raise(CmdMissParamSyntaxError, "zone load zone_name='cn'") 

        self.my_assert_raise(CmdMissParamSyntaxError, "zone set allow_update='1.1.1.1'") 

        self.my_assert_raise(CmdMissParamSyntaxError, "zone set ") 

 

    def testCmdUnknownParamSyntaxError(self): 

        self.my_assert_raise(CmdUnknownParamSyntaxError, "zone load zone_d='cn'") 

        self.my_assert_raise(CmdUnknownParamSyntaxError, "zone reload_all zone_name = 'cn'") 

        self.my_assert_raise(CmdUnknownParamSyntaxError, "zone help a b c") 

 

class TestModuleInfo(unittest.TestCase): 

 

    def test_get_param_name_by_position(self): 

        cmd = CommandInfo('command') 

        cmd.add_param(ParamInfo('name')) 

        cmd.add_param(ParamInfo('age')) 

        cmd.add_param(ParamInfo('data', optional = True)) 

        cmd.add_param(ParamInfo('sex')) 

        self.assertEqual('name', cmd.get_param_name_by_position(0, 2)) 

        self.assertEqual('age', cmd.get_param_name_by_position(1, 2)) 

        self.assertEqual('sex', cmd.get_param_name_by_position(2, 3)) 

        self.assertEqual('data', cmd.get_param_name_by_position(2, 4)) 

        self.assertEqual('data', cmd.get_param_name_by_position(2, 4)) 

 

        self.assertRaises(KeyError, cmd.get_param_name_by_position, 4, 4) 

 

 

 

class TestNameSequence(unittest.TestCase): 

    """ 

    Test if the module/command/parameters is saved in the order creation 

    """ 

 

    def _create_bindcmd(self): 

        """Create one bindcmd""" 

 

        self._cmd = CommandInfo(name = "load") 

        self.module = ModuleInfo(name = "zone") 

        self.tool = bindcmd.BindCmdInterpreter() 

        for random_str in self.random_names: 

            self._cmd.add_param(ParamInfo(name = random_str)) 

            self.module.add_command(CommandInfo(name = random_str)) 

            self.tool.add_module_info(ModuleInfo(name = random_str)) 

 

    def setUp(self): 

        self.random_names = ['1erdfeDDWsd', '3fe', '2009erd', 'Fe231', 'tere142', 'rei8WD'] 

        self._create_bindcmd() 

 

    def testSequence(self): 

        param_names = self._cmd.get_param_names() 

        cmd_names = self.module.get_command_names() 

        module_names = self.tool.get_module_names() 

 

        i = 0 

        while i < len(self.random_names): 

            assert self.random_names[i] == param_names[i+1] 

            assert self.random_names[i] == cmd_names[i+1] 

            assert self.random_names[i] == module_names[i+1] 

            i = i + 1 

 

# tine class to fake a UIModuleCCSession, but only the config data 

# parts for the next set of tests 

class FakeCCSession(MultiConfigData): 

    def __init__(self): 

        self._local_changes = {} 

        self._current_config = {} 

        self._specifications = {} 

        self.add_foo_spec() 

 

    def add_foo_spec(self): 

        spec = { "module_name": "foo", 

                 "config_data": [ 

                 { "item_name": "an_int", 

                   "item_type": "integer", 

                   "item_optional": False, 

                   "item_default": 1 

                 }, 

                 { "item_name": "a_list", 

                   "item_type": "list", 

                   "item_optional": False, 

                   "item_default": [], 

                   "list_item_spec": 

                   { "item_name": "a_string", 

                     "item_type": "string", 

                     "item_optional": False, 

                     "item_default": "bar" 

                   } 

                 } 

                 ] 

               } 

        self.set_specification(ModuleSpec(spec)) 

 

 

# fake socket 

class FakeSocket(): 

    def __init__(self): 

        self.run = True 

 

    def connect(self, to): 

        if not self.run: 

            raise socket.error 

 

    def close(self): 

        self.run = False 

 

    def send(self, data): 

        if not self.run: 

            raise socket.error 

        return len(data) 

 

    def makefile(self, type): 

        return self 

 

    def sendall(self, data): 

307        if not self.run: 

            raise socket.error 

        return len(data) 

 

 

class TestConfigCommands(unittest.TestCase): 

    def setUp(self): 

        self.tool = bindcmd.BindCmdInterpreter() 

        mod_info = ModuleInfo(name = "foo") 

        self.tool.add_module_info(mod_info) 

        self.tool.config_data = FakeCCSession() 

        self.stdout_backup = sys.stdout 

 

    def test_precmd(self): 

        def update_all_modules_info(): 

            raise socket.error 

        def precmd(line): 

            self.tool.precmd(line) 

        self.tool._update_all_modules_info = update_all_modules_info 

        # If line is equals to 'EOF', _update_all_modules_info() shouldn't be called 

        precmd('EOF') 

        self.assertRaises(socket.error, precmd, 'continue') 

 

    def test_run(self): 

        def login_to_cmdctl(): 

            return True 

        def cmd_loop(): 

            self.tool._send_message("/module_spec", None) 

 

        self.tool.login_to_cmdctl = login_to_cmdctl 

        # rewrite cmdloop() to avoid interactive mode 

        self.tool.cmdloop = cmd_loop 

 

        self.tool.conn.sock = FakeSocket() 

        self.tool.conn.sock.close() 

 

        # validate log message for socket.err 

        socket_err_output = io.StringIO() 

        sys.stdout = socket_err_output 

        self.assertEqual(1, self.tool.run()) 

        self.assertEqual("Failed to send request, the connection is closed\n", 

                         socket_err_output.getvalue()) 

        socket_err_output.close() 

 

        # validate log message for http.client.CannotSendRequest 

        cannot_send_output = io.StringIO() 

        sys.stdout = cannot_send_output 

        self.assertEqual(1, self.tool.run()) 

        self.assertEqual("Can not send request, the connection is busy\n", 

                         cannot_send_output.getvalue()) 

        cannot_send_output.close() 

 

    def test_apply_cfg_command_int(self): 

        self.tool.location = '/' 

 

        self.assertEqual((1, MultiConfigData.DEFAULT), 

                         self.tool.config_data.get_value("/foo/an_int")) 

 

        cmd = cmdparse.BindCmdParse("config set identifier=\"foo/an_int\" value=\"5\"") 

        self.tool.apply_config_cmd(cmd) 

        self.assertEqual((5, MultiConfigData.LOCAL), 

                         self.tool.config_data.get_value("/foo/an_int")) 

 

        cmd = cmdparse.BindCmdParse("config unset identifier=\"foo/an_int\"") 

        self.tool.apply_config_cmd(cmd) 

 

        self.assertEqual((1, MultiConfigData.DEFAULT), 

                         self.tool.config_data.get_value("/foo/an_int")) 

 

        # this should raise a NotFoundError 

        cmd = cmdparse.BindCmdParse("config set identifier=\"foo/bar\" value=\"[]\"") 

        self.assertRaises(isc.cc.data.DataNotFoundError, self.tool.apply_config_cmd, cmd) 

 

        cmd = cmdparse.BindCmdParse("config unset identifier=\"foo/bar\"") 

        self.assertRaises(isc.cc.data.DataNotFoundError, 

                          self.tool.apply_config_cmd, cmd) 

 

        # this should raise a TypeError 

        cmd = cmdparse.BindCmdParse("config set identifier=\"foo/an_int\" value=\"[]\"") 

        self.assertRaises(isc.cc.data.DataTypeError, self.tool.apply_config_cmd, cmd) 

 

    # this is a very specific one for use with a set of list tests 

    # to try out the flexibility of the parser (only in the next test) 

    def clt(self, full_cmd_string, item_value): 

        cmd = cmdparse.BindCmdParse(full_cmd_string) 

        self.tool.apply_config_cmd(cmd) 

        self.assertEqual(([item_value], MultiConfigData.LOCAL), 

                         self.tool.config_data.get_value("/foo/a_list")) 

 

    def test_apply_cfg_command_list(self): 

        self.tool.location = '/' 

 

        self.assertEqual(([], MultiConfigData.DEFAULT), 

                         self.tool.config_data.get_value("/foo/a_list")) 

 

        self.clt("config set identifier=\"foo/a_list\" value=[\"a\"]", "a") 

        self.clt("config set identifier=\"foo/a_list\" value =[\"b\"]", "b") 

        self.clt("config set identifier=\"foo/a_list\" value= [\"c\"]", "c") 

        self.clt("config set identifier=\"foo/a_list\" value = [\"d\"]", "d") 

        self.clt("config set identifier =\"foo/a_list\" value=[\"e\"]", "e") 

        self.clt("config set identifier= \"foo/a_list\" value=[\"f\"]", "f") 

        self.clt("config set identifier = \"foo/a_list\" value=[\"g\"]", "g") 

        self.clt("config set identifier = \"foo/a_list\" value = [\"h\"]", "h") 

        self.clt("config set identifier = \"foo/a_list\" value=[\"i\" ]", "i") 

        self.clt("config set identifier = \"foo/a_list\" value=[ \"j\"]", "j") 

        self.clt("config set identifier = \"foo/a_list\" value=[ \"k\" ]", "k") 

 

        # this should raise a TypeError 

        cmd = cmdparse.BindCmdParse("config set identifier=\"foo/a_list\" value=\"a\"") 

        self.assertRaises(isc.cc.data.DataTypeError, self.tool.apply_config_cmd, cmd) 

 

        cmd = cmdparse.BindCmdParse("config set identifier=\"foo/a_list\" value=[1]") 

        self.assertRaises(isc.cc.data.DataTypeError, self.tool.apply_config_cmd, cmd) 

 

    def tearDown(self): 

        sys.stdout = self.stdout_backup 

 

class FakeBindCmdInterpreter(bindcmd.BindCmdInterpreter): 

    def __init__(self): 

        pass 

 

class TestBindCmdInterpreter(unittest.TestCase): 

 

    def _create_invalid_csv_file(self, csvfilename): 

        import csv 

        csvfile = open(csvfilename, 'w') 

        writer = csv.writer(csvfile) 

        writer.writerow(['name1']) 

        writer.writerow(['name2']) 

        csvfile.close() 

 

    def test_csv_file_dir(self): 

        # Checking default value 

441        if "HOME" in os.environ: 

            home_dir = os.environ["HOME"] 

        else: 

            home_dir = pwd.getpwnam(getpass.getuser()).pw_dir 

        self.assertEqual(home_dir + os.sep + '.bind10' + os.sep, 

                         bindcmd.BindCmdInterpreter().csv_file_dir) 

 

        new_csv_dir = '/something/different/' 

        custom_cmd = bindcmd.BindCmdInterpreter(csv_file_dir=new_csv_dir) 

        self.assertEqual(new_csv_dir, custom_cmd.csv_file_dir) 

 

    def test_get_saved_user_info(self): 

        old_stdout = sys.stdout 

        sys.stdout = open(os.devnull, 'w') 

        cmd = bindcmd.BindCmdInterpreter() 

        users = cmd._get_saved_user_info('/notexist', 'csv_file.csv') 

        self.assertEqual([], users) 

 

        csvfilename = 'csv_file.csv' 

        self._create_invalid_csv_file(csvfilename) 

        users = cmd._get_saved_user_info('./', csvfilename) 

        self.assertEqual([], users) 

        os.remove(csvfilename) 

        sys.stdout = old_stdout 

 

 

class TestCommandLineOptions(unittest.TestCase): 

    def setUp(self): 

        self.parser = TestOptParser() 

        set_bindctl_options(self.parser) 

 

    def test_csv_file_dir(self): 

        # by default the option is "undefined" 

        (options, _) = self.parser.parse_args([]) 

        self.assertEqual(None, options.csv_file_dir) 

 

        # specify the option, valid case. 

        (options, _) = self.parser.parse_args(['--csv-file-dir', 'some_dir']) 

        self.assertEqual('some_dir', options.csv_file_dir) 

 

        # missing option arg; should trigger parser error. 

        self.assertRaises(OptsError, self.parser.parse_args, 

                          ['--csv-file-dir']) 

 

exitif __name__== "__main__": 

    unittest.main()