summaryrefslogtreecommitdiffstats
path: root/ansible/test/play-infrastructure/molecule/default/tests/test_nodes.py
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/test/play-infrastructure/molecule/default/tests/test_nodes.py')
-rw-r--r--ansible/test/play-infrastructure/molecule/default/tests/test_nodes.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/ansible/test/play-infrastructure/molecule/default/tests/test_nodes.py b/ansible/test/play-infrastructure/molecule/default/tests/test_nodes.py
new file mode 100644
index 00000000..c0ce64f2
--- /dev/null
+++ b/ansible/test/play-infrastructure/molecule/default/tests/test_nodes.py
@@ -0,0 +1,11 @@
+import os
+
+import testinfra.utils.ansible_runner
+
+testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
+ os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('kubernetes')
+
+
+def test_registry_access(host):
+ assert host.run(
+ 'docker login -u admin -p admin123 nexus3.onap.org:10001').rc == 0