summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-12-25 11:00:36 +0100
committerGitHub <noreply@github.com>2023-12-25 11:00:36 +0100
commit4cf15bd7587bf6df81bf5ad1083dd1b97d2c9fbc (patch)
tree4707cae8354a714773482b394a7669933ca98c6f /smoketest
parentfb3a7e30bffc949584bbb0ad1f6632ef940605be (diff)
parenta9201e77110ce0695e2ba879304aef41b7ac9a0c (diff)
downloadvyos-1x-4cf15bd7587bf6df81bf5ad1083dd1b97d2c9fbc.tar.gz
vyos-1x-4cf15bd7587bf6df81bf5ad1083dd1b97d2c9fbc.zip
Merge pull request #2687 from c-po/lldp-snmp-t5855
snmp: T5855: migrate "set service lldp snmp enable" to "set service lldp snmp"
Diffstat (limited to 'smoketest')
-rw-r--r--smoketest/configs/ospf-small3
-rwxr-xr-xsmoketest/scripts/cli/test_service_lldp.py16
2 files changed, 18 insertions, 1 deletions
diff --git a/smoketest/configs/ospf-small b/smoketest/configs/ospf-small
index 767f4e21f..b3002b1af 100644
--- a/smoketest/configs/ospf-small
+++ b/smoketest/configs/ospf-small
@@ -81,6 +81,9 @@ service {
lldp {
interface all {
}
+ snmp {
+ enable
+ }
}
snmp {
community public {
diff --git a/smoketest/scripts/cli/test_service_lldp.py b/smoketest/scripts/cli/test_service_lldp.py
index ee26844ab..7e30b43f5 100755
--- a/smoketest/scripts/cli/test_service_lldp.py
+++ b/smoketest/scripts/cli/test_service_lldp.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
-# Copyright (C) 2022 VyOS maintainers and contributors
+# Copyright (C) 2022-2023 VyOS maintainers and contributors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or later as
@@ -122,6 +122,20 @@ class TestServiceLLDP(VyOSUnitTestSHIM.TestCase):
self.assertIn(f'configure ports {interface} med location elin "{elin}"', config)
self.assertIn(f'configure system interface pattern "{interface}"', config)
+ def test_06_lldp_snmp(self):
+ self.cli_set(base_path + ['snmp'])
+
+ # verify - can not start lldp snmp without snmp beeing configured
+ with self.assertRaises(ConfigSessionError):
+ self.cli_commit()
+ self.cli_set(['service', 'snmp'])
+ self.cli_commit()
+
+ # SNMP required process to be started with -x option
+ tmp = read_file('/etc/default/lldpd')
+ self.assertIn('-x', tmp)
+
+ self.cli_delete(['service', 'snmp'])
if __name__ == '__main__':
unittest.main(verbosity=2)