diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-04 22:29:26 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-04-04 22:29:26 +0200 |
commit | 6a04ff2840dfcfcad7a1cb93baf210370fa8871e (patch) | |
tree | 9e6e59335886a7c71028fb764d4ed6fc1dac09e2 | |
parent | efa753bc661d04967237e7ec3d72d3757230aaf9 (diff) | |
download | vyos-1x-6a04ff2840dfcfcad7a1cb93baf210370fa8871e.tar.gz vyos-1x-6a04ff2840dfcfcad7a1cb93baf210370fa8871e.zip |
smoketest: login: verify test accounts are properly deleted
-rwxr-xr-x | smoketest/scripts/cli/test_system_login.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_system_login.py b/smoketest/scripts/cli/test_system_login.py index 095300de3..1131b6f93 100755 --- a/smoketest/scripts/cli/test_system_login.py +++ b/smoketest/scripts/cli/test_system_login.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2019-2020 VyOS maintainers and contributors +# Copyright (C) 2019-2022 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 @@ -23,6 +23,7 @@ from base_vyostest_shim import VyOSUnitTestSHIM from distutils.version import LooseVersion from platform import release as kernel_version from subprocess import Popen, PIPE +from pwd import getpwall from vyos.configsession import ConfigSessionError from vyos.util import cmd @@ -52,6 +53,11 @@ class TestSystemLogin(VyOSUnitTestSHIM.TestCase): self.cli_commit() + # After deletion, a user is not allowed to remain in /etc/passwd + usernames = [x[0] for x in getpwall()] + for user in users: + self.assertNotIn(user, usernames) + def test_add_linux_system_user(self): # We are not allowed to re-use a username already taken by the Linux # base system |