summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
authorkhramshinr <khramshinr@gmail.com>2024-05-02 17:45:57 +0600
committerkhramshinr <khramshinr@gmail.com>2024-05-02 17:47:04 +0600
commit0b54c1bc411a21833ec573031cf5ad98fe709a2f (patch)
treeed027047f4fbc5b70d05ea0e698006ab655ef341 /smoketest
parentf97a3254c9e958f76b3ff3dfec7e9297cf48575c (diff)
downloadvyos-1x-0b54c1bc411a21833ec573031cf5ad98fe709a2f.tar.gz
vyos-1x-0b54c1bc411a21833ec573031cf5ad98fe709a2f.zip
qos: T6225: Fix qos random-detect policy
Fix default values for random-detect Remove dsmakr qdisc from gred cofig because dsmark was deleted from kernel
Diffstat (limited to 'smoketest')
-rwxr-xr-xsmoketest/scripts/cli/test_qos.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/smoketest/scripts/cli/test_qos.py b/smoketest/scripts/cli/test_qos.py
index fef1ff23a..bcf5139c7 100755
--- a/smoketest/scripts/cli/test_qos.py
+++ b/smoketest/scripts/cli/test_qos.py
@@ -441,7 +441,6 @@ class TestQoS(VyOSUnitTestSHIM.TestCase):
self.cli_commit()
def test_08_random_detect(self):
- self.skipTest('tc returns invalid JSON here - needs iproute2 fix')
bandwidth = 5000
first = True
@@ -467,8 +466,11 @@ class TestQoS(VyOSUnitTestSHIM.TestCase):
bandwidth = 5000
for interface in self._interfaces:
tmp = get_tc_qdisc_json(interface)
- import pprint
- pprint.pprint(tmp)
+ self.assertTrue('gred' in tmp.get('kind'))
+ self.assertEqual(8, len(tmp.get('options', {}).get('vqs')))
+ self.assertEqual(8, tmp.get('options', {}).get('dp_cnt'))
+ self.assertEqual(0, tmp.get('options', {}).get('dp_default'))
+ self.assertTrue(tmp.get('options', {}).get('grio'))
def test_09_rate_control(self):
bandwidth = 5000