diff options
author | Christian Breunig <christian@breunig.cc> | 2024-07-24 20:17:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-24 20:17:28 +0200 |
commit | dea5d4554250c908338c96107841caeeee3f2f3b (patch) | |
tree | 60af22560ec37f113b5b37f7c99c5fc7bcde214d /smoketest/scripts/cli | |
parent | 565277a4929550abc01529355be7924a87f9b8c1 (diff) | |
parent | dd0ebffa33728e452ac6e11737c2283f0e390359 (diff) | |
download | vyos-1x-dea5d4554250c908338c96107841caeeee3f2f3b.tar.gz vyos-1x-dea5d4554250c908338c96107841caeeee3f2f3b.zip |
Merge pull request #3856 from c-po/verify-vrf
vrf: T6602: verify supplied VRF name on all interface types
Diffstat (limited to 'smoketest/scripts/cli')
-rw-r--r-- | smoketest/scripts/cli/base_interfaces_test.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/base_interfaces_test.py b/smoketest/scripts/cli/base_interfaces_test.py index 4072fd5c2..66b789e94 100644 --- a/smoketest/scripts/cli/base_interfaces_test.py +++ b/smoketest/scripts/cli/base_interfaces_test.py @@ -303,6 +303,24 @@ class BasicInterfaceTest: self.cli_delete(['vrf', 'name', vrf1_name]) self.cli_delete(['vrf', 'name', vrf2_name]) + def test_add_to_invalid_vrf(self): + if not self._test_vrf: + self.skipTest('not supported') + + # move interface into first VRF + for interface in self._interfaces: + for option in self._options.get(interface, []): + self.cli_set(self._base_path + [interface] + option.split()) + self.cli_set(self._base_path + [interface, 'vrf', 'invalid']) + + # check validate() - can not use a non-existing VRF + with self.assertRaises(ConfigSessionError): + self.cli_commit() + + for interface in self._interfaces: + self.cli_delete(self._base_path + [interface, 'vrf', 'invalid']) + self.cli_set(self._base_path + [interface, 'description', 'test_add_to_invalid_vrf']) + def test_span_mirror(self): if not self._mirror_interfaces: self.skipTest('not supported') |