blob: cae1c1414a16c9ae3dde72511bd5ee42a4d10a5d [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
Holger Hans Peter Freyther86573262015-01-31 09:47:37 +0100299 def testMeasurementFeed(self):
300 self.vty.enable()
301 self.vty.command("configure terminal")
302 self.vty.command("mncc-int")
303
304 res = self.vty.command("write terminal")
305 self.assertEquals(res.find('meas-feed scenario'), -1)
306
307 self.vty.command("meas-feed scenario bla")
308 res = self.vty.command("write terminal")
309 self.assert_(res.find('meas-feed scenario bla') > 0)
310
311 self.vty.command("meas-feed scenario abcdefghijklmnopqrstuvwxyz01234567890")
312 res = self.vty.command("write terminal")
313 self.assertEquals(res.find('meas-feed scenario abcdefghijklmnopqrstuvwxyz01234567890'), -1)
314 self.assertEquals(res.find('meas-feed scenario abcdefghijklmnopqrstuvwxyz012345'), -1)
315 self.assert_(res.find('meas-feed scenario abcdefghijklmnopqrstuvwxyz01234') > 0)
316
317
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200318class TestVTYBSC(TestVTYGenericBSC):
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200319
320 def vty_command(self):
321 return ["./src/osmo-bsc/osmo-bsc", "-c",
322 "doc/examples/osmo-bsc/osmo-bsc.cfg"]
323
324 def vty_app(self):
325 return (4242, "./src/osmo-bsc/osmo-bsc", "OsmoBSC", "bsc")
326
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200327 def testConfigNetworkTree(self):
Jacob Erlbeck75877272013-10-23 11:24:14 +0200328 self._testConfigNetworkTree()
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200329
330 def testVtyTree(self):
331 self.vty.enable()
332 self.assertTrue(self.vty.verify("configure terminal", ['']))
333 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck6e919db2013-10-29 09:30:31 +0100334 self.checkForEndAndExit()
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200335 self.assertTrue(self.vty.verify("msc 0", ['']))
336 self.assertEquals(self.vty.node(), 'config-msc')
Jacob Erlbeck0ae92a92013-09-02 13:17:16 +0200337 self.checkForEndAndExit()
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200338 self.assertTrue(self.vty.verify("exit", ['']))
Jacob Erlbeck0ae92a92013-09-02 13:17:16 +0200339 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200340 self.assertTrue(self.vty.verify("bsc", ['']))
341 self.assertEquals(self.vty.node(), 'config-bsc')
Jacob Erlbeck0ae92a92013-09-02 13:17:16 +0200342 self.checkForEndAndExit()
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200343 self.assertTrue(self.vty.verify("exit", ['']))
Jacob Erlbeck0ae92a92013-09-02 13:17:16 +0200344 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200345 self.assertTrue(self.vty.verify("exit", ['']))
346 self.assertTrue(self.vty.node() is None)
347
348 # Check searching for outer node's commands
349 self.vty.command("configure terminal")
350 self.vty.command('msc 0')
351 self.vty.command("bsc")
352 self.assertEquals(self.vty.node(), 'config-bsc')
353 self.vty.command("msc 0")
354 self.assertEquals(self.vty.node(), 'config-msc')
355
Jacob Erlbeck56595f82013-09-11 10:46:55 +0200356 def testUssdNotificationsMsc(self):
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200357 self.vty.enable()
358 self.vty.command("configure terminal")
359 self.vty.command("msc")
360
361 # Test invalid input
362 self.vty.verify("bsc-msc-lost-text", ['% Command incomplete.'])
Jacob Erlbeck97e139f2013-08-28 10:16:55 +0200363 self.vty.verify("bsc-welcome-text", ['% Command incomplete.'])
Jacob Erlbeck56595f82013-09-11 10:46:55 +0200364 self.vty.verify("bsc-grace-text", ['% Command incomplete.'])
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200365
366 # Enable USSD notifications
367 self.vty.verify("bsc-msc-lost-text MSC disconnected", [''])
Jacob Erlbeck97e139f2013-08-28 10:16:55 +0200368 self.vty.verify("bsc-welcome-text Hello MS", [''])
Jacob Erlbeck56595f82013-09-11 10:46:55 +0200369 self.vty.verify("bsc-grace-text In grace period", [''])
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200370
371 # Verify settings
372 res = self.vty.command("write terminal")
373 self.assert_(res.find('bsc-msc-lost-text MSC disconnected') > 0)
374 self.assertEquals(res.find('no bsc-msc-lost-text'), -1)
Jacob Erlbeck97e139f2013-08-28 10:16:55 +0200375 self.assert_(res.find('bsc-welcome-text Hello MS') > 0)
376 self.assertEquals(res.find('no bsc-welcome-text'), -1)
Jacob Erlbeck56595f82013-09-11 10:46:55 +0200377 self.assert_(res.find('bsc-grace-text In grace period') > 0)
378 self.assertEquals(res.find('no bsc-grace-text'), -1)
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200379
380 # Now disable it..
381 self.vty.verify("no bsc-msc-lost-text", [''])
Jacob Erlbeck97e139f2013-08-28 10:16:55 +0200382 self.vty.verify("no bsc-welcome-text", [''])
Jacob Erlbeck56595f82013-09-11 10:46:55 +0200383 self.vty.verify("no bsc-grace-text", [''])
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200384
385 # Verify settings
386 res = self.vty.command("write terminal")
387 self.assertEquals(res.find('bsc-msc-lost-text MSC disconnected'), -1)
388 self.assert_(res.find('no bsc-msc-lost-text') > 0)
Jacob Erlbeck97e139f2013-08-28 10:16:55 +0200389 self.assertEquals(res.find('bsc-welcome-text Hello MS'), -1)
Jacob Erlbeck56595f82013-09-11 10:46:55 +0200390 self.assert_(res.find('no bsc-welcome-text') > 0)
391 self.assertEquals(res.find('bsc-grace-text In grace period'), -1)
392 self.assert_(res.find('no bsc-grace-text') > 0)
393
394 def testUssdNotificationsBsc(self):
395 self.vty.enable()
396 self.vty.command("configure terminal")
397 self.vty.command("bsc")
398
399 # Test invalid input
400 self.vty.verify("missing-msc-text", ['% Command incomplete.'])
401
402 # Enable USSD notifications
403 self.vty.verify("missing-msc-text No MSC found", [''])
404
405 # Verify settings
406 res = self.vty.command("write terminal")
407 self.assert_(res.find('missing-msc-text No MSC found') > 0)
408 self.assertEquals(res.find('no missing-msc-text'), -1)
409
410 # Now disable it..
411 self.vty.verify("no missing-msc-text", [''])
412
413 # Verify settings
414 res = self.vty.command("write terminal")
415 self.assertEquals(res.find('missing-msc-text No MSC found'), -1)
416 self.assert_(res.find('no missing-msc-text') > 0)
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200417
Jacob Erlbeck946d1412013-09-17 13:59:29 +0200418 def testNetworkTimezone(self):
419 self.vty.enable()
420 self.vty.verify("configure terminal", [''])
421 self.vty.verify("network", [''])
422 self.vty.verify("bts 0", [''])
423
424 # Test invalid input
425 self.vty.verify("timezone", ['% Command incomplete.'])
426 self.vty.verify("timezone 20 0", ['% Unknown command.'])
427 self.vty.verify("timezone 0 11", ['% Unknown command.'])
428 self.vty.verify("timezone 0 0 99", ['% Unknown command.'])
429
430 # Set time zone without DST
431 self.vty.verify("timezone 2 30", [''])
432
433 # Verify settings
434 res = self.vty.command("write terminal")
435 self.assert_(res.find('timezone 2 30') > 0)
436 self.assertEquals(res.find('timezone 2 30 '), -1)
437
438 # Set time zone with DST
439 self.vty.verify("timezone 2 30 1", [''])
440
441 # Verify settings
442 res = self.vty.command("write terminal")
443 self.assert_(res.find('timezone 2 30 1') > 0)
444
445 # Now disable it..
446 self.vty.verify("no timezone", [''])
447
448 # Verify settings
449 res = self.vty.command("write terminal")
450 self.assertEquals(res.find(' timezone'), -1)
451
Ciabyec6e4f82014-03-06 17:20:55 +0100452 def testShowNetwork(self):
453 res = self.vty.command("show network")
454 self.assert_(res.startswith('BSC is on Country Code') >= 0)
455
Holger Hans Peter Freytherdb64f2e2014-10-29 10:06:15 +0100456 def testPingPongConfiguration(self):
457 self.vty.enable()
458 self.vty.verify("configure terminal", [''])
459 self.vty.verify("network", [''])
460 self.vty.verify("msc 0", [''])
461
462 self.vty.verify("timeout-ping 12", [''])
463 self.vty.verify("timeout-pong 14", [''])
464 res = self.vty.command("show running-config")
465 self.assert_(res.find(" timeout-ping 12") > 0)
466 self.assert_(res.find(" timeout-pong 14") > 0)
467 self.assert_(res.find(" no timeout-ping advanced") > 0)
468
469 self.vty.verify("timeout-ping advanced", [''])
470 res = self.vty.command("show running-config")
471 self.assert_(res.find(" timeout-ping 12") > 0)
472 self.assert_(res.find(" timeout-pong 14") > 0)
473 self.assert_(res.find(" timeout-ping advanced") > 0)
474
475 self.vty.verify("no timeout-ping advanced", [''])
476 res = self.vty.command("show running-config")
477 self.assert_(res.find(" timeout-ping 12") > 0)
478 self.assert_(res.find(" timeout-pong 14") > 0)
479 self.assert_(res.find(" no timeout-ping advanced") > 0)
480
481 self.vty.verify("no timeout-ping", [''])
482 res = self.vty.command("show running-config")
483 self.assertEquals(res.find(" timeout-ping 12"), -1)
484 self.assertEquals(res.find(" timeout-pong 14"), -1)
485 self.assertEquals(res.find(" no timeout-ping advanced"), -1)
486 self.assert_(res.find(" no timeout-ping") > 0)
487
488 self.vty.verify("timeout-ping advanced", ['%ping handling is disabled. Enable it first.'])
489
490 # And back to enabling it
491 self.vty.verify("timeout-ping 12", [''])
492 self.vty.verify("timeout-pong 14", [''])
493 res = self.vty.command("show running-config")
494 self.assert_(res.find(" timeout-ping 12") > 0)
495 self.assert_(res.find(" timeout-pong 14") > 0)
496 self.assert_(res.find(" timeout-ping advanced") > 0)
497
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200498class TestVTYNAT(TestVTYGenericBSC):
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200499
500 def vty_command(self):
501 return ["./src/osmo-bsc_nat/osmo-bsc_nat", "-c",
502 "doc/examples/osmo-bsc_nat/osmo-bsc_nat.cfg"]
503
504 def vty_app(self):
505 return (4244, "src/osmo-bsc_nat/osmo-bsc_nat", "OsmoBSCNAT", "nat")
506
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200507 def testVtyTree(self):
508 self.vty.enable()
509 self.assertTrue(self.vty.verify('configure terminal', ['']))
510 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck6e919db2013-10-29 09:30:31 +0100511 self.checkForEndAndExit()
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200512 self.assertTrue(self.vty.verify('mgcp', ['']))
513 self.assertEquals(self.vty.node(), 'config-mgcp')
514 self.checkForEndAndExit()
515 self.assertTrue(self.vty.verify('exit', ['']))
516 self.assertEquals(self.vty.node(), 'config')
517 self.assertTrue(self.vty.verify('nat', ['']))
518 self.assertEquals(self.vty.node(), 'config-nat')
519 self.checkForEndAndExit()
520 self.assertTrue(self.vty.verify('bsc 0', ['']))
521 self.assertEquals(self.vty.node(), 'config-nat-bsc')
522 self.checkForEndAndExit()
523 self.assertTrue(self.vty.verify('exit', ['']))
524 self.assertEquals(self.vty.node(), 'config-nat')
525 self.assertTrue(self.vty.verify('exit', ['']))
526 self.assertEquals(self.vty.node(), 'config')
527 self.assertTrue(self.vty.verify('exit', ['']))
528 self.assertTrue(self.vty.node() is None)
529
530 # Check searching for outer node's commands
531 self.vty.command('configure terminal')
532 self.vty.command('mgcp')
533 self.vty.command('nat')
534 self.assertEquals(self.vty.node(), 'config-nat')
Jacob Erlbeck4c9dff52013-09-02 13:17:17 +0200535 self.vty.command('mgcp')
536 self.assertEquals(self.vty.node(), 'config-mgcp')
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200537 self.vty.command('nat')
538 self.assertEquals(self.vty.node(), 'config-nat')
539 self.vty.command('bsc 0')
Jacob Erlbeck4c9dff52013-09-02 13:17:17 +0200540 self.vty.command('mgcp')
541 self.assertEquals(self.vty.node(), 'config-mgcp')
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200542
Holger Hans Peter Freytherb718ad32013-06-25 09:08:02 +0200543 def testRewriteNoRewrite(self):
544 self.vty.enable()
545 res = self.vty.command("configure terminal")
546 res = self.vty.command("nat")
547 res = self.vty.command("number-rewrite rewrite.cfg")
548 res = self.vty.command("no number-rewrite")
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200549
Holger Hans Peter Freyther67e423c2013-06-25 15:38:31 +0200550 def testRewritePostNoRewrite(self):
551 self.vty.enable()
552 self.vty.command("configure terminal")
553 self.vty.command("nat")
554 self.vty.verify("number-rewrite-post rewrite.cfg", [''])
555 self.vty.verify("no number-rewrite-post", [''])
556
557
Holger Hans Peter Freytherddf191e2013-06-25 11:44:01 +0200558 def testPrefixTreeLoading(self):
559 cfg = os.path.join(confpath, "tests/bsc-nat-trie/prefixes.csv")
560
561 self.vty.enable()
562 self.vty.command("configure terminal")
563 self.vty.command("nat")
564 res = self.vty.command("prefix-tree %s" % cfg)
565 self.assertEqual(res, "% prefix-tree loaded 17 rules.")
566 self.vty.command("end")
567
568 res = self.vty.command("show prefix-tree")
569 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')
570
571 self.vty.command("configure terminal")
572 self.vty.command("nat")
573 self.vty.command("no prefix-tree")
574 self.vty.command("end")
575
576 res = self.vty.command("show prefix-tree")
577 self.assertEqual(res, "% there is now prefix tree loaded.")
578
Jacob Erlbeck6cb2ccc2013-08-14 11:10:34 +0200579 def testUssdSideChannelProvider(self):
580 self.vty.command("end")
581 self.vty.enable()
582 self.vty.command("configure terminal")
583 self.vty.command("nat")
584 self.vty.command("ussd-token key")
585 self.vty.command("end")
586
587 res = self.vty.verify("show ussd-connection", ['The USSD side channel provider is not connected and not authorized.'])
588 self.assertTrue(res)
589
590 ussdSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
591 ussdSocket.connect(('127.0.0.1', 5001))
592 ussdSocket.settimeout(2.0)
593 print "Connected to %s:%d" % ussdSocket.getpeername()
594
595 print "Expecting ID_GET request"
596 data = ussdSocket.recv(4)
597 self.assertEqual(data, "\x00\x01\xfe\x04")
598
599 print "Going to send ID_RESP response"
600 res = ussdSocket.send("\x00\x07\xfe\x05\x00\x04\x01\x6b\x65\x79")
601 self.assertEqual(res, 10)
602
603 # initiating PING/PONG cycle to know, that the ID_RESP message has been processed
604
605 print "Going to send PING request"
606 res = ussdSocket.send("\x00\x01\xfe\x00")
607 self.assertEqual(res, 4)
608
609 print "Expecting PONG response"
610 data = ussdSocket.recv(4)
611 self.assertEqual(data, "\x00\x01\xfe\x01")
612
613 res = self.vty.verify("show ussd-connection", ['The USSD side channel provider is connected and authorized.'])
614 self.assertTrue(res)
615
616 print "Going to shut down connection"
617 ussdSocket.shutdown(socket.SHUT_WR)
618
619 print "Expecting EOF"
620 data = ussdSocket.recv(4)
621 self.assertEqual(data, "")
622
623 ussdSocket.close()
624
625 res = self.vty.verify("show ussd-connection", ['The USSD side channel provider is not connected and not authorized.'])
626 self.assertTrue(res)
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200627
Holger Hans Peter Freyther64190182014-01-20 10:14:05 +0100628 def testAccessList(self):
629 """
630 Verify that the imsi-deny can have a reject cause or no reject cause
631 """
632 self.vty.enable()
633 self.vty.command("configure terminal")
634 self.vty.command("nat")
635
636 # Old default
637 self.vty.command("access-list test-default imsi-deny ^123[0-9]*$")
638 res = self.vty.command("show running-config").split("\r\n")
639 asserted = False
640 for line in res:
Holger Hans Peter Freyther4ecc6872014-03-04 15:38:00 +0100641 if line.startswith(" access-list test-default"):
Holger Hans Peter Freyther64190182014-01-20 10:14:05 +0100642 self.assertEqual(line, " access-list test-default imsi-deny ^123[0-9]*$ 11 11")
643 asserted = True
644 self.assert_(asserted)
645
646 # Check the optional CM Service Reject Cause
647 self.vty.command("access-list test-cm-deny imsi-deny ^123[0-9]*$ 42").split("\r\n")
648 res = self.vty.command("show running-config").split("\r\n")
649 asserted = False
650 for line in res:
651 if line.startswith(" access-list test-cm"):
652 self.assertEqual(line, " access-list test-cm-deny imsi-deny ^123[0-9]*$ 42 11")
653 asserted = True
654 self.assert_(asserted)
655
656 # Check the optional LU Reject Cause
657 self.vty.command("access-list test-lu-deny imsi-deny ^123[0-9]*$ 23 42").split("\r\n")
658 res = self.vty.command("show running-config").split("\r\n")
659 asserted = False
660 for line in res:
661 if line.startswith(" access-list test-lu"):
662 self.assertEqual(line, " access-list test-lu-deny imsi-deny ^123[0-9]*$ 23 42")
663 asserted = True
664 self.assert_(asserted)
665
Jacob Erlbeck6d233712013-10-23 11:24:15 +0200666class TestVTYGbproxy(TestVTYGenericBSC):
667
668 def vty_command(self):
669 return ["./src/gprs/osmo-gbproxy", "-c",
670 "doc/examples/osmo-gbproxy/osmo-gbproxy.cfg"]
671
672 def vty_app(self):
673 return (4246, "./src/gprs/osmo-gbproxy", "OsmoGbProxy", "bsc")
674
675 def testVtyTree(self):
676 self.vty.enable()
677 self.assertTrue(self.vty.verify('configure terminal', ['']))
678 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck6e919db2013-10-29 09:30:31 +0100679 self.checkForEndAndExit()
Jacob Erlbeck6d233712013-10-23 11:24:15 +0200680 self.assertTrue(self.vty.verify('ns', ['']))
681 self.assertEquals(self.vty.node(), 'config-ns')
682 self.checkForEndAndExit()
683 self.assertTrue(self.vty.verify('exit', ['']))
684 self.assertEquals(self.vty.node(), 'config')
685 self.assertTrue(self.vty.verify('gbproxy', ['']))
686 self.assertEquals(self.vty.node(), 'config-gbproxy')
687 self.checkForEndAndExit()
688 self.assertTrue(self.vty.verify('exit', ['']))
689 self.assertEquals(self.vty.node(), 'config')
690
691 def testVtyShow(self):
692 res = self.vty.command("show ns")
693 self.assert_(res.find('Encapsulation NS-UDP-IP') >= 0)
694
695 res = self.vty.command("show gbproxy stats")
696 self.assert_(res.find('GBProxy Global Statistics') >= 0)
697
Jacob Erlbeck4211d792013-10-24 12:48:23 +0200698 def testVtyDeletePeer(self):
699 self.vty.enable()
700 self.assertTrue(self.vty.verify('delete-gbproxy-peer 9999 bvci 7777', ['BVC not found']))
701 res = self.vty.command("delete-gbproxy-peer 9999 all dry-run")
702 self.assert_(res.find('Not Deleted 0 BVC') >= 0)
703 self.assert_(res.find('Not Deleted 0 NS-VC') >= 0)
704 res = self.vty.command("delete-gbproxy-peer 9999 only-bvc dry-run")
705 self.assert_(res.find('Not Deleted 0 BVC') >= 0)
706 self.assert_(res.find('Not Deleted 0 NS-VC') < 0)
707 res = self.vty.command("delete-gbproxy-peer 9999 only-nsvc dry-run")
708 self.assert_(res.find('Not Deleted 0 BVC') < 0)
709 self.assert_(res.find('Not Deleted 0 NS-VC') >= 0)
710 res = self.vty.command("delete-gbproxy-peer 9999 all")
711 self.assert_(res.find('Deleted 0 BVC') >= 0)
712 self.assert_(res.find('Deleted 0 NS-VC') >= 0)
713
Jacob Erlbeck144b8b12014-11-04 11:15:01 +0100714class TestVTYSGSN(TestVTYGenericBSC):
715
716 def vty_command(self):
717 return ["./src/gprs/osmo-sgsn", "-c",
718 "doc/examples/osmo-sgsn/osmo-sgsn.cfg"]
719
720 def vty_app(self):
721 return (4245, "./src/gprs/osmo-sgsn", "OsmoSGSN", "sgsn")
722
723 def testVtyTree(self):
724 self.vty.enable()
725 self.assertTrue(self.vty.verify('configure terminal', ['']))
726 self.assertEquals(self.vty.node(), 'config')
727 self.checkForEndAndExit()
728 self.assertTrue(self.vty.verify('ns', ['']))
729 self.assertEquals(self.vty.node(), 'config-ns')
730 self.checkForEndAndExit()
731 self.assertTrue(self.vty.verify('exit', ['']))
732 self.assertEquals(self.vty.node(), 'config')
733 self.assertTrue(self.vty.verify('sgsn', ['']))
734 self.assertEquals(self.vty.node(), 'config-sgsn')
735 self.checkForEndAndExit()
736 self.assertTrue(self.vty.verify('exit', ['']))
737 self.assertEquals(self.vty.node(), 'config')
738
739 def testVtyShow(self):
740 res = self.vty.command("show ns")
741 self.assert_(res.find('Encapsulation NS-UDP-IP') >= 0)
742 self.assertTrue(self.vty.verify('show bssgp', ['']))
743 self.assertTrue(self.vty.verify('show bssgp stats', ['']))
744 # TODO: uncomment when the command does not segfault anymore
745 # self.assertTrue(self.vty.verify('show bssgp nsei 123', ['']))
746 # self.assertTrue(self.vty.verify('show bssgp nsei 123 stats', ['']))
747
748 self.assertTrue(self.vty.verify('show sgsn', ['']))
749 self.assertTrue(self.vty.verify('show mm-context all', ['']))
750 self.assertTrue(self.vty.verify('show mm-context imsi 000001234567', ['No MM context for IMSI 000001234567']))
751 self.assertTrue(self.vty.verify('show pdp-context all', ['']))
752
753 res = self.vty.command("show sndcp")
754 self.assert_(res.find('State of SNDCP Entities') >= 0)
755
756 res = self.vty.command("show llc")
757 self.assert_(res.find('State of LLC Entities') >= 0)
758
Jacob Erlbeck106f5472014-11-04 10:08:37 +0100759 def testVtyAuth(self):
760 self.vty.enable()
761 self.assertTrue(self.vty.verify('configure terminal', ['']))
762 self.assertEquals(self.vty.node(), 'config')
763 self.assertTrue(self.vty.verify('sgsn', ['']))
764 self.assertEquals(self.vty.node(), 'config-sgsn')
765 self.assertTrue(self.vty.verify('auth-policy accept-all', ['']))
766 res = self.vty.command("show running-config")
767 self.assert_(res.find('auth-policy accept-all') > 0)
768 self.assertTrue(self.vty.verify('auth-policy acl-only', ['']))
769 res = self.vty.command("show running-config")
770 self.assert_(res.find('auth-policy acl-only') > 0)
771 self.assertTrue(self.vty.verify('auth-policy closed', ['']))
772 res = self.vty.command("show running-config")
773 self.assert_(res.find('auth-policy closed') > 0)
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100774 self.assertTrue(self.vty.verify('auth-policy remote', ['']))
775 res = self.vty.command("show running-config")
776 self.assert_(res.find('auth-policy remote') > 0)
Jacob Erlbeck106f5472014-11-04 10:08:37 +0100777
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100778 def testVtySubscriber(self):
779 self.vty.enable()
780 res = self.vty.command('show subscriber cache')
781 self.assert_(res.find('1234567890') < 0)
Jacob Erlbeckd9193432015-01-19 14:11:46 +0100782 self.assertTrue(self.vty.verify('update-subscriber imsi 1234567890 create', ['']))
783 res = self.vty.command('show subscriber cache')
784 self.assert_(res.find('1234567890') >= 0)
785 self.assert_(res.find('Authorized: 0') >= 0)
786 self.assertTrue(self.vty.verify('update-subscriber imsi 1234567890 update-location-result ok', ['']))
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100787 res = self.vty.command('show subscriber cache')
788 self.assert_(res.find('1234567890') >= 0)
789 self.assert_(res.find('Authorized: 1') >= 0)
Jacob Erlbeck8000e0e2015-01-27 14:56:40 +0100790 self.assertTrue(self.vty.verify('update-subscriber imsi 1234567890 cancel update-procedure', ['']))
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100791 res = self.vty.command('show subscriber cache')
Jacob Erlbecke988ae42015-01-27 12:41:19 +0100792 self.assert_(res.find('1234567890') >= 0)
793 self.assertTrue(self.vty.verify('update-subscriber imsi 1234567890 destroy', ['']))
794 res = self.vty.command('show subscriber cache')
Jacob Erlbeck207f4a52014-11-11 14:01:48 +0100795 self.assert_(res.find('1234567890') < 0)
796
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100797 def testVtyGgsn(self):
798 self.vty.enable()
799 self.assertTrue(self.vty.verify('configure terminal', ['']))
800 self.assertEquals(self.vty.node(), 'config')
801 self.assertTrue(self.vty.verify('sgsn', ['']))
802 self.assertEquals(self.vty.node(), 'config-sgsn')
803 self.assertTrue(self.vty.verify('ggsn 0 remote-ip 127.99.99.99', ['']))
804 self.assertTrue(self.vty.verify('ggsn 0 gtp-version 1', ['']))
805 self.assertTrue(self.vty.verify('apn * ggsn 0', ['']))
806 self.assertTrue(self.vty.verify('apn apn1.test ggsn 0', ['']))
807 self.assertTrue(self.vty.verify('apn apn1.test ggsn 1', ['% a GGSN with id 1 has not been defined']))
808 self.assertTrue(self.vty.verify('apn apn1.test imsi-prefix 123456 ggsn 0', ['']))
809 self.assertTrue(self.vty.verify('apn apn2.test imsi-prefix 123456 ggsn 0', ['']))
810 res = self.vty.command("show running-config")
811 self.assert_(res.find('ggsn 0 remote-ip 127.99.99.99') >= 0)
812 self.assert_(res.find('ggsn 0 gtp-version 1') >= 0)
813 self.assert_(res.find('apn * ggsn 0') >= 0)
814 self.assert_(res.find('apn apn1.test ggsn 0') >= 0)
815 self.assert_(res.find('apn apn1.test imsi-prefix 123456 ggsn 0') >= 0)
816 self.assert_(res.find('apn apn2.test imsi-prefix 123456 ggsn 0') >= 0)
817
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200818def add_nat_test(suite, workdir):
819 if not os.path.isfile(os.path.join(workdir, "src/osmo-bsc_nat/osmo-bsc_nat")):
820 print("Skipping the NAT test")
821 return
822 test = unittest.TestLoader().loadTestsFromTestCase(TestVTYNAT)
823 suite.addTest(test)
824
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200825def add_bsc_test(suite, workdir):
826 if not os.path.isfile(os.path.join(workdir, "src/osmo-bsc/osmo-bsc")):
827 print("Skipping the BSC test")
828 return
829 test = unittest.TestLoader().loadTestsFromTestCase(TestVTYBSC)
830 suite.addTest(test)
831
Jacob Erlbeck6d233712013-10-23 11:24:15 +0200832def add_gbproxy_test(suite, workdir):
833 if not os.path.isfile(os.path.join(workdir, "src/gprs/osmo-gbproxy")):
834 print("Skipping the Gb-Proxy test")
835 return
836 test = unittest.TestLoader().loadTestsFromTestCase(TestVTYGbproxy)
837 suite.addTest(test)
838
Jacob Erlbeck144b8b12014-11-04 11:15:01 +0100839def add_sgsn_test(suite, workdir):
840 if not os.path.isfile(os.path.join(workdir, "src/gprs/osmo-sgsn")):
841 print("Skipping the SGSN test")
842 return
843 test = unittest.TestLoader().loadTestsFromTestCase(TestVTYSGSN)
844 suite.addTest(test)
845
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200846if __name__ == '__main__':
847 import argparse
848 import sys
849
850 workdir = '.'
851
852 parser = argparse.ArgumentParser()
853 parser.add_argument("-v", "--verbose", dest="verbose",
854 action="store_true", help="verbose mode")
855 parser.add_argument("-p", "--pythonconfpath", dest="p",
856 help="searchpath for config")
857 parser.add_argument("-w", "--workdir", dest="w",
858 help="Working directory")
859 args = parser.parse_args()
860
861 verbose_level = 1
862 if args.verbose:
863 verbose_level = 2
864
865 if args.w:
866 workdir = args.w
867
868 if args.p:
869 confpath = args.p
870
871 print "confpath %s, workdir %s" % (confpath, workdir)
872 os.chdir(workdir)
873 print "Running tests for specific VTY commands"
874 suite = unittest.TestSuite()
Holger Hans Peter Freyther8d998a72014-07-04 20:23:56 +0200875 suite.addTest(unittest.TestLoader().loadTestsFromTestCase(TestVTYMGCP))
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +0200876 suite.addTest(unittest.TestLoader().loadTestsFromTestCase(TestVTYNITB))
Jacob Erlbeck1b894022013-08-28 10:16:54 +0200877 add_bsc_test(suite, workdir)
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200878 add_nat_test(suite, workdir)
Jacob Erlbeck6d233712013-10-23 11:24:15 +0200879 add_gbproxy_test(suite, workdir)
Jacob Erlbeck144b8b12014-11-04 11:15:01 +0100880 add_sgsn_test(suite, workdir)
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200881 res = unittest.TextTestRunner(verbosity=verbose_level).run(suite)
882 sys.exit(len(res.errors) + len(res.failures))