diff options
author | Christian Breunig <christian@breunig.cc> | 2023-11-27 08:32:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 08:32:19 +0100 |
commit | 6c214981794321424f43d7deb6c3441d99fa7a36 (patch) | |
tree | eb7a0d0ba1c70ef6eccc09cc2d7fe09787e31131 /smoketest/scripts/cli/test_protocols_bfd.py | |
parent | c0fbe890be6a5a744d7199ef4f0b8ce21acdd006 (diff) | |
parent | 080e117884196136cd63e5d312ff43fba15f7182 (diff) | |
download | vyos-1x-6c214981794321424f43d7deb6c3441d99fa7a36.tar.gz vyos-1x-6c214981794321424f43d7deb6c3441d99fa7a36.zip |
Merge pull request #2544 from c-po/t5783-smoketests
smoketest: T5783: check for any abnormal daemon termination
Diffstat (limited to 'smoketest/scripts/cli/test_protocols_bfd.py')
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_bfd.py | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/smoketest/scripts/cli/test_protocols_bfd.py b/smoketest/scripts/cli/test_protocols_bfd.py index 451565664..f209eae3a 100755 --- a/smoketest/scripts/cli/test_protocols_bfd.py +++ b/smoketest/scripts/cli/test_protocols_bfd.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2021 VyOS maintainers and contributors +# Copyright (C) 2021-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 @@ -77,11 +77,23 @@ profiles = { } class TestProtocolsBFD(VyOSUnitTestSHIM.TestCase): + @classmethod + def setUpClass(cls): + super(TestProtocolsBFD, cls).setUpClass() + + # Retrieve FRR daemon PID - it is not allowed to crash, thus PID must remain the same + cls.daemon_pid = process_named_running(PROCESS_NAME) + + # ensure we can also run this test on a live system - so lets clean + # out the current configuration :) + cls.cli_delete(cls, base_path) + def tearDown(self): self.cli_delete(base_path) self.cli_commit() - # Check for running process - self.assertTrue(process_named_running(PROCESS_NAME)) + + # check process health and continuity + self.assertEqual(self.daemon_pid, process_named_running(PROCESS_NAME)) def test_bfd_peer(self): self.cli_set(['vrf', 'name', vrf_name, 'table', '1000']) |