summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-test-cloud-httptester
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/ansible-test-cloud-httptester')
-rw-r--r--test/integration/targets/ansible-test-cloud-httptester/aliases3
-rw-r--r--test/integration/targets/ansible-test-cloud-httptester/tasks/main.yml15
2 files changed, 18 insertions, 0 deletions
diff --git a/test/integration/targets/ansible-test-cloud-httptester/aliases b/test/integration/targets/ansible-test-cloud-httptester/aliases
new file mode 100644
index 0000000..db811dd
--- /dev/null
+++ b/test/integration/targets/ansible-test-cloud-httptester/aliases
@@ -0,0 +1,3 @@
+needs/httptester # using legacy alias for testing purposes
+shippable/posix/group3
+context/controller
diff --git a/test/integration/targets/ansible-test-cloud-httptester/tasks/main.yml b/test/integration/targets/ansible-test-cloud-httptester/tasks/main.yml
new file mode 100644
index 0000000..16b632f
--- /dev/null
+++ b/test/integration/targets/ansible-test-cloud-httptester/tasks/main.yml
@@ -0,0 +1,15 @@
+- name: Verify HTTPTESTER environment variable
+ assert:
+ that:
+ - "lookup('env', 'HTTPTESTER') == '1'"
+
+- name: Verify endpoints respond
+ uri:
+ url: "{{ item }}"
+ validate_certs: no
+ with_items:
+ - http://ansible.http.tests/
+ - https://ansible.http.tests/
+ - https://sni1.ansible.http.tests/
+ - https://fail.ansible.http.tests/
+ - https://self-signed.ansible.http.tests/