summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/src/test/integration/oc_route.yml
blob: b9d635eaa4560f11a98a5a740268e1470e8be417 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/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

  - name: delete route
    oc_route:
      name: test
      namespace: default
      state: absent
    register: routeout

  - name: create route
    oc_route:
      name: test
      namespace: default
      tls_termination: passthrough
      service_name: test
      host: test.example
      port: 8443
    register: routeout

  - assert:
      that:
      - "routeout.changed == True"
      - "routeout.results['results'][0]['spec']['port']['targetPort'] == 8443"
      msg: Route create not idempotent

  - name: create route
    oc_route:
      name: test
      namespace: default
      tls_termination: passthrough
      service_name: test
      host: test.example
      port: 8444
    register: routeout
  - debug: var=routeout

  - assert:
      that:
      - "routeout.changed == True"
      - "routeout.results.results[0]['spec']['port']['targetPort'] == 8444"
      msg: Route update not idempotent