summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/src/test/integration/oc_route.yml
diff options
context:
space:
mode:
authorKenny Woodson <kwoodson@redhat.com>2017-01-20 14:02:56 -0500
committerGitHub <noreply@github.com>2017-01-20 14:02:56 -0500
commit30b1000c0f8a7347937eb9b02554e5126864a2b5 (patch)
treedb8180b10e442e35804c1184bbc800169528f10a /roles/lib_openshift/src/test/integration/oc_route.yml
parent746ddd2d48c5fb738ccd80a16ca0a5a66676b6c2 (diff)
parent6218b9938b523c545a7610a3c77d6a19aea81e1a (diff)
downloadopenshift-30b1000c0f8a7347937eb9b02554e5126864a2b5.tar.gz
openshift-30b1000c0f8a7347937eb9b02554e5126864a2b5.tar.bz2
openshift-30b1000c0f8a7347937eb9b02554e5126864a2b5.tar.xz
openshift-30b1000c0f8a7347937eb9b02554e5126864a2b5.zip
Merge pull request #3130 from kwoodson/lib_openshift_version
Adding oc_version to lib_openshift.
Diffstat (limited to 'roles/lib_openshift/src/test/integration/oc_route.yml')
-rwxr-xr-xroles/lib_openshift/src/test/integration/oc_route.yml77
1 files changed, 77 insertions, 0 deletions
diff --git a/roles/lib_openshift/src/test/integration/oc_route.yml b/roles/lib_openshift/src/test/integration/oc_route.yml
new file mode 100755
index 000000000..620d5d5e7
--- /dev/null
+++ b/roles/lib_openshift/src/test/integration/oc_route.yml
@@ -0,0 +1,77 @@
+#!/usr/bin/ansible-playbook --module-path=../../../library/
+# ./oc_route.yml -M ../../../library -e "cli_master_test=$OPENSHIFT_MASTER
+---
+- hosts: "{{ cli_master_test }}"
+ gather_facts: no
+ user: root
+ tasks:
+ - name: create route
+ oc_route:
+ name: test
+ namespace: default
+ tls_termination: edge
+ cert_content: testing cert
+ cacert_content: testing cacert
+ key_content: key content
+ service_name: test
+ host: test.example
+ register: routeout
+ - debug: var=routeout
+
+ - assert:
+ that: "routeout.results.results[0]['metadata']['name'] == 'test'"
+ msg: route create failed
+
+ - name: get route
+ oc_route:
+ state: list
+ name: test
+ namespace: default
+ register: routeout
+ - debug: var=routeout
+
+ - assert:
+ that: "routeout.results[0]['metadata']['name'] == 'test'"
+ msg: get route failed
+
+ - name: delete route
+ oc_route:
+ state: absent
+ name: test
+ namespace: default
+ register: routeout
+ - debug: var=routeout
+
+ - assert:
+ that: "routeout.results.returncode == 0"
+ msg: delete route failed
+
+ - name: create route
+ oc_route:
+ name: test
+ namespace: default
+ tls_termination: edge
+ cert_content: testing cert
+ cacert_content: testing cacert
+ key_content: testing key
+ service_name: test
+ host: test.example
+ register: routeout
+ - debug: var=routeout
+
+ - name: create route noop
+ oc_route:
+ name: test
+ namespace: default
+ tls_termination: edge
+ cert_content: testing cert
+ cacert_content: testing cacert
+ key_content: testing key
+ service_name: test
+ host: test.example
+ register: routeout
+ - debug: var=routeout
+
+ - assert:
+ that: "routeout.changed == False"
+ msg: Route create not idempotent