summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/src/test/integration/oc_route.yml
blob: 620d5d5e7fd205273e84f2a82216bcaed537041f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
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