diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-02-22 07:53:43 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-02-22 07:53:43 +0100 |
commit | f73362462ea097757b7b8ed3a7338ef950160edc (patch) | |
tree | 4dacb68b1144479e621ad6adaaaad579a527850e /smoketest | |
parent | 055841e88ea43012d6017a4c9341dce6c17f887e (diff) | |
download | vyos-1x-f73362462ea097757b7b8ed3a7338ef950160edc.tar.gz vyos-1x-f73362462ea097757b7b8ed3a7338ef950160edc.zip |
Revert "backport: policy: T4151: remove all previous rules on edit"
This reverts commit b71a04811bd61e1faf2bc4eaceaaae8bdbf97dc6.
Diffstat (limited to 'smoketest')
-rwxr-xr-x | smoketest/scripts/cli/test_policy.py | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/smoketest/scripts/cli/test_policy.py b/smoketest/scripts/cli/test_policy.py index c9d178554..8d6a69a77 100755 --- a/smoketest/scripts/cli/test_policy.py +++ b/smoketest/scripts/cli/test_policy.py @@ -981,43 +981,6 @@ class TestPolicy(VyOSUnitTestSHIM.TestCase): self.assertEqual(sort_ip(tmp), original) self.assertEqual(sort_ip(tmp_v6), original_v6) - # Test multiple commits ipv4 - def test_multiple_commit_ipv4_table_id(self): - path = base_path + ['local-route'] - - sources = ['192.0.2.1', '192.0.2.2'] - destination = '203.0.113.25' - rule = '105' - table = '151' - self.cli_set(path + ['rule', rule, 'set', 'table', table]) - for src in sources: - self.cli_set(path + ['rule', rule, 'source', src]) - - self.cli_commit() - - # Check generated configuration - # Expected values - original_first = """ - 105: from 192.0.2.1 lookup 151 - 105: from 192.0.2.2 lookup 151 - """ - tmp = cmd('ip rule show prio 105') - - self.assertEqual(sort_ip(tmp), sort_ip(original_first)) - - # Create second commit with added destination - self.cli_set(path + ['rule', rule, 'destination', destination]) - self.cli_commit() - - original_second = """ - 105: from 192.0.2.1 to 203.0.113.25 lookup 151 - 105: from 192.0.2.2 to 203.0.113.25 lookup 151 - """ - tmp = cmd('ip rule show prio 105') - - self.assertEqual(sort_ip(tmp), sort_ip(original_second)) - - def sort_ip(output): return output.splitlines().sort() |