From 144d8b800569264dc0932de11701f3080164f426 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 10 Oct 2020 11:25:50 +0300 Subject: test(unix_users): set encrypted password for users --- roles/unix_users/subplot.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'roles/unix_users/subplot.py') diff --git a/roles/unix_users/subplot.py b/roles/unix_users/subplot.py index dc4e9f6..0735049 100644 --- a/roles/unix_users/subplot.py +++ b/roles/unix_users/subplot.py @@ -26,3 +26,14 @@ def host_user_has_shell(ctx, username=None, shell=None): if line.startswith(f"{username}:"): logging.debug(f"host_user_has_shell: line={line!r}") assert line.endswith(f":{shell}") + + +def host_user_has_password(ctx, username=None, password=None): + assert_eq = globals()["assert_eq"] + qemu = ctx["qemu"] + output, exit = qemu.ssh(["sudo", "grep", f"^{username}:"]) + assert_eq(exit, 0) + for line in output.decode("UTF8").splitlines(): + if line.startswith(f"{username}:"): + parts = line.split(":") + assert_eq(parts[1], password) -- cgit v1.2.1