blob: 4adc8e8e2c23855a9d8f3d640a60b99bf000b186 [file] [log] [blame]
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +02001#!/usr/bin/env python
2
3# (C) 2013 by Katerina Barone-Adesi <kat.obsc@gmail.com>
4# (C) 2013 by Holger Hans Peter Freyther
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14
15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18import os
19import time
20import unittest
Jacob Erlbeck6cb2ccc2013-08-14 11:10:34 +020021import socket
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +020022
23import osmopy.obscvty as obscvty
24import osmopy.osmoutil as osmoutil
25
26confpath = '.'
27
28class TestVTYBase(unittest.TestCase):
29
30 def vty_command(self):
31 raise Exception("Needs to be implemented by a subclass")
32
33 def vty_app(self):
34 raise Exception("Needs to be implemented by a subclass")
35
36 def setUp(self):
37 osmo_vty_cmd = self.vty_command()[:]
38 config_index = osmo_vty_cmd.index('-c')
39 if config_index:
40 cfi = config_index + 1
41 osmo_vty_cmd[cfi] = os.path.join(confpath, osmo_vty_cmd[cfi])
42
43 try:
44 print "Launch: %s from %s" % (' '.join(osmo_vty_cmd), os.getcwd())
45 self.proc = osmoutil.popen_devnull(osmo_vty_cmd)
46 except OSError:
47 print >> sys.stderr, "Current directory: %s" % os.getcwd()
48 print >> sys.stderr, "Consider setting -b"
49 time.sleep(1)
50
51 appstring = self.vty_app()[2]
52 appport = self.vty_app()[0]
53 self.vty = obscvty.VTYInteract(appstring, "127.0.0.1", appport)
54
55 def tearDown(self):
56 self.vty = None
57 osmoutil.end_proc(self.proc)
58
Holger Hans Peter Freyther8d998a72014-07-04 20:23:56 +020059class TestVTYMGCP(TestVTYBase):
60 def vty_command(self):
61 return ["./src/osmo-bsc_mgcp/osmo-bsc_mgcp", "-c",
62 "doc/examples/osmo-bsc_mgcp/mgcp.cfg"]
63
64 def vty_app(self):
65 return (4243, "./src/osmo-bsc_mgcp/osmo-bsc_mgcp", "OpenBSC MGCP", "mgcp")
66
67 def testForcePtime(self):
68 self.vty.enable()
69 res = self.vty.command("show running-config")
70 self.assert_(res.find(' rtp force-ptime 20\r') > 0)
71 self.assertEquals(res.find(' no rtp force-ptime\r'), -1)
72
73 self.vty.command("configure terminal")
74 self.vty.command("mgcp")
75 self.vty.command("no rtp force-ptime")
76 res = self.vty.command("show running-config")
77 self.assertEquals(res.find(' rtp force-ptime 20\r'), -1)
78 self.assertEquals(res.find(' no rtp force-ptime\r'), -1)
79
Holger Hans Peter Freyther619b0142014-11-19 16:04:45 +010080 def testOmitAudio(self):
81 self.vty.enable()
82 res = self.vty.command("show running-config")
83 self.assert_(res.find(' sdp audio-payload send-name\r') > 0)
84 self.assertEquals(res.find(' no sdp audio-payload send-name\r'), -1)
85
86 self.vty.command("configure terminal")
87 self.vty.command("mgcp")
88 self.vty.command("no sdp audio-payload send-name")
89 res = self.vty.command("show running-config")
90 self.assertEquals(res.find(' rtp sdp audio-payload send-name\r'), -1)
91 self.assert_(res.find(' no sdp audio-payload send-name\r') > 0)
92
93 # TODO: test it for the trunk!
94
Jacob Erlbeck96903c42013-09-02 13:17:14 +020095
96class TestVTYGenericBSC(TestVTYBase):
97
98 def checkForEndAndExit(self):
99 res = self.vty.command("list")
100 #print ('looking for "exit"\n')
101 self.assert_(res.find(' exit\r') > 0)
102 #print 'found "exit"\nlooking for "end"\n'
103 self.assert_(res.find(' end\r') > 0)
104 #print 'found "end"\n'
105
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200106 def _testConfigNetworkTree(self):
107 self.vty.enable()
108 self.assertTrue(self.vty.verify("configure terminal",['']))
109 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck6e919db2013-10-29 09:30:31 +0100110 self.checkForEndAndExit()
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200111 self.assertTrue(self.vty.verify("network",['']))
112 self.assertEquals(self.vty.node(), 'config-net')
113 self.checkForEndAndExit()
114 self.assertTrue(self.vty.verify("bts 0",['']))
115 self.assertEquals(self.vty.node(), 'config-net-bts')
116 self.checkForEndAndExit()
117 self.assertTrue(self.vty.verify("trx 0",['']))
118 self.assertEquals(self.vty.node(), 'config-net-bts-trx')
119 self.checkForEndAndExit()
Jacob Erlbeck733bec82013-09-11 10:46:56 +0200120 self.vty.command("write terminal")
121 self.assertTrue(self.vty.verify("exit",['']))
122 self.assertEquals(self.vty.node(), 'config-net-bts')
123 self.assertTrue(self.vty.verify("exit",['']))
124 self.assertTrue(self.vty.verify("bts 1",['']))
125 self.assertEquals(self.vty.node(), 'config-net-bts')
126 self.checkForEndAndExit()
127 self.assertTrue(self.vty.verify("trx 1",['']))
128 self.assertEquals(self.vty.node(), 'config-net-bts-trx')
129 self.checkForEndAndExit()
130 self.vty.command("write terminal")
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200131 self.assertTrue(self.vty.verify("exit",['']))
132 self.assertEquals(self.vty.node(), 'config-net-bts')
133 self.assertTrue(self.vty.verify("exit",['']))
134 self.assertEquals(self.vty.node(), 'config-net')
135 self.assertTrue(self.vty.verify("exit",['']))
136 self.assertEquals(self.vty.node(), 'config')
137 self.assertTrue(self.vty.verify("exit",['']))
138 self.assertTrue(self.vty.node() is None)
139
140class TestVTYNITB(TestVTYGenericBSC):
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +0200141
142 def vty_command(self):
143 return ["./src/osmo-nitb/osmo-nitb", "-c",
144 "doc/examples/osmo-nitb/nanobts/openbsc.cfg"]
145
146 def vty_app(self):
147 return (4242, "./src/osmo-nitb/osmo-nitb", "OpenBSC", "nitb")
148
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200149 def testConfigNetworkTree(self):
Jacob Erlbeck75877272013-10-23 11:24:14 +0200150 self._testConfigNetworkTree()
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200151
Holger Hans Peter Freyther0df1ab92013-09-02 20:58:38 +0200152 def checkForSmpp(self):
153 """SMPP is not always enabled, check if it is"""
154 res = self.vty.command("list")
155 return "smpp" in res
156
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200157 def testVtyTree(self):
158 self.vty.enable()
159 self.assertTrue(self.vty.verify("configure terminal", ['']))
160 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck6e919db2013-10-29 09:30:31 +0100161 self.checkForEndAndExit()
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200162 self.assertTrue(self.vty.verify('mncc-int', ['']))
163 self.assertEquals(self.vty.node(), 'config-mncc-int')
164 self.checkForEndAndExit()
165 self.assertTrue(self.vty.verify('exit', ['']))
Holger Hans Peter Freyther0df1ab92013-09-02 20:58:38 +0200166
167 if self.checkForSmpp():
168 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck75877272013-10-23 11:24:14 +0200169 self.assertTrue(self.vty.verify('smpp', ['']))
170 self.assertEquals(self.vty.node(), 'config-smpp')
Jacob Erlbeck6e919db2013-10-29 09:30:31 +0100171 self.checkForEndAndExit()
Jacob Erlbeck75877272013-10-23 11:24:14 +0200172 self.assertTrue(self.vty.verify("exit", ['']))
Holger Hans Peter Freyther0df1ab92013-09-02 20:58:38 +0200173
Jacob Erlbeck0ae92a92013-09-02 13:17:16 +0200174 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200175 self.assertTrue(self.vty.verify("exit", ['']))
176 self.assertTrue(self.vty.node() is None)
177
178 # Check searching for outer node's commands
179 self.vty.command("configure terminal")
180 self.vty.command('mncc-int')
Holger Hans Peter Freyther0df1ab92013-09-02 20:58:38 +0200181
182 if self.checkForSmpp():
183 self.vty.command('smpp')
184 self.assertEquals(self.vty.node(), 'config-smpp')
185 self.vty.command('mncc-int')
186
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200187 self.assertEquals(self.vty.node(), 'config-mncc-int')
188
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +0200189 def testEnableDisablePeriodicLU(self):
190 self.vty.enable()
191 self.vty.command("configure terminal")
192 self.vty.command("network")
193 self.vty.command("bts 0")
194
195 # Test invalid input
196 self.vty.verify("periodic location update 0", ['% Unknown command.'])
197 self.vty.verify("periodic location update 5", ['% Unknown command.'])
198 self.vty.verify("periodic location update 1531", ['% Unknown command.'])
199
200 # Enable periodic lu..
201 self.vty.verify("periodic location update 60", [''])
202 res = self.vty.command("write terminal")
Holger Hans Peter Freytherc0438e32013-07-27 22:23:25 +0200203 self.assert_(res.find('periodic location update 60') > 0)
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +0200204 self.assertEquals(res.find('no periodic location update'), -1)
205
206 # Now disable it..
207 self.vty.verify("no periodic location update", [''])
208 res = self.vty.command("write terminal")
209 self.assertEquals(res.find('periodic location update 60'), -1)
Holger Hans Peter Freytherc0438e32013-07-27 22:23:25 +0200210 self.assert_(res.find('no periodic location update') > 0)
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200211
Jacob Erlbeck65d114f2014-01-16 11:02:14 +0100212 def testEnableDisableSiHacks(self):
213 self.vty.enable()
214 self.vty.command("configure terminal")
215 self.vty.command("network")
216 self.vty.command("bts 0")
217
218 # Enable periodic lu..
219 self.vty.verify("force-combined-si", [''])
220 res = self.vty.command("write terminal")
221 self.assert_(res.find(' force-combined-si') > 0)
222 self.assertEquals(res.find('no force-combined-si'), -1)
223
224 # Now disable it..
225 self.vty.verify("no force-combined-si", [''])
226 res = self.vty.command("write terminal")
227 self.assertEquals(res.find(' force-combined-si'), -1)
228 self.assert_(res.find('no force-combined-si') > 0)
229
Ivan Kluchnikov67920592013-09-16 13:13:04 +0400230 def testRachAccessControlClass(self):
231 self.vty.enable()
232 self.vty.command("configure terminal")
233 self.vty.command("network")
234 self.vty.command("bts 0")
235
236 # Test invalid input
237 self.vty.verify("rach access-control-class", ['% Command incomplete.'])
238 self.vty.verify("rach access-control-class 1", ['% Command incomplete.'])
239 self.vty.verify("rach access-control-class -1", ['% Unknown command.'])
240 self.vty.verify("rach access-control-class 10", ['% Unknown command.'])
241 self.vty.verify("rach access-control-class 16", ['% Unknown command.'])
242
243 # Barred rach access control classes
244 for classNum in range(16):
245 if classNum != 10:
246 self.vty.verify("rach access-control-class " + str(classNum) + " barred", [''])
247
248 # Verify settings
249 res = self.vty.command("write terminal")
250 for classNum in range(16):
251 if classNum != 10:
252 self.assert_(res.find("rach access-control-class " + str(classNum) + " barred") > 0)
253
254 # Allowed rach access control classes
255 for classNum in range(16):
256 if classNum != 10:
257 self.vty.verify("rach access-control-class " + str(classNum) + " allowed", [''])
258
259 # Verify settings
260 res = self.vty.command("write terminal")
261 for classNum in range(16):
262 if classNum != 10:
263 self.assertEquals(res.find("rach access-control-class " + str(classNum) + " barred"), -1)
264
Ruben Pollaned04a0d2014-09-24 20:50:13 -0500265 def testSubscriberCreateDelete(self):
Alexander Chemerisbd6d40f2013-10-04 23:54:17 +0200266 self.vty.enable()
267
268 imsi = "204300854013739"
269
270 # Initially we don't have this subscriber
271 self.vty.verify('show subscriber imsi '+imsi, ['% No subscriber found for imsi '+imsi])
272
273 # Lets create one
274 res = self.vty.command('subscriber create imsi '+imsi)
275 self.assert_(res.find(" IMSI: "+imsi) > 0)
276
277 # Now we have it
278 res = self.vty.command('show subscriber imsi '+imsi)
279 self.assert_(res.find(" IMSI: "+imsi) > 0)
280
Ruben Pollaned04a0d2014-09-24 20:50:13 -0500281 # Delete it
282 res = self.vty.command('subscriber delete imsi '+imsi)
283 self.assert_(res != "")
284
285 # Now it should not be there anymore
286 res = self.vty.command('show subscriber imsi '+imsi)
287 self.assert_(res != '% No subscriber found for imsi '+imsi)
288
Holger Hans Peter Freytherec37bb22013-02-05 09:39:09 +0100289 def testShowPagingGroup(self):
290 res = self.vty.command("show paging-group 255 1234567")
291 self.assertEqual(res, "% can't find BTS 255")
292 res = self.vty.command("show paging-group 0 1234567")
293 self.assertEquals(res, "%Paging group for IMSI 1234567 on BTS #0 is 7")
294
Ciabyec6e4f82014-03-06 17:20:55 +0100295 def testShowNetwork(self):
296 res = self.vty.command("show network")
297 self.assert_(res.startswith('BSC is on Country Code') >= 0)
298
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200299class TestVTYBSC(TestVTYGenericBSC):
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200300
301 def vty_command(self):
302 return ["./src/osmo-bsc/osmo-bsc", "-c",
303 "doc/examples/osmo-bsc/osmo-bsc.cfg"]
304
305 def vty_app(self):
306 return (4242, "./src/osmo-bsc/osmo-bsc", "OsmoBSC", "bsc")
307
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200308 def testConfigNetworkTree(self):
Jacob Erlbeck75877272013-10-23 11:24:14 +0200309 self._testConfigNetworkTree()
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200310
311 def testVtyTree(self):
312 self.vty.enable()
313 self.assertTrue(self.vty.verify("configure terminal", ['']))
314 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck6e919db2013-10-29 09:30:31 +0100315 self.checkForEndAndExit()
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200316 self.assertTrue(self.vty.verify("msc 0", ['']))
317 self.assertEquals(self.vty.node(), 'config-msc')
Jacob Erlbeck0ae92a92013-09-02 13:17:16 +0200318 self.checkForEndAndExit()
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200319 self.assertTrue(self.vty.verify("exit", ['']))
Jacob Erlbeck0ae92a92013-09-02 13:17:16 +0200320 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200321 self.assertTrue(self.vty.verify("bsc", ['']))
322 self.assertEquals(self.vty.node(), 'config-bsc')
Jacob Erlbeck0ae92a92013-09-02 13:17:16 +0200323 self.checkForEndAndExit()
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200324 self.assertTrue(self.vty.verify("exit", ['']))
Jacob Erlbeck0ae92a92013-09-02 13:17:16 +0200325 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200326 self.assertTrue(self.vty.verify("exit", ['']))
327 self.assertTrue(self.vty.node() is None)
328
329 # Check searching for outer node's commands
330 self.vty.command("configure terminal")
331 self.vty.command('msc 0')
332 self.vty.command("bsc")
333 self.assertEquals(self.vty.node(), 'config-bsc')
334 self.vty.command("msc 0")
335 self.assertEquals(self.vty.node(), 'config-msc')
336
Jacob Erlbeck56595f82013-09-11 10:46:55 +0200337 def testUssdNotificationsMsc(self):
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200338 self.vty.enable()
339 self.vty.command("configure terminal")
340 self.vty.command("msc")
341
342 # Test invalid input
343 self.vty.verify("bsc-msc-lost-text", ['% Command incomplete.'])
Jacob Erlbeck97e139f2013-08-28 10:16:55 +0200344 self.vty.verify("bsc-welcome-text", ['% Command incomplete.'])
Jacob Erlbeck56595f82013-09-11 10:46:55 +0200345 self.vty.verify("bsc-grace-text", ['% Command incomplete.'])
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200346
347 # Enable USSD notifications
348 self.vty.verify("bsc-msc-lost-text MSC disconnected", [''])
Jacob Erlbeck97e139f2013-08-28 10:16:55 +0200349 self.vty.verify("bsc-welcome-text Hello MS", [''])
Jacob Erlbeck56595f82013-09-11 10:46:55 +0200350 self.vty.verify("bsc-grace-text In grace period", [''])
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200351
352 # Verify settings
353 res = self.vty.command("write terminal")
354 self.assert_(res.find('bsc-msc-lost-text MSC disconnected') > 0)
355 self.assertEquals(res.find('no bsc-msc-lost-text'), -1)
Jacob Erlbeck97e139f2013-08-28 10:16:55 +0200356 self.assert_(res.find('bsc-welcome-text Hello MS') > 0)
357 self.assertEquals(res.find('no bsc-welcome-text'), -1)
Jacob Erlbeck56595f82013-09-11 10:46:55 +0200358 self.assert_(res.find('bsc-grace-text In grace period') > 0)
359 self.assertEquals(res.find('no bsc-grace-text'), -1)
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200360
361 # Now disable it..
362 self.vty.verify("no bsc-msc-lost-text", [''])
Jacob Erlbeck97e139f2013-08-28 10:16:55 +0200363 self.vty.verify("no bsc-welcome-text", [''])
Jacob Erlbeck56595f82013-09-11 10:46:55 +0200364 self.vty.verify("no bsc-grace-text", [''])
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200365
366 # Verify settings
367 res = self.vty.command("write terminal")
368 self.assertEquals(res.find('bsc-msc-lost-text MSC disconnected'), -1)
369 self.assert_(res.find('no bsc-msc-lost-text') > 0)
Jacob Erlbeck97e139f2013-08-28 10:16:55 +0200370 self.assertEquals(res.find('bsc-welcome-text Hello MS'), -1)
Jacob Erlbeck56595f82013-09-11 10:46:55 +0200371 self.assert_(res.find('no bsc-welcome-text') > 0)
372 self.assertEquals(res.find('bsc-grace-text In grace period'), -1)
373 self.assert_(res.find('no bsc-grace-text') > 0)
374
375 def testUssdNotificationsBsc(self):
376 self.vty.enable()
377 self.vty.command("configure terminal")
378 self.vty.command("bsc")
379
380 # Test invalid input
381 self.vty.verify("missing-msc-text", ['% Command incomplete.'])
382
383 # Enable USSD notifications
384 self.vty.verify("missing-msc-text No MSC found", [''])
385
386 # Verify settings
387 res = self.vty.command("write terminal")
388 self.assert_(res.find('missing-msc-text No MSC found') > 0)
389 self.assertEquals(res.find('no missing-msc-text'), -1)
390
391 # Now disable it..
392 self.vty.verify("no missing-msc-text", [''])
393
394 # Verify settings
395 res = self.vty.command("write terminal")
396 self.assertEquals(res.find('missing-msc-text No MSC found'), -1)
397 self.assert_(res.find('no missing-msc-text') > 0)
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200398
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200399 def testNetworkTimezone(self):
400 self.vty.enable()
401 self.vty.verify("configure terminal", [''])
402 self.vty.verify("network", [''])
403 self.vty.verify("bts 0", [''])
404
405 # Test invalid input
406 self.vty.verify("timezone", ['% Command incomplete.'])
407 self.vty.verify("timezone 20 0", ['% Unknown command.'])
408 self.vty.verify("timezone 0 11", ['% Unknown command.'])
409 self.vty.verify("timezone 0 0 99", ['% Unknown command.'])
410
411 # Set time zone without DST
412 self.vty.verify("timezone 2 30", [''])
413
414 # Verify settings
415 res = self.vty.command("write terminal")
416 self.assert_(res.find('timezone 2 30') > 0)
417 self.assertEquals(res.find('timezone 2 30 '), -1)
418
419 # Set time zone with DST
420 self.vty.verify("timezone 2 30 1", [''])
421
422 # Verify settings
423 res = self.vty.command("write terminal")
424 self.assert_(res.find('timezone 2 30 1') > 0)
425
426 # Now disable it..
427 self.vty.verify("no timezone", [''])
428
429 # Verify settings
430 res = self.vty.command("write terminal")
431 self.assertEquals(res.find(' timezone'), -1)
432
Ciabyec6e4f82014-03-06 17:20:55 +0100433 def testShowNetwork(self):
434 res = self.vty.command("show network")
435 self.assert_(res.startswith('BSC is on Country Code') >= 0)
436
Holger Hans Peter Freytherdb64f2e2014-10-29 10:06:15 +0100437 def testPingPongConfiguration(self):
438 self.vty.enable()
439 self.vty.verify("configure terminal", [''])
440 self.vty.verify("network", [''])
441 self.vty.verify("msc 0", [''])
442
443 self.vty.verify("timeout-ping 12", [''])
444 self.vty.verify("timeout-pong 14", [''])
445 res = self.vty.command("show running-config")
446 self.assert_(res.find(" timeout-ping 12") > 0)
447 self.assert_(res.find(" timeout-pong 14") > 0)
448 self.assert_(res.find(" no timeout-ping advanced") > 0)
449
450 self.vty.verify("timeout-ping advanced", [''])
451 res = self.vty.command("show running-config")
452 self.assert_(res.find(" timeout-ping 12") > 0)
453 self.assert_(res.find(" timeout-pong 14") > 0)
454 self.assert_(res.find(" timeout-ping advanced") > 0)
455
456 self.vty.verify("no timeout-ping advanced", [''])
457 res = self.vty.command("show running-config")
458 self.assert_(res.find(" timeout-ping 12") > 0)
459 self.assert_(res.find(" timeout-pong 14") > 0)
460 self.assert_(res.find(" no timeout-ping advanced") > 0)
461
462 self.vty.verify("no timeout-ping", [''])
463 res = self.vty.command("show running-config")
464 self.assertEquals(res.find(" timeout-ping 12"), -1)
465 self.assertEquals(res.find(" timeout-pong 14"), -1)
466 self.assertEquals(res.find(" no timeout-ping advanced"), -1)
467 self.assert_(res.find(" no timeout-ping") > 0)
468
469 self.vty.verify("timeout-ping advanced", ['%ping handling is disabled. Enable it first.'])
470
471 # And back to enabling it
472 self.vty.verify("timeout-ping 12", [''])
473 self.vty.verify("timeout-pong 14", [''])
474 res = self.vty.command("show running-config")
475 self.assert_(res.find(" timeout-ping 12") > 0)
476 self.assert_(res.find(" timeout-pong 14") > 0)
477 self.assert_(res.find(" timeout-ping advanced") > 0)
478
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200479class TestVTYNAT(TestVTYGenericBSC):
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200480
481 def vty_command(self):
482 return ["./src/osmo-bsc_nat/osmo-bsc_nat", "-c",
483 "doc/examples/osmo-bsc_nat/osmo-bsc_nat.cfg"]
484
485 def vty_app(self):
486 return (4244, "src/osmo-bsc_nat/osmo-bsc_nat", "OsmoBSCNAT", "nat")
487
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200488 def testVtyTree(self):
489 self.vty.enable()
490 self.assertTrue(self.vty.verify('configure terminal', ['']))
491 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck6e919db2013-10-29 09:30:31 +0100492 self.checkForEndAndExit()
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200493 self.assertTrue(self.vty.verify('mgcp', ['']))
494 self.assertEquals(self.vty.node(), 'config-mgcp')
495 self.checkForEndAndExit()
496 self.assertTrue(self.vty.verify('exit', ['']))
497 self.assertEquals(self.vty.node(), 'config')
498 self.assertTrue(self.vty.verify('nat', ['']))
499 self.assertEquals(self.vty.node(), 'config-nat')
500 self.checkForEndAndExit()
501 self.assertTrue(self.vty.verify('bsc 0', ['']))
502 self.assertEquals(self.vty.node(), 'config-nat-bsc')
503 self.checkForEndAndExit()
504 self.assertTrue(self.vty.verify('exit', ['']))
505 self.assertEquals(self.vty.node(), 'config-nat')
506 self.assertTrue(self.vty.verify('exit', ['']))
507 self.assertEquals(self.vty.node(), 'config')
508 self.assertTrue(self.vty.verify('exit', ['']))
509 self.assertTrue(self.vty.node() is None)
510
511 # Check searching for outer node's commands
512 self.vty.command('configure terminal')
513 self.vty.command('mgcp')
514 self.vty.command('nat')
515 self.assertEquals(self.vty.node(), 'config-nat')
Jacob Erlbeck4c9dff52013-09-02 13:17:17 +0200516 self.vty.command('mgcp')
517 self.assertEquals(self.vty.node(), 'config-mgcp')
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200518 self.vty.command('nat')
519 self.assertEquals(self.vty.node(), 'config-nat')
520 self.vty.command('bsc 0')
Jacob Erlbeck4c9dff52013-09-02 13:17:17 +0200521 self.vty.command('mgcp')
522 self.assertEquals(self.vty.node(), 'config-mgcp')
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200523
Holger Hans Peter Freytherb718ad32013-06-25 09:08:02 +0200524 def testRewriteNoRewrite(self):
525 self.vty.enable()
526 res = self.vty.command("configure terminal")
527 res = self.vty.command("nat")
528 res = self.vty.command("number-rewrite rewrite.cfg")
529 res = self.vty.command("no number-rewrite")
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200530
Holger Hans Peter Freyther67e423c2013-06-25 15:38:31 +0200531 def testRewritePostNoRewrite(self):
532 self.vty.enable()
533 self.vty.command("configure terminal")
534 self.vty.command("nat")
535 self.vty.verify("number-rewrite-post rewrite.cfg", [''])
536 self.vty.verify("no number-rewrite-post", [''])
537
538
Holger Hans Peter Freytherddf191e2013-06-25 11:44:01 +0200539 def testPrefixTreeLoading(self):
540 cfg = os.path.join(confpath, "tests/bsc-nat-trie/prefixes.csv")
541
542 self.vty.enable()
543 self.vty.command("configure terminal")
544 self.vty.command("nat")
545 res = self.vty.command("prefix-tree %s" % cfg)
546 self.assertEqual(res, "% prefix-tree loaded 17 rules.")
547 self.vty.command("end")
548
549 res = self.vty.command("show prefix-tree")
550 self.assertEqual(res, '1,1\r\n12,2\r\n123,3\r\n1234,4\r\n12345,5\r\n123456,6\r\n1234567,7\r\n12345678,8\r\n123456789,9\r\n1234567890,10\r\n13,11\r\n14,12\r\n15,13\r\n16,14\r\n82,16\r\n823455,15\r\n+49123,17')
551
552 self.vty.command("configure terminal")
553 self.vty.command("nat")
554 self.vty.command("no prefix-tree")
555 self.vty.command("end")
556
557 res = self.vty.command("show prefix-tree")
558 self.assertEqual(res, "% there is now prefix tree loaded.")
559
Jacob Erlbeck6cb2ccc2013-08-14 11:10:34 +0200560 def testUssdSideChannelProvider(self):
561 self.vty.command("end")
562 self.vty.enable()
563 self.vty.command("configure terminal")
564 self.vty.command("nat")
565 self.vty.command("ussd-token key")
566 self.vty.command("end")
567
568 res = self.vty.verify("show ussd-connection", ['The USSD side channel provider is not connected and not authorized.'])
569 self.assertTrue(res)
570
571 ussdSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
572 ussdSocket.connect(('127.0.0.1', 5001))
573 ussdSocket.settimeout(2.0)
574 print "Connected to %s:%d" % ussdSocket.getpeername()
575
576 print "Expecting ID_GET request"
577 data = ussdSocket.recv(4)
578 self.assertEqual(data, "\x00\x01\xfe\x04")
579
580 print "Going to send ID_RESP response"
581 res = ussdSocket.send("\x00\x07\xfe\x05\x00\x04\x01\x6b\x65\x79")
582 self.assertEqual(res, 10)
583
584 # initiating PING/PONG cycle to know, that the ID_RESP message has been processed
585
586 print "Going to send PING request"
587 res = ussdSocket.send("\x00\x01\xfe\x00")
588 self.assertEqual(res, 4)
589
590 print "Expecting PONG response"
591 data = ussdSocket.recv(4)
592 self.assertEqual(data, "\x00\x01\xfe\x01")
593
594 res = self.vty.verify("show ussd-connection", ['The USSD side channel provider is connected and authorized.'])
595 self.assertTrue(res)
596
597 print "Going to shut down connection"
598 ussdSocket.shutdown(socket.SHUT_WR)
599
600 print "Expecting EOF"
601 data = ussdSocket.recv(4)
602 self.assertEqual(data, "")
603
604 ussdSocket.close()
605
606 res = self.vty.verify("show ussd-connection", ['The USSD side channel provider is not connected and not authorized.'])
607 self.assertTrue(res)
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200608
Holger Hans Peter Freyther64190182014-01-20 10:14:05 +0100609 def testAccessList(self):
610 """
611 Verify that the imsi-deny can have a reject cause or no reject cause
612 """
613 self.vty.enable()
614 self.vty.command("configure terminal")
615 self.vty.command("nat")
616
617 # Old default
618 self.vty.command("access-list test-default imsi-deny ^123[0-9]*$")
619 res = self.vty.command("show running-config").split("\r\n")
620 asserted = False
621 for line in res:
Holger Hans Peter Freyther4ecc6872014-03-04 15:38:00 +0100622 if line.startswith(" access-list test-default"):
Holger Hans Peter Freyther64190182014-01-20 10:14:05 +0100623 self.assertEqual(line, " access-list test-default imsi-deny ^123[0-9]*$ 11 11")
624 asserted = True
625 self.assert_(asserted)
626
627 # Check the optional CM Service Reject Cause
628 self.vty.command("access-list test-cm-deny imsi-deny ^123[0-9]*$ 42").split("\r\n")
629 res = self.vty.command("show running-config").split("\r\n")
630 asserted = False
631 for line in res:
632 if line.startswith(" access-list test-cm"):
633 self.assertEqual(line, " access-list test-cm-deny imsi-deny ^123[0-9]*$ 42 11")
634 asserted = True
635 self.assert_(asserted)
636
637 # Check the optional LU Reject Cause
638 self.vty.command("access-list test-lu-deny imsi-deny ^123[0-9]*$ 23 42").split("\r\n")
639 res = self.vty.command("show running-config").split("\r\n")
640 asserted = False
641 for line in res:
642 if line.startswith(" access-list test-lu"):
643 self.assertEqual(line, " access-list test-lu-deny imsi-deny ^123[0-9]*$ 23 42")
644 asserted = True
645 self.assert_(asserted)
646
Jacob Erlbeck6d233712013-10-23 11:24:15 +0200647class TestVTYGbproxy(TestVTYGenericBSC):
648
649 def vty_command(self):
650 return ["./src/gprs/osmo-gbproxy", "-c",
651 "doc/examples/osmo-gbproxy/osmo-gbproxy.cfg"]
652
653 def vty_app(self):
654 return (4246, "./src/gprs/osmo-gbproxy", "OsmoGbProxy", "bsc")
655
656 def testVtyTree(self):
657 self.vty.enable()
658 self.assertTrue(self.vty.verify('configure terminal', ['']))
659 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck6e919db2013-10-29 09:30:31 +0100660 self.checkForEndAndExit()
Jacob Erlbeck6d233712013-10-23 11:24:15 +0200661 self.assertTrue(self.vty.verify('ns', ['']))
662 self.assertEquals(self.vty.node(), 'config-ns')
663 self.checkForEndAndExit()
664 self.assertTrue(self.vty.verify('exit', ['']))
665 self.assertEquals(self.vty.node(), 'config')
666 self.assertTrue(self.vty.verify('gbproxy', ['']))
667 self.assertEquals(self.vty.node(), 'config-gbproxy')
668 self.checkForEndAndExit()
669 self.assertTrue(self.vty.verify('exit', ['']))
670 self.assertEquals(self.vty.node(), 'config')
671
672 def testVtyShow(self):
673 res = self.vty.command("show ns")
674 self.assert_(res.find('Encapsulation NS-UDP-IP') >= 0)
675
676 res = self.vty.command("show gbproxy stats")
677 self.assert_(res.find('GBProxy Global Statistics') >= 0)
678
Jacob Erlbeck4211d792013-10-24 12:48:23 +0200679 def testVtyDeletePeer(self):
680 self.vty.enable()
681 self.assertTrue(self.vty.verify('delete-gbproxy-peer 9999 bvci 7777', ['BVC not found']))
682 res = self.vty.command("delete-gbproxy-peer 9999 all dry-run")
683 self.assert_(res.find('Not Deleted 0 BVC') >= 0)
684 self.assert_(res.find('Not Deleted 0 NS-VC') >= 0)
685 res = self.vty.command("delete-gbproxy-peer 9999 only-bvc dry-run")
686 self.assert_(res.find('Not Deleted 0 BVC') >= 0)
687 self.assert_(res.find('Not Deleted 0 NS-VC') < 0)
688 res = self.vty.command("delete-gbproxy-peer 9999 only-nsvc dry-run")
689 self.assert_(res.find('Not Deleted 0 BVC') < 0)
690 self.assert_(res.find('Not Deleted 0 NS-VC') >= 0)
691 res = self.vty.command("delete-gbproxy-peer 9999 all")
692 self.assert_(res.find('Deleted 0 BVC') >= 0)
693 self.assert_(res.find('Deleted 0 NS-VC') >= 0)
694
Jacob Erlbeck144b8b12014-11-04 11:15:01 +0100695class TestVTYSGSN(TestVTYGenericBSC):
696
697 def vty_command(self):
698 return ["./src/gprs/osmo-sgsn", "-c",
699 "doc/examples/osmo-sgsn/osmo-sgsn.cfg"]
700
701 def vty_app(self):
702 return (4245, "./src/gprs/osmo-sgsn", "OsmoSGSN", "sgsn")
703
704 def testVtyTree(self):
705 self.vty.enable()
706 self.assertTrue(self.vty.verify('configure terminal', ['']))
707 self.assertEquals(self.vty.node(), 'config')
708 self.checkForEndAndExit()
709 self.assertTrue(self.vty.verify('ns', ['']))
710 self.assertEquals(self.vty.node(), 'config-ns')
711 self.checkForEndAndExit()
712 self.assertTrue(self.vty.verify('exit', ['']))
713 self.assertEquals(self.vty.node(), 'config')
714 self.assertTrue(self.vty.verify('sgsn', ['']))
715 self.assertEquals(self.vty.node(), 'config-sgsn')
716 self.checkForEndAndExit()
717 self.assertTrue(self.vty.verify('exit', ['']))
718 self.assertEquals(self.vty.node(), 'config')
719
720 def testVtyShow(self):
721 res = self.vty.command("show ns")
722 self.assert_(res.find('Encapsulation NS-UDP-IP') >= 0)
723 self.assertTrue(self.vty.verify('show bssgp', ['']))
724 self.assertTrue(self.vty.verify('show bssgp stats', ['']))
725 # TODO: uncomment when the command does not segfault anymore
726 # self.assertTrue(self.vty.verify('show bssgp nsei 123', ['']))
727 # self.assertTrue(self.vty.verify('show bssgp nsei 123 stats', ['']))
728
729 self.assertTrue(self.vty.verify('show sgsn', ['']))
730 self.assertTrue(self.vty.verify('show mm-context all', ['']))
731 self.assertTrue(self.vty.verify('show mm-context imsi 000001234567', ['No MM context for IMSI 000001234567']))
732 self.assertTrue(self.vty.verify('show pdp-context all', ['']))
733
734 res = self.vty.command("show sndcp")
735 self.assert_(res.find('State of SNDCP Entities') >= 0)
736
737 res = self.vty.command("show llc")
738 self.assert_(res.find('State of LLC Entities') >= 0)
739
Jacob Erlbeck106f5472014-11-04 10:08:37 +0100740 def testVtyAuth(self):
741 self.vty.enable()
742 self.assertTrue(self.vty.verify('configure terminal', ['']))
743 self.assertEquals(self.vty.node(), 'config')
744 self.assertTrue(self.vty.verify('sgsn', ['']))
745 self.assertEquals(self.vty.node(), 'config-sgsn')
746 self.assertTrue(self.vty.verify('auth-policy accept-all', ['']))
747 res = self.vty.command("show running-config")
748 self.assert_(res.find('auth-policy accept-all') > 0)
749 self.assertTrue(self.vty.verify('auth-policy acl-only', ['']))
750 res = self.vty.command("show running-config")
751 self.assert_(res.find('auth-policy acl-only') > 0)
752 self.assertTrue(self.vty.verify('auth-policy closed', ['']))
753 res = self.vty.command("show running-config")
754 self.assert_(res.find('auth-policy closed') > 0)
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100755 self.assertTrue(self.vty.verify('auth-policy remote', ['']))
756 res = self.vty.command("show running-config")
757 self.assert_(res.find('auth-policy remote') > 0)
Jacob Erlbeck106f5472014-11-04 10:08:37 +0100758
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100759 def testVtySubscriber(self):
760 self.vty.enable()
761 res = self.vty.command('show subscriber cache')
762 self.assert_(res.find('1234567890') < 0)
Jacob Erlbeckd9193432015-01-19 14:11:46 +0100763 self.assertTrue(self.vty.verify('update-subscriber imsi 1234567890 create', ['']))
764 res = self.vty.command('show subscriber cache')
765 self.assert_(res.find('1234567890') >= 0)
766 self.assert_(res.find('Authorized: 0') >= 0)
767 self.assertTrue(self.vty.verify('update-subscriber imsi 1234567890 update-location-result ok', ['']))
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100768 res = self.vty.command('show subscriber cache')
769 self.assert_(res.find('1234567890') >= 0)
770 self.assert_(res.find('Authorized: 1') >= 0)
Jacob Erlbeck8000e0e2015-01-27 14:56:40 +0100771 self.assertTrue(self.vty.verify('update-subscriber imsi 1234567890 cancel update-procedure', ['']))
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100772 res = self.vty.command('show subscriber cache')
Jacob Erlbecke988ae42015-01-27 12:41:19 +0100773 self.assert_(res.find('1234567890') >= 0)
774 self.assertTrue(self.vty.verify('update-subscriber imsi 1234567890 destroy', ['']))
775 res = self.vty.command('show subscriber cache')
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100776 self.assert_(res.find('1234567890') < 0)
777
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200778def add_nat_test(suite, workdir):
779 if not os.path.isfile(os.path.join(workdir, "src/osmo-bsc_nat/osmo-bsc_nat")):
780 print("Skipping the NAT test")
781 return
782 test = unittest.TestLoader().loadTestsFromTestCase(TestVTYNAT)
783 suite.addTest(test)
784
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200785def add_bsc_test(suite, workdir):
786 if not os.path.isfile(os.path.join(workdir, "src/osmo-bsc/osmo-bsc")):
787 print("Skipping the BSC test")
788 return
789 test = unittest.TestLoader().loadTestsFromTestCase(TestVTYBSC)
790 suite.addTest(test)
791
Jacob Erlbeck6d233712013-10-23 11:24:15 +0200792def add_gbproxy_test(suite, workdir):
793 if not os.path.isfile(os.path.join(workdir, "src/gprs/osmo-gbproxy")):
794 print("Skipping the Gb-Proxy test")
795 return
796 test = unittest.TestLoader().loadTestsFromTestCase(TestVTYGbproxy)
797 suite.addTest(test)
798
Jacob Erlbeck144b8b12014-11-04 11:15:01 +0100799def add_sgsn_test(suite, workdir):
800 if not os.path.isfile(os.path.join(workdir, "src/gprs/osmo-sgsn")):
801 print("Skipping the SGSN test")
802 return
803 test = unittest.TestLoader().loadTestsFromTestCase(TestVTYSGSN)
804 suite.addTest(test)
805
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200806if __name__ == '__main__':
807 import argparse
808 import sys
809
810 workdir = '.'
811
812 parser = argparse.ArgumentParser()
813 parser.add_argument("-v", "--verbose", dest="verbose",
814 action="store_true", help="verbose mode")
815 parser.add_argument("-p", "--pythonconfpath", dest="p",
816 help="searchpath for config")
817 parser.add_argument("-w", "--workdir", dest="w",
818 help="Working directory")
819 args = parser.parse_args()
820
821 verbose_level = 1
822 if args.verbose:
823 verbose_level = 2
824
825 if args.w:
826 workdir = args.w
827
828 if args.p:
829 confpath = args.p
830
831 print "confpath %s, workdir %s" % (confpath, workdir)
832 os.chdir(workdir)
833 print "Running tests for specific VTY commands"
834 suite = unittest.TestSuite()
Holger Hans Peter Freyther8d998a72014-07-04 20:23:56 +0200835 suite.addTest(unittest.TestLoader().loadTestsFromTestCase(TestVTYMGCP))
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +0200836 suite.addTest(unittest.TestLoader().loadTestsFromTestCase(TestVTYNITB))
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200837 add_bsc_test(suite, workdir)
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200838 add_nat_test(suite, workdir)
Jacob Erlbeck6d233712013-10-23 11:24:15 +0200839 add_gbproxy_test(suite, workdir)
Jacob Erlbeck144b8b12014-11-04 11:15:01 +0100840 add_sgsn_test(suite, workdir)
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200841 res = unittest.TextTestRunner(verbosity=verbose_level).run(suite)
842 sys.exit(len(res.errors) + len(res.failures))