]> git.ipfire.org Git - thirdparty/shadow.git/commitdiff
tests: basic group creation
authorIker Pedrosa <ipedrosa@redhat.com>
Tue, 19 Nov 2024 15:18:45 +0000 (16:18 +0100)
committerSerge Hallyn <serge@hallyn.com>
Sat, 11 Jan 2025 02:21:07 +0000 (20:21 -0600)
This is the transformation to Python of the test located in
`tests/grouptools/groupadd/02_groupadd_add_group_GID_MIN/groupadd.test`,
which checks that `groupadd` is able to create a new group.

Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
tests/system/tests/test_groupadd.py [new file with mode: 0644]

diff --git a/tests/system/tests/test_groupadd.py b/tests/system/tests/test_groupadd.py
new file mode 100644 (file)
index 0000000..2573b0d
--- /dev/null
@@ -0,0 +1,30 @@
+"""
+Test groupadd
+"""
+
+from __future__ import annotations
+
+import pytest
+
+from framework.roles.shadow import Shadow
+from framework.topology import KnownTopology
+
+
+@pytest.mark.topology(KnownTopology.Shadow)
+def test_groupadd__add_group(shadow: Shadow):
+    """
+    :title: Basic group creation
+    :setup:
+        1. Create group
+    :steps:
+        1. Group exists and GID is 1000
+    :expectedresults:
+        1. Group is found and GID matches
+    :customerscenario: False
+    """
+    shadow.groupadd("tgroup")
+
+    result = shadow.tools.getent.group("tgroup")
+    assert result is not None, "Group should be found"
+    assert result.name == "tgroup", "Incorrect groupname"
+    assert result.gid == 1000, "Incorrect GID"