-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathProtocolTest.py
More file actions
593 lines (505 loc) · 22.7 KB
/
ProtocolTest.py
File metadata and controls
593 lines (505 loc) · 22.7 KB
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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
try:
from future import standard_library
standard_library.install_aliases()
except ModuleNotFoundError:
pass
from builtins import str
import sys
import unittest
import re
import os.path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', '..', '..'))
import time
from functools import partial
from configparser import RawConfigParser
from Exscript import Account, PrivateKey
from Exscript.emulators import VirtualDevice
from Exscript.protocols.exception import TimeoutException, \
InvalidCommandException, ExpectCancelledException
from Exscript.protocols import drivers
from Exscript.protocols.protocol import Protocol
class ProtocolTest(unittest.TestCase):
"""
Since protocols.Protocol is abstract, this test is only a base class
for other protocols. It does not do anything fancy on its own.
"""
CORRELATE = Protocol
def setUp(self):
self.hostname = '127.0.0.1'
self.port = 1236
self.user = 'user'
self.password = 'password'
self.account = Account(self.user, password=self.password)
self.daemon = None
self.createVirtualDevice()
self.createDaemon()
if self.daemon is not None:
self.daemon.start()
time.sleep(.2)
self.createProtocol()
def tearDown(self):
if self.protocol.__class__ != Protocol:
self.protocol.close(True)
if self.daemon is not None:
self.daemon.exit()
self.daemon.join()
def createVirtualDevice(self):
self.banner = 'Welcome to %s!\n' % self.hostname
self.prompt = self.hostname + '> '
self.device = VirtualDevice(self.hostname, echo=True)
ls_response = '-rw-r--r-- 1 sab nmc 1628 Aug 18 10:02 file'
self.device.add_command('ls', ls_response)
self.device.add_command('df', 'foobar')
self.device.add_command('exit', '')
self.device.add_command('this-command-causes-an-error',
'\ncommand not found')
def createDaemon(self):
pass
def createProtocol(self):
self.protocol = Protocol(timeout=1)
def disableDriver(self):
self.assertIn(drivers.driver_map, 'ios')
drivers.disable_driver('ios')
self.assertNotIn(drivers.driver_map, 'ios')
def doConnect(self):
self.protocol.connect(self.hostname, self.port)
def doLogin(self, flush=True):
self.doConnect()
self.protocol.login(self.account, flush=flush)
def doProtocolAuthenticate(self, flush=True):
self.doConnect()
self.protocol.protocol_authenticate(self.account)
def doAppAuthenticate(self, flush=True):
self.protocol.app_authenticate(self.account, flush)
def doAppAuthorize(self, flush=True):
self.protocol.app_authorize(self.account, flush)
def _trymatch(self, prompts, string):
for regex in prompts:
match = regex.search(string)
if match:
return match
return None
def testPrompts(self):
prompts = ('[sam123@home ~]$',
'[MyHost-A1]',
'<MyHost-A1>',
'sam@knip:~/Code/exscript$',
'sam@MyHost-X123>',
'sam@MyHost-X123#',
'MyHost-ABC-CDE123>',
'MyHost-A1#',
'S-ABC#',
'0123456-1-1-abc#',
'0123456-1-1-a>',
'MyHost-A1(config)#',
'MyHost-A1(config)>',
'RP/0/RP0/CPU0:A-BC2#',
'FA/0/1/2/3>',
'FA/0/1/2/3(config)>',
'FA/0/1/2/3(config)#',
'ec-c3-c27s99(su)->',
'foobar:0>',
'admin@s-x-a6.a.bc.de.fg:/# ',
'admin@s-x-a6.a.bc.de.fg:/% ')
notprompts = ('one two',
' [MyHost-A1]',
'[edit]\r',
'[edit]\n',
'[edit foo]\r',
'[edit foo]\n',
'[edit foo]\r\n',
'[edit one two]')
prompt_re = self.protocol.get_prompt()
for prompt in prompts:
if not self._trymatch(prompt_re, '\n' + prompt):
self.fail('Prompt %s does not match exactly.' % prompt)
if not self._trymatch(prompt_re, 'this is a test\r\n' + prompt):
self.fail('Prompt %s does not match.' % prompt)
if self._trymatch(prompt_re, 'some text ' + prompt):
self.fail('Prompt %s matches incorrectly.' % repr(prompt))
for prompt in notprompts:
if self._trymatch(prompt_re, prompt):
self.fail('Prompt %s matches incorrecly.' % repr(prompt))
if self._trymatch(prompt_re, prompt + ' '):
self.fail('Prompt %s matches incorrecly.' % repr(prompt))
if self._trymatch(prompt_re, '\n' + prompt):
self.fail('Prompt %s matches incorrecly.' % repr(prompt))
def testConstructor(self):
self.assertIsInstance(self.protocol, Protocol)
def testCopy(self):
self.assertEqual(self.protocol, self.protocol.__copy__())
def testDeepcopy(self):
self.assertEqual(self.protocol, self.protocol.__deepcopy__({}))
def testIsDummy(self):
self.assertEqual(self.protocol.is_dummy(), False)
def testSetDriver(self):
self.assertTrue(self.protocol.get_driver() is not None)
self.assertEqual(self.protocol.get_driver().name, 'generic')
self.protocol.set_driver()
self.assertTrue(self.protocol.get_driver() is not None)
self.assertEqual(self.protocol.get_driver().name, 'generic')
self.protocol.set_driver('ios')
self.assertTrue(self.protocol.get_driver() is not None)
self.assertEqual(self.protocol.get_driver().name, 'ios')
self.protocol.set_driver()
self.assertTrue(self.protocol.get_driver() is not None)
self.assertEqual(self.protocol.get_driver().name, 'generic')
def testGetDriver(self):
pass # Already tested in testSetDriver()
def testGetBanner(self):
self.assertEqual(self.protocol.get_banner(), None)
if self.protocol.__class__ == Protocol:
self.assertRaises(Exception, self.protocol.connect)
return
self.doConnect()
self.assertEqual(self.protocol.get_banner(), None)
def testGetRemoteVersion(self):
self.assertEqual(self.protocol.get_remote_version(), None)
if self.protocol.__class__ == Protocol:
self.assertRaises(Exception, self.protocol.connect)
return
self.doConnect()
self.assertEqual(self.protocol.get_remote_version(), None)
def testAutoinit(self):
self.protocol.autoinit()
def _test_prompt_setter(self, getter, setter):
initial_regex = getter()
self.assertIsInstance(initial_regex, list)
self.assertTrue(hasattr(initial_regex[0], 'groups'))
my_re = re.compile(r'% username')
setter(my_re)
regex = getter()
self.assertIsInstance(regex, list)
self.assertTrue(hasattr(regex[0], 'groups'))
self.assertEqual(regex[0], my_re)
setter()
regex = getter()
self.assertEqual(regex, initial_regex)
def testSetUsernamePrompt(self):
self._test_prompt_setter(self.protocol.get_username_prompt,
self.protocol.set_username_prompt)
def testGetUsernamePrompt(self):
pass # Already tested in testSetUsernamePrompt()
def testSetPasswordPrompt(self):
self._test_prompt_setter(self.protocol.get_password_prompt,
self.protocol.set_password_prompt)
def testGetPasswordPrompt(self):
pass # Already tested in testSetPasswordPrompt()
def testSetPrompt(self):
self._test_prompt_setter(self.protocol.get_prompt,
self.protocol.set_prompt)
def testGetPrompt(self):
pass # Already tested in testSetPrompt()
def testSetErrorPrompt(self):
self._test_prompt_setter(self.protocol.get_error_prompt,
self.protocol.set_error_prompt)
def testGetErrorPrompt(self):
pass # Already tested in testSetErrorPrompt()
def testSetLoginErrorPrompt(self):
self._test_prompt_setter(self.protocol.get_login_error_prompt,
self.protocol.set_login_error_prompt)
def testGetLoginErrorPrompt(self):
pass # Already tested in testSetLoginErrorPrompt()
def testSetConnectTimeout(self):
self.assertEqual(self.protocol.get_connect_timeout(), 30)
self.protocol.set_connect_timeout(60)
self.assertEqual(self.protocol.get_connect_timeout(), 60)
def testGetConnectTimeout(self):
pass # Already tested in testSetConnectTimeout()
def testSetTimeout(self):
self.assertEqual(self.protocol.get_timeout(), 1)
self.protocol.set_timeout(60)
self.assertEqual(self.protocol.get_timeout(), 60)
def testGetTimeout(self):
pass # Already tested in testSetTimeout()
def testConnect(self):
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
self.assertRaises(Exception, self.protocol.connect)
return
self.assertEqual(self.protocol.response, None)
self.doConnect()
self.assertEqual(self.protocol.response, None)
self.assertEqual(self.protocol.get_host(), self.hostname)
def testLogin(self):
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
self.assertRaises(Exception,
self.protocol.login,
self.account)
return
# Password login.
self.doLogin(flush=False)
self.assertTrue(self.protocol.response is not None)
self.assertTrue(len(self.protocol.response) > 0)
self.assertTrue(self.protocol.is_protocol_authenticated())
self.assertTrue(self.protocol.is_app_authenticated())
self.assertTrue(self.protocol.is_app_authorized())
# Key login.
self.tearDown()
self.setUp()
key = PrivateKey.from_file('foo', keytype='rsa')
account = Account(self.user, self.password, key=key)
self.doConnect()
self.assertFalse(self.protocol.is_protocol_authenticated())
self.assertFalse(self.protocol.is_app_authenticated())
self.assertFalse(self.protocol.is_app_authorized())
self.protocol.login(account, flush=False)
self.assertTrue(self.protocol.is_protocol_authenticated())
self.assertTrue(self.protocol.is_app_authenticated())
self.assertTrue(self.protocol.is_app_authorized())
def testAuthenticate(self):
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
self.assertRaises(Exception,
self.protocol.authenticate,
self.account)
return
self.doConnect()
# Password login.
self.assertFalse(self.protocol.is_protocol_authenticated())
self.assertFalse(self.protocol.is_app_authenticated())
self.assertFalse(self.protocol.is_app_authorized())
self.protocol.authenticate(self.account, flush=False)
self.assertTrue(self.protocol.response is not None)
self.assertTrue(len(self.protocol.response) > 0)
self.assertTrue(self.protocol.is_protocol_authenticated())
self.assertTrue(self.protocol.is_app_authenticated())
self.assertFalse(self.protocol.is_app_authorized())
# Key login.
self.tearDown()
self.setUp()
key = PrivateKey.from_file('foo', keytype='rsa')
account = Account(self.user, self.password, key=key)
self.doConnect()
self.assertFalse(self.protocol.is_protocol_authenticated())
self.assertFalse(self.protocol.is_app_authenticated())
self.assertFalse(self.protocol.is_app_authorized())
self.protocol.authenticate(account, flush=False)
self.assertTrue(self.protocol.is_protocol_authenticated())
self.assertTrue(self.protocol.is_app_authenticated())
self.assertFalse(self.protocol.is_app_authorized())
def testProtocolAuthenticate(self):
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
self.protocol.protocol_authenticate(self.account)
return
# There is no guarantee that the device provided any response
# during protocol level authentification.
self.doProtocolAuthenticate(flush=False)
self.assertTrue(self.protocol.is_protocol_authenticated())
self.assertFalse(self.protocol.is_app_authenticated())
self.assertFalse(self.protocol.is_app_authorized())
def testIsProtocolAuthenticated(self):
pass # See testProtocolAuthenticate()
def testAppAuthenticate(self):
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
self.assertRaises(Exception,
self.protocol.app_authenticate,
self.account)
return
self.testProtocolAuthenticate()
self.doAppAuthenticate(flush=False)
self.assertTrue(self.protocol.is_protocol_authenticated())
self.assertTrue(self.protocol.is_app_authenticated())
self.assertFalse(self.protocol.is_app_authorized())
def testIsAppAuthenticated(self):
pass # See testAppAuthenticate()
def testAppAuthorize(self):
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
self.assertRaises(Exception, self.protocol.app_authorize)
return
self.doProtocolAuthenticate(flush=False)
self.doAppAuthenticate(flush=False)
response = self.protocol.response
# Authorize should see that a prompt is still in the buffer,
# and do nothing.
self.doAppAuthorize(flush=False)
self.assertEqual(self.protocol.response, response)
self.assertTrue(self.protocol.is_protocol_authenticated())
self.assertTrue(self.protocol.is_app_authenticated())
self.assertTrue(self.protocol.is_app_authorized())
self.doAppAuthorize(flush=True)
self.assertEqual(self.protocol.response, response)
self.assertTrue(self.protocol.is_protocol_authenticated())
self.assertTrue(self.protocol.is_app_authenticated())
self.assertTrue(self.protocol.is_app_authorized())
def testAppAuthorize2(self):
# Same test as above, but using flush=True all the way.
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
self.assertRaises(Exception, self.protocol.app_authorize)
return
self.doProtocolAuthenticate(flush=True)
self.doAppAuthenticate(flush=True)
response = self.protocol.response
# At this point app_authorize should fail because the buffer is
# empty due to flush=True above. In other words, app_authorize
# will wait for a prompt until a timeout happens.
self.assertRaises(TimeoutException, self.doAppAuthorize)
self.assertTrue(self.protocol.is_protocol_authenticated())
self.assertTrue(self.protocol.is_app_authenticated())
self.assertFalse(self.protocol.is_app_authorized())
def testAutoAppAuthorize(self):
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
self.assertRaises(TypeError, self.protocol.auto_app_authorize)
return
self.testAppAuthenticate()
response = self.protocol.response
# This should do nothing, because our test host does not
# support AAA. Can't think of a way to test against a
# device using AAA.
self.protocol.auto_app_authorize(self.account, flush=False)
self.assertEqual(self.protocol.response, response)
self.assertTrue(self.protocol.is_protocol_authenticated())
self.assertTrue(self.protocol.is_app_authenticated())
self.assertTrue(self.protocol.is_app_authorized())
self.protocol.auto_app_authorize(self.account, flush=True)
self.assertEqual(self.protocol.response, response)
self.assertTrue(self.protocol.is_protocol_authenticated())
self.assertTrue(self.protocol.is_app_authenticated())
self.assertTrue(self.protocol.is_app_authorized())
def testIsAppAuthorized(self):
pass # see testAppAuthorize()
def testSend(self):
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
self.assertRaises(Exception, self.protocol.send, 'ls')
return
self.doLogin()
self.protocol.execute('ls')
self.protocol.send('df\r')
self.assertTrue(self.protocol.response is not None)
self.assertTrue(self.protocol.response.startswith('ls'))
self.protocol.send('exit\r')
self.assertTrue(self.protocol.response is not None)
self.assertTrue(self.protocol.response.startswith('ls'))
def testExecute(self):
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
self.assertRaises(Exception, self.protocol.execute, 'ls')
return
self.doLogin()
self.protocol.execute('ls')
self.assertTrue(self.protocol.response is not None)
self.assertTrue(self.protocol.response.startswith('ls'))
# Make sure that we raise an error if the device responds
# with something that matches any of the error prompts.
self.protocol.set_error_prompt('.')
self.assertRaises(InvalidCommandException,
self.protocol.execute,
'this-command-causes-an-error')
def testWaitfor(self):
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
self.assertRaises(Exception, self.protocol.waitfor, 'ls')
return
self.doLogin()
oldresponse = self.protocol.response
self.protocol.send('ls\r')
self.assertEqual(oldresponse, self.protocol.response)
self.protocol.waitfor(re.compile(r'[\r\n]'))
self.assertNotEqual(oldresponse, self.protocol.response)
oldresponse = self.protocol.response
self.protocol.waitfor(re.compile(r'[\r\n]'))
self.assertEqual(oldresponse, self.protocol.response)
def testExpect(self):
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
self.assertRaises(Exception, self.protocol.expect, 'ls')
return
self.doLogin()
oldresponse = self.protocol.response
self.protocol.send('ls\r')
self.assertEqual(oldresponse, self.protocol.response)
self.protocol.expect(re.compile(r'[\r\n]'))
self.assertNotEqual(oldresponse, self.protocol.response)
def testExpectPrompt(self):
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
self.assertRaises(Exception, self.protocol.expect, 'ls')
return
self.doLogin()
oldresponse = self.protocol.response
self.protocol.send('ls\r')
self.assertEqual(oldresponse, self.protocol.response)
self.protocol.expect_prompt()
self.assertNotEqual(oldresponse, self.protocol.response)
def testAddMonitor(self):
# Set the monitor callback up.
def monitor_cb(thedata, *args, **kwargs):
thedata['args'] = args
thedata['kwargs'] = kwargs
data = {}
self.protocol.add_monitor('abc', partial(monitor_cb, data))
# Simulate some non-matching data.
self.protocol.buffer.append(u'aaa')
self.assertEqual(data, {})
# Simulate some matching data.
self.protocol.buffer.append(u'abc')
self.assertEqual(len(data.get('args')), 3)
self.assertEqual(data.get('args')[0], self.protocol)
self.assertEqual(data.get('args')[1], 0)
self.assertEqual(data.get('args')[2].group(0), 'abc')
self.assertEqual(data.get('kwargs'), {})
def testGetBuffer(self):
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
return
self.assertEqual(str(self.protocol.buffer), '')
self.doLogin()
# Depending on whether the connected host sends a banner,
# the buffer may or may not contain anything now.
before = str(self.protocol.buffer)
self.protocol.send('ls\r')
self.protocol.waitfor(self.protocol.get_prompt())
self.assertNotEqual(str(self.protocol.buffer), before)
def _cancel_cb(self, data):
self.protocol.cancel_expect()
def testCancelExpect(self):
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
return
self.doLogin()
oldresponse = self.protocol.response
self.protocol.data_received_event.connect(self._cancel_cb)
self.protocol.send('ls\r')
self.assertEqual(oldresponse, self.protocol.response)
self.assertRaises(ExpectCancelledException,
self.protocol.expect,
'notgoingtohappen')
def testInteract(self):
# Test can not work on the abstract base.
if self.protocol.__class__ == Protocol:
self.assertRaises(Exception, self.protocol.interact)
return
# Can't really be tested.
def testClose(self):
if self.protocol.__class__ != Protocol:
self.doConnect()
self.protocol.close(True)
def testGetHost(self):
self.assertTrue(self.protocol.get_host() is None)
if self.protocol.__class__ == Protocol:
return
self.doConnect()
self.assertEqual(self.protocol.get_host(), self.hostname)
def testGuessOs(self):
self.assertEqual('unknown', self.protocol.guess_os())
# Other tests can not work on the abstract base.
if self.protocol.__class__ == Protocol:
return
self.doConnect()
self.assertEqual('unknown', self.protocol.guess_os())
self.protocol.login(self.account)
self.assertTrue(self.protocol.is_protocol_authenticated())
self.assertTrue(self.protocol.is_app_authenticated())
self.assertTrue(self.protocol.is_app_authorized())
self.assertEqual('shell', self.protocol.guess_os())
def suite():
return unittest.TestLoader().loadTestsFromTestCase(ProtocolTest)
if __name__ == '__main__':
unittest.TextTestRunner(verbosity=2).run(suite())