diff --git a/roles/identity/molecule/default/verify.yml b/roles/identity/molecule/default/verify.yml deleted file mode 100644 index 7201fc912..000000000 --- a/roles/identity/molecule/default/verify.yml +++ /dev/null @@ -1,34 +0,0 @@ -- name: Verify - hosts: all - gather_facts: false - tasks: - - - name: Stat the tmp folder for identity - ansible.builtin.stat: - path: "/usr/share/identity/tmp" - register: tmp_path_stat - - - name: Assert that tmp folder is setup correctly - ansible.builtin.assert: - that: - - tmp_path_stat.stat.exists - - tmp_path_stat.stat.isdir - - tmp_path_stat.stat.mode == '0777' - - tmp_path_stat.stat.uid == 0 - - tmp_path_stat.stat.gid == 0 - - - name: Check if port 9200/tcp is listening - ansible.builtin.wait_for: - port: 9200 - timeout: 30 - connect_timeout: 1 - msg: "Timeout waiting for 9200/tcp to respond" - - - name: Populate service facts - ansible.builtin.service_facts: - - - name: Identity service is up and running - ansible.builtin.assert: - that: - - ansible_facts.services['identity.service'] is defined - - ansible_facts.services['identity.service'].state == 'running' diff --git a/roles/identity/tests/inventory b/roles/identity/tests/inventory deleted file mode 100644 index 2fbb50c4a..000000000 --- a/roles/identity/tests/inventory +++ /dev/null @@ -1 +0,0 @@ -localhost diff --git a/roles/identity/tests/test.yml b/roles/identity/tests/test.yml deleted file mode 100644 index 61fb0ce17..000000000 --- a/roles/identity/tests/test.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -- hosts: localhost - remote_user: root - roles: - - identity