summaryrefslogtreecommitdiffstats
path: root/ansible
diff options
context:
space:
mode:
authorOstap Batih <o.batih@samsung.com>2021-12-08 09:50:52 +0000
committerOstap Batih <o.batih@samsung.com>2021-12-10 09:21:45 +0000
commit249679a23728dd9498d5a1a325b3a4f19398545d (patch)
tree99ad6e685de15b17569569622149a7e947b6410a /ansible
parent54415cecda750076dae161dfb3fc0a0cdf211ae9 (diff)
[MOLECULE] Add testinfra tests for cert-manager role
Issue-ID: OOM-2889 Change-Id: Ida4349ea463b3da182502ccc10927c2f22d684b9 Signed-off-by: Ostap Batih <o.batih@samsung.com>
Diffstat (limited to 'ansible')
-rw-r--r--ansible/roles/cert-manager/molecule/default/tests/test_default.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/ansible/roles/cert-manager/molecule/default/tests/test_default.py b/ansible/roles/cert-manager/molecule/default/tests/test_default.py
new file mode 100644
index 00000000..2bac6028
--- /dev/null
+++ b/ansible/roles/cert-manager/molecule/default/tests/test_default.py
@@ -0,0 +1,23 @@
+def test_helm_value_file(host):
+ f = host.file('/opt/onap/cert_manager.yaml')
+ assert f.exists
+ assert f.user == 'root'
+ assert f.group == 'root'
+ assert f.content_string.strip() == "installCRDs: true"
+
+
+def test_cmctl(host):
+ f = host.file('/usr/local/bin/cmctl')
+ assert f.exists
+ assert f.user == 'root'
+ assert f.group == 'root'
+ assert host.run('cmctl').rc == 0
+
+
+def test_bash_completion(host):
+ assert host.package("bash-completion").is_installed
+
+
+def test_bash_completion_cmctl(host):
+ f = host.file('/etc/bash_completion.d/cmctl')
+ assert f.exists