blob: de1997cd4ae2fa5ad7c354617c1eadd19024194f [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
Max3e676892016-11-16 14:55:21 +010018import os, sys
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +020019import time
20import unittest
Jacob Erlbeck6cb2ccc2013-08-14 11:10:34 +020021import socket
Neels Hofmeyrbcfee2a2017-02-03 16:09:17 +010022import subprocess
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +020023
24import osmopy.obscvty as obscvty
25import osmopy.osmoutil as osmoutil
Max60383a12017-11-23 16:33:33 +010026from osmopy.osmo_ipa import IPA
Max3e676892016-11-16 14:55:21 +010027
Neels Hofmeyr476c4bb2017-02-24 17:55:11 +010028# to be able to find $top_srcdir/doc/...
29confpath = os.path.join(sys.path[0], '..')
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +020030
31class TestVTYBase(unittest.TestCase):
32
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020033 def checkForEndAndExit(self):
34 res = self.vty.command("list")
35 #print ('looking for "exit"\n')
36 self.assert_(res.find(' exit\r') > 0)
37 #print 'found "exit"\nlooking for "end"\n'
38 self.assert_(res.find(' end\r') > 0)
39 #print 'found "end"\n'
40
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +020041 def vty_command(self):
42 raise Exception("Needs to be implemented by a subclass")
43
44 def vty_app(self):
45 raise Exception("Needs to be implemented by a subclass")
46
47 def setUp(self):
48 osmo_vty_cmd = self.vty_command()[:]
49 config_index = osmo_vty_cmd.index('-c')
50 if config_index:
51 cfi = config_index + 1
52 osmo_vty_cmd[cfi] = os.path.join(confpath, osmo_vty_cmd[cfi])
53
54 try:
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +020055 self.proc = osmoutil.popen_devnull(osmo_vty_cmd)
56 except OSError:
57 print >> sys.stderr, "Current directory: %s" % os.getcwd()
58 print >> sys.stderr, "Consider setting -b"
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +020059
60 appstring = self.vty_app()[2]
61 appport = self.vty_app()[0]
62 self.vty = obscvty.VTYInteract(appstring, "127.0.0.1", appport)
63
64 def tearDown(self):
Neels Hofmeyr40a91b32017-02-24 17:54:22 +010065 if self.vty:
66 self.vty._close_socket()
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +020067 self.vty = None
68 osmoutil.end_proc(self.proc)
69
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020070class TestVTYMSC(TestVTYBase):
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +020071
72 def vty_command(self):
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020073 return ["./src/osmo-msc/osmo-msc", "-c",
74 "doc/examples/osmo-msc/osmo-msc.cfg"]
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +020075
76 def vty_app(self):
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020077 return (4254, "./src/osmo-msc/osmo-msc", "OsmoMSC", "msc")
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +020078
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020079 def testConfigNetworkTree(self, include_bsc_items=True):
80 self.vty.enable()
81 self.assertTrue(self.vty.verify("configure terminal",['']))
82 self.assertEquals(self.vty.node(), 'config')
83 self.checkForEndAndExit()
84 self.assertTrue(self.vty.verify("network",['']))
85 self.assertEquals(self.vty.node(), 'config-net')
86 self.checkForEndAndExit()
87 self.vty.command("write terminal")
88 self.assertTrue(self.vty.verify("exit",['']))
89 self.assertEquals(self.vty.node(), 'config')
90 self.assertTrue(self.vty.verify("exit",['']))
91 self.assertTrue(self.vty.node() is None)
Jacob Erlbeck96903c42013-09-02 13:17:14 +020092
Holger Hans Peter Freyther0df1ab92013-09-02 20:58:38 +020093 def checkForSmpp(self):
94 """SMPP is not always enabled, check if it is"""
95 res = self.vty.command("list")
96 return "smpp" in res
97
Holger Hans Peter Freyther42cf2e02015-07-06 16:41:30 +020098 def testSmppFirst(self):
Holger Hans Peter Freyther42cf2e02015-07-06 16:41:30 +020099 # enable the configuration
100 self.vty.enable()
101 self.vty.command("configure terminal")
Holger Hans Peter Freythera2c41c42015-07-13 11:23:53 +0200102
103 if not self.checkForSmpp():
104 return
105
Holger Hans Peter Freyther42cf2e02015-07-06 16:41:30 +0200106 self.vty.command("smpp")
107
108 # check the default
109 res = self.vty.command("write terminal")
110 self.assert_(res.find(' no smpp-first') > 0)
111
112 self.vty.verify("smpp-first", [''])
113 res = self.vty.command("write terminal")
114 self.assert_(res.find(' smpp-first') > 0)
115 self.assertEquals(res.find('no smpp-first'), -1)
116
117 self.vty.verify("no smpp-first", [''])
118 res = self.vty.command("write terminal")
119 self.assert_(res.find('no smpp-first') > 0)
120
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200121 def testVtyTree(self):
122 self.vty.enable()
123 self.assertTrue(self.vty.verify("configure terminal", ['']))
124 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck6e919db2013-10-29 09:30:31 +0100125 self.checkForEndAndExit()
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200126 self.assertTrue(self.vty.verify('mncc-int', ['']))
127 self.assertEquals(self.vty.node(), 'config-mncc-int')
128 self.checkForEndAndExit()
129 self.assertTrue(self.vty.verify('exit', ['']))
Holger Hans Peter Freyther0df1ab92013-09-02 20:58:38 +0200130
131 if self.checkForSmpp():
132 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck75877272013-10-23 11:24:14 +0200133 self.assertTrue(self.vty.verify('smpp', ['']))
134 self.assertEquals(self.vty.node(), 'config-smpp')
Jacob Erlbeck6e919db2013-10-29 09:30:31 +0100135 self.checkForEndAndExit()
Jacob Erlbeck75877272013-10-23 11:24:14 +0200136 self.assertTrue(self.vty.verify("exit", ['']))
Holger Hans Peter Freyther0df1ab92013-09-02 20:58:38 +0200137
Jacob Erlbeck0ae92a92013-09-02 13:17:16 +0200138 self.assertEquals(self.vty.node(), 'config')
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200139 self.assertTrue(self.vty.verify("exit", ['']))
140 self.assertTrue(self.vty.node() is None)
141
142 # Check searching for outer node's commands
143 self.vty.command("configure terminal")
144 self.vty.command('mncc-int')
Holger Hans Peter Freyther0df1ab92013-09-02 20:58:38 +0200145
146 if self.checkForSmpp():
147 self.vty.command('smpp')
148 self.assertEquals(self.vty.node(), 'config-smpp')
149 self.vty.command('mncc-int')
150
Jacob Erlbeck96903c42013-09-02 13:17:14 +0200151 self.assertEquals(self.vty.node(), 'config-mncc-int')
152
Maxddee01f2016-05-24 14:23:27 +0200153 def testVtyAuthorization(self):
154 self.vty.enable()
155 self.vty.command("configure terminal")
156 self.vty.command("network")
157 self.assertTrue(self.vty.verify("auth policy closed", ['']))
158 self.assertTrue(self.vty.verify("auth policy regexp", ['']))
159 self.assertTrue(self.vty.verify("authorized-regexp ^001", ['']))
160 self.assertTrue(self.vty.verify("authorized-regexp 02$", ['']))
161 self.assertTrue(self.vty.verify("authorized-regexp *123.*", ['']))
162 self.vty.command("end")
Maxddee01f2016-05-24 14:23:27 +0200163
Max0c1bc262016-04-20 12:06:06 +0200164 def testSi2Q(self):
165 self.vty.enable()
166 self.vty.command("configure terminal")
167 self.vty.command("network")
168 self.vty.command("bts 0")
169 before = self.vty.command("show running-config")
170 self.vty.command("si2quater neighbor-list add earfcn 1911 threshold 11 2")
171 self.vty.command("si2quater neighbor-list add earfcn 1924 threshold 11 3")
172 self.vty.command("si2quater neighbor-list add earfcn 2111 threshold 11")
173 self.vty.command("si2quater neighbor-list del earfcn 1911")
174 self.vty.command("si2quater neighbor-list del earfcn 1924")
175 self.vty.command("si2quater neighbor-list del earfcn 2111")
176 self.assertEquals(before, self.vty.command("show running-config"))
Max26679e02016-04-20 15:57:13 +0200177 self.vty.command("si2quater neighbor-list add uarfcn 1976 13 1")
178 self.vty.command("si2quater neighbor-list add uarfcn 1976 38 1")
179 self.vty.command("si2quater neighbor-list add uarfcn 1976 44 1")
180 self.vty.command("si2quater neighbor-list add uarfcn 1976 120 1")
181 self.vty.command("si2quater neighbor-list add uarfcn 1976 140 1")
182 self.vty.command("si2quater neighbor-list add uarfcn 1976 163 1")
183 self.vty.command("si2quater neighbor-list add uarfcn 1976 166 1")
184 self.vty.command("si2quater neighbor-list add uarfcn 1976 217 1")
185 self.vty.command("si2quater neighbor-list add uarfcn 1976 224 1")
186 self.vty.command("si2quater neighbor-list add uarfcn 1976 225 1")
187 self.vty.command("si2quater neighbor-list add uarfcn 1976 226 1")
188 self.vty.command("si2quater neighbor-list del uarfcn 1976 13")
189 self.vty.command("si2quater neighbor-list del uarfcn 1976 38")
190 self.vty.command("si2quater neighbor-list del uarfcn 1976 44")
191 self.vty.command("si2quater neighbor-list del uarfcn 1976 120")
192 self.vty.command("si2quater neighbor-list del uarfcn 1976 140")
193 self.vty.command("si2quater neighbor-list del uarfcn 1976 163")
194 self.vty.command("si2quater neighbor-list del uarfcn 1976 166")
195 self.vty.command("si2quater neighbor-list del uarfcn 1976 217")
196 self.vty.command("si2quater neighbor-list del uarfcn 1976 224")
197 self.vty.command("si2quater neighbor-list del uarfcn 1976 225")
198 self.vty.command("si2quater neighbor-list del uarfcn 1976 226")
199 self.assertEquals(before, self.vty.command("show running-config"))
Max0c1bc262016-04-20 12:06:06 +0200200
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +0200201 def testEnableDisablePeriodicLU(self):
202 self.vty.enable()
203 self.vty.command("configure terminal")
204 self.vty.command("network")
205 self.vty.command("bts 0")
206
207 # Test invalid input
208 self.vty.verify("periodic location update 0", ['% Unknown command.'])
209 self.vty.verify("periodic location update 5", ['% Unknown command.'])
210 self.vty.verify("periodic location update 1531", ['% Unknown command.'])
211
212 # Enable periodic lu..
213 self.vty.verify("periodic location update 60", [''])
214 res = self.vty.command("write terminal")
Holger Hans Peter Freytherc0438e32013-07-27 22:23:25 +0200215 self.assert_(res.find('periodic location update 60') > 0)
Holger Hans Peter Freytherc63f6f12013-07-27 21:07:57 +0200216 self.assertEquals(res.find('no periodic location update'), -1)
217
218 # Now disable it..
219 self.vty.verify("no periodic location update", [''])
220 res = self.vty.command("write terminal")
221 self.assertEquals(res.find('periodic location update 60'), -1)
Holger Hans Peter Freytherc0438e32013-07-27 22:23:25 +0200222 self.assert_(res.find('no periodic location update') > 0)
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200223
Ciabyec6e4f82014-03-06 17:20:55 +0100224 def testShowNetwork(self):
225 res = self.vty.command("show network")
226 self.assert_(res.startswith('BSC is on Country Code') >= 0)
227
Holger Hans Peter Freyther86573262015-01-31 09:47:37 +0100228 def testMeasurementFeed(self):
229 self.vty.enable()
230 self.vty.command("configure terminal")
231 self.vty.command("mncc-int")
232
233 res = self.vty.command("write terminal")
234 self.assertEquals(res.find('meas-feed scenario'), -1)
235
236 self.vty.command("meas-feed scenario bla")
237 res = self.vty.command("write terminal")
238 self.assert_(res.find('meas-feed scenario bla') > 0)
239
Neels Hofmeyr0867b722016-09-28 23:28:06 +0200240 self.vty.command("meas-feed scenario abcdefghijklmnopqrstuvwxyz01234567890")
Holger Hans Peter Freyther86573262015-01-31 09:47:37 +0100241 res = self.vty.command("write terminal")
242 self.assertEquals(res.find('meas-feed scenario abcdefghijklmnopqrstuvwxyz01234567890'), -1)
243 self.assertEquals(res.find('meas-feed scenario abcdefghijklmnopqrstuvwxyz012345'), -1)
244 self.assert_(res.find('meas-feed scenario abcdefghijklmnopqrstuvwxyz01234') > 0)
245
Max49364482016-04-13 11:36:39 +0200246def ipa_handle_small(x, verbose = False):
247 s = data2str(x.recv(4))
Neels Hofmeyrba1468e2017-02-03 04:23:46 +0100248 if len(s) != 4*2:
249 raise Exception("expected to receive 4 bytes, but got %d (%r)" % (len(s)/2, s))
Max49364482016-04-13 11:36:39 +0200250 if "0001fe00" == s:
251 if (verbose):
252 print "\tBSC <- NAT: PING?"
Max3e676892016-11-16 14:55:21 +0100253 x.send(IPA().pong())
Max49364482016-04-13 11:36:39 +0200254 elif "0001fe06" == s:
255 if (verbose):
256 print "\tBSC <- NAT: IPA ID ACK"
Max3e676892016-11-16 14:55:21 +0100257 x.send(IPA().id_ack())
Max49364482016-04-13 11:36:39 +0200258 elif "0001fe00" == s:
259 if (verbose):
260 print "\tBSC <- NAT: PONG!"
261 else:
262 if (verbose):
263 print "\tBSC <- NAT: ", s
264
Neels Hofmeyrbcfee2a2017-02-03 16:09:17 +0100265def ipa_handle_resp(x, tk, verbose = False, proc=None):
Max49364482016-04-13 11:36:39 +0200266 s = data2str(x.recv(38))
267 if "0023fe040108010701020103010401050101010011" in s:
Neels Hofmeyr7d17c3e2017-01-26 23:04:28 +0100268 retries = 3
269 while True:
270 print "\tsending IPA identity(%s) at %s" % (tk, time.strftime("%T"))
271 try:
272 x.send(IPA().id_resp(IPA().identity(name = tk.encode('utf-8'))))
273 print "\tdone sending IPA identity(%s) at %s" % (tk,
274 time.strftime("%T"))
275 break
276 except:
277 print "\tfailed sending IPA identity at", time.strftime("%T")
Neels Hofmeyrbcfee2a2017-02-03 16:09:17 +0100278 if proc:
279 print "\tproc.poll() = %r" % proc.poll()
Neels Hofmeyr7d17c3e2017-01-26 23:04:28 +0100280 if retries < 1:
281 print "\tgiving up"
282 raise
Neels Hofmeyre02e1e72017-02-03 05:55:26 +0100283 print "\tretrying (%d attempts left)" % retries
Neels Hofmeyr7d17c3e2017-01-26 23:04:28 +0100284 retries -= 1
Max49364482016-04-13 11:36:39 +0200285 else:
286 if (verbose):
287 print "\tBSC <- NAT: ", s
288
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200289if __name__ == '__main__':
290 import argparse
291 import sys
292
293 workdir = '.'
294
295 parser = argparse.ArgumentParser()
296 parser.add_argument("-v", "--verbose", dest="verbose",
297 action="store_true", help="verbose mode")
298 parser.add_argument("-p", "--pythonconfpath", dest="p",
299 help="searchpath for config")
300 parser.add_argument("-w", "--workdir", dest="w",
301 help="Working directory")
Neels Hofmeyr3f8a8f72017-02-28 02:43:29 +0100302 parser.add_argument("test_name", nargs="*", help="(parts of) test names to run, case-insensitive")
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200303 args = parser.parse_args()
304
305 verbose_level = 1
306 if args.verbose:
307 verbose_level = 2
308
309 if args.w:
310 workdir = args.w
311
312 if args.p:
313 confpath = args.p
314
315 print "confpath %s, workdir %s" % (confpath, workdir)
316 os.chdir(workdir)
317 print "Running tests for specific VTY commands"
318 suite = unittest.TestSuite()
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200319 suite.addTest(unittest.TestLoader().loadTestsFromTestCase(TestVTYMSC))
Neels Hofmeyr3f8a8f72017-02-28 02:43:29 +0100320
321 if args.test_name:
322 osmoutil.pick_tests(suite, *args.test_name)
323
Neels Hofmeyr0a45c1e2016-09-28 23:48:02 +0200324 res = unittest.TextTestRunner(verbosity=verbose_level, stream=sys.stdout).run(suite)
Holger Hans Peter Freythereb0acb62013-06-24 15:47:34 +0200325 sys.exit(len(res.errors) + len(res.failures))
Neels Hofmeyr23d37c92016-09-26 03:18:32 +0200326
Neels Hofmeyr0867b722016-09-28 23:28:06 +0200327# vim: shiftwidth=4 expandtab nocin ai