aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vty_test_runner.py
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-01-24 14:35:36 +0100
committerHarald Welte <laforge@gnumonks.org>2018-01-24 14:04:46 +0000
commita1c5de45c101f9d5995e71a0a767afb405fea55b (patch)
treed10ccc75fd3fe467cfe102a857c324d3ecc2de05 /tests/vty_test_runner.py
parent37382ec2cf26ebcd70918457cb4d2b7285c52e0d (diff)
Remove traces of meas_feed
Measurement reporting (and the relate feed) are functions of the BSC, not the MSC. This code should never have been inherited from OsmoNITB to OsmoMSC in the first place, let's remove it. Change-Id: I0d57ac214e574e267fa9752daf76566197b9aa64
Diffstat (limited to 'tests/vty_test_runner.py')
-rw-r--r--tests/vty_test_runner.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/vty_test_runner.py b/tests/vty_test_runner.py
index de1997cd4..707fc5c6a 100644
--- a/tests/vty_test_runner.py
+++ b/tests/vty_test_runner.py
@@ -225,24 +225,6 @@ class TestVTYMSC(TestVTYBase):
res = self.vty.command("show network")
self.assert_(res.startswith('BSC is on Country Code') >= 0)
- def testMeasurementFeed(self):
- self.vty.enable()
- self.vty.command("configure terminal")
- self.vty.command("mncc-int")
-
- res = self.vty.command("write terminal")
- self.assertEquals(res.find('meas-feed scenario'), -1)
-
- self.vty.command("meas-feed scenario bla")
- res = self.vty.command("write terminal")
- self.assert_(res.find('meas-feed scenario bla') > 0)
-
- self.vty.command("meas-feed scenario abcdefghijklmnopqrstuvwxyz01234567890")
- res = self.vty.command("write terminal")
- self.assertEquals(res.find('meas-feed scenario abcdefghijklmnopqrstuvwxyz01234567890'), -1)
- self.assertEquals(res.find('meas-feed scenario abcdefghijklmnopqrstuvwxyz012345'), -1)
- self.assert_(res.find('meas-feed scenario abcdefghijklmnopqrstuvwxyz01234') > 0)
-
def ipa_handle_small(x, verbose = False):
s = data2str(x.recv(4))
if len(s) != 4*2: