[MOLECULE] Add testinfra tests for dns role
Issue-ID: OOM-2889
Signed-off-by: Ostap Batih <o.batih@samsung.com>
Change-Id: I9c653bdaa8cfcd1a8e187cbf899c060a6299457c
diff --git a/ansible/roles/dns/molecule/default/molecule.yml b/ansible/roles/dns/molecule/default/molecule.yml
index c3ed309..131c887 100644
--- a/ansible/roles/dns/molecule/default/molecule.yml
+++ b/ansible/roles/dns/molecule/default/molecule.yml
@@ -27,9 +27,5 @@
host_vars:
infrastructure-server:
cluster_ip: 127.0.0.1
- group_vars:
- all:
- app_name: onap
- app_data_path: "/opt/{{ app_name }}"
verifier:
name: testinfra
diff --git a/ansible/roles/dns/molecule/default/tests/test_default.py b/ansible/roles/dns/molecule/default/tests/test_default.py
new file mode 100644
index 0000000..76700d4
--- /dev/null
+++ b/ansible/roles/dns/molecule/default/tests/test_default.py
@@ -0,0 +1,12 @@
+def test_dir(host):
+ f = host.file('/cfg')
+ assert f.exists
+ assert f.is_directory
+
+
+def test_hostname_file(host):
+ assert host.file('/cfg/simulated_hosts').exists
+
+
+def test_dns_container(host):
+ assert host.docker('dns-server').is_running
diff --git a/ansible/roles/dns/molecule/ubuntu/molecule.yml b/ansible/roles/dns/molecule/ubuntu/molecule.yml
index 191da95..0a9fbad 100644
--- a/ansible/roles/dns/molecule/ubuntu/molecule.yml
+++ b/ansible/roles/dns/molecule/ubuntu/molecule.yml
@@ -31,9 +31,5 @@
host_vars:
infrastructure-server:
cluster_ip: 127.0.0.1
- group_vars:
- all:
- app_name: onap
- app_data_path: "/opt/{{ app_name }}"
verifier:
name: testinfra