summaryrefslogtreecommitdiffstats
path: root/ansible_collections/containers/podman/tests/unit/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'ansible_collections/containers/podman/tests/unit/plugins')
-rw-r--r--ansible_collections/containers/podman/tests/unit/plugins/modules/test_container_lib.py72
1 files changed, 70 insertions, 2 deletions
diff --git a/ansible_collections/containers/podman/tests/unit/plugins/modules/test_container_lib.py b/ansible_collections/containers/podman/tests/unit/plugins/modules/test_container_lib.py
index 20dd4e66c..ea336419a 100644
--- a/ansible_collections/containers/podman/tests/unit/plugins/modules/test_container_lib.py
+++ b/ansible_collections/containers/podman/tests/unit/plugins/modules/test_container_lib.py
@@ -66,7 +66,15 @@ def test_container_add_params(test_input, expected):
[
None, # module
{"conmon_pidfile": "bbb"}, # module params
- {"conmonpidfile": "ccc"}, # container info
+ {"conmonpidfile": "ccc",
+ "config": {
+ "createcommand": [
+ "podman",
+ "create",
+ "--conmon-pidfile=ccc",
+ "testcont",
+ ]}
+ }, # container info
{}, # image info
"4.1.1", # podman version
],
@@ -76,7 +84,67 @@ def test_container_add_params(test_input, expected):
[
None, # module
{"conmon_pidfile": None}, # module params
- {"conmonpidfile": "ccc"}, # container info
+ {"conmonpidfile": "ccc",
+ "config": {
+ "createcommand": [
+ "podman",
+ "create",
+ "--conmon-pidfile=ccc",
+ "testcont",
+ ]}
+ }, # container info
+ {}, # image info
+ "4.1.1", # podman version
+ ],
+ True,
+ ),
+ (
+ [
+ None, # module
+ {"conmon_pidfile": None}, # module params
+ {"conmonpidfile": None,
+ "config": {
+ "createcommand": [
+ "podman",
+ "create",
+ "testcont",
+ ]}
+ }, # container info
+ {}, # image info
+ "4.1.1", # podman version
+ ],
+ False,
+ ),
+ (
+ [
+ None, # module
+ {"conmon_pidfile": 'aaa'}, # module params
+ {"conmonpidfile": None,
+ "config": {
+ "createcommand": [
+ "podman",
+ "create",
+ "testcont",
+ ]}
+ }, # container info
+ {}, # image info
+ "4.1.1", # podman version
+ ],
+ True,
+ ),
+ (
+ [
+ None, # module
+ {"conmon_pidfile": 'aaa'}, # module params
+ {"conmonpidfile": 'aaa',
+ "config": {
+ "createcommand": [
+ "podman",
+ "create",
+ "--conmon-pidfile=aaa",
+ "testcont",
+ ]}
+ }, # container info
{}, # image info
"4.1.1", # podman version
],