summaryrefslogtreecommitdiff
path: root/test/integration/roles/test_ec2_elb_lb/tasks/main.yml
blob: 4d48c9d3935f70f7a1b6cb7ae288fc26a7309e75 (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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
---
# __Test Info__
# Create a self signed cert and upload it to AWS
# http://www.akadia.com/services/ssh_test_certificate.html
# http://docs.aws.amazon.com/ElasticLoadBalancing/latest/DeveloperGuide/ssl-server-cert.html

# __Test Outline__
#
# __ec2_elb_lb__
# create test elb with listeners and certificate
# change AZ's
# change listeners
# remove listeners
# remove elb

# __ec2-common__
# test environment variable EC2_REGION
# test with no parameters
# test with only instance_id
# test invalid region parameter
# test valid region parameter
# test invalid ec2_url parameter
# test valid ec2_url parameter
# test credentials from environment
# test credential parameters

# ============================================================
# create test elb with listeners, certificate, and health check

- name: Create ELB
  ec2_elb_lb:
    name: "{{ tag_prefix }}"
    region: "{{ ec2_region }}"
    ec2_access_key: "{{ ec2_access_key }}"
    ec2_secret_key: "{{ ec2_secret_key }}"
    state: present
    zones:
      - us-east-1c
      - us-east-1d
    listeners:
      - protocol: http
        load_balancer_port: 80
        instance_port: 80
      - protocol: http
        load_balancer_port: 8080
        instance_port: 8080
    health_check:
        ping_protocol: http
        ping_port: 80
        ping_path: "/index.html"
        response_timeout: 5
        interval: 30
        unhealthy_threshold: 2
        healthy_threshold: 10
  register: info

- assert:
    that:
      - 'info.changed'
      - '"failed" not in info'
      - 'info.elb.status == "created"'
      - '"us-east-1c" in info.elb.zones'
      - '"us-east-1d" in info.elb.zones'
      - 'info.elb.health_check.healthy_threshold == 10'
      - 'info.elb.health_check.interval == 30'
      - 'info.elb.health_check.target == "HTTP:80/index.html"'
      - 'info.elb.health_check.timeout == 5'
      - 'info.elb.health_check.unhealthy_threshold == 2'
      - '[80, 80, "HTTP", "HTTP"] in info.elb.listeners'
      - '[8080, 8080, "HTTP", "HTTP"] in info.elb.listeners'

# ============================================================

# check ports, would be cool, but we are at the mercy of AWS
# to start things in a timely manner

#- name: check to make sure 80 is listening
#  wait_for: host={{ info.elb.dns_name }} port=80 timeout=600
#  register: result

#- name: assert can connect to port#
#  assert: 'result.state == "started"'

#- name: check to make sure 443 is listening
#  wait_for: host={{ info.elb.dns_name }} port=443 timeout=600
#  register: result

#- name: assert can connect to port#
#  assert: 'result.state == "started"'

# ============================================================

# Change AZ's

- name: Change AZ's
  ec2_elb_lb:
    name: "{{ tag_prefix }}"
    region: "{{ ec2_region }}"
    ec2_access_key: "{{ ec2_access_key }}"
    ec2_secret_key: "{{ ec2_secret_key }}"
    state: present
    zones:
      - us-east-1b
    listeners:
      - protocol: http
        load_balancer_port: 80
        instance_port: 80
    purge_zones: yes
    health_check:
        ping_protocol: http
        ping_port: 80
        ping_path: "/index.html"
        response_timeout: 5
        interval: 30
        unhealthy_threshold: 2
        healthy_threshold: 10
  register: info



- assert:
    that:
      - '"failed" not in info'
      - 'info.elb.status == "ok"'
      - 'info.changed'
      - 'info.elb.zones[0] == "us-east-1b"'

# ============================================================

# Update AZ's

- name: Update AZ's
  ec2_elb_lb:
    name: "{{ tag_prefix }}"
    region: "{{ ec2_region }}"
    ec2_access_key: "{{ ec2_access_key }}"
    ec2_secret_key: "{{ ec2_secret_key }}"
    state: present
    zones:
      - us-east-1b
      - us-east-1c
      - us-east-1d
    listeners:
      - protocol: http
        load_balancer_port: 80
        instance_port: 80
    purge_zones: yes
  register: info

- assert:
    that:
      - '"failed" not in info'
      - 'info.changed'
      - 'info.elb.status == "ok"'
      - '"us-east-1b" in info.elb.zones'
      - '"us-east-1c" in info.elb.zones'
      - '"us-east-1d" in info.elb.zones'


# ============================================================

# Purge Listeners

- name: Purge Listeners
  ec2_elb_lb:
    name: "{{ tag_prefix }}"
    region: "{{ ec2_region }}"
    ec2_access_key: "{{ ec2_access_key }}"
    ec2_secret_key: "{{ ec2_secret_key }}"
    state: present
    zones:
      - us-east-1b
      - us-east-1c
      - us-east-1d
    listeners:
      - protocol: http
        load_balancer_port: 80
        instance_port: 81
    purge_listeners: yes
  register: info

- assert:
    that:
      - '"failed" not in info'
      - 'info.elb.status == "ok"'
      - 'info.changed'
      - '[80, 81, "HTTP", "HTTP"] in info.elb.listeners'
      - 'info.elb.listeners|length == 1'



# ============================================================

# add Listeners

- name: Add Listeners
  ec2_elb_lb:
    name: "{{ tag_prefix }}"
    region: "{{ ec2_region }}"
    ec2_access_key: "{{ ec2_access_key }}"
    ec2_secret_key: "{{ ec2_secret_key }}"
    state: present
    zones:
      - us-east-1b
      - us-east-1c
      - us-east-1d
    listeners:
      - protocol: http
        load_balancer_port: 8081
        instance_port: 8081
    purge_listeners: no
  register: info

- assert:
    that:
      - '"failed" not in info'
      - 'info.elb.status == "ok"'
      - 'info.changed'
      - '[80, 81, "HTTP", "HTTP"] in info.elb.listeners'
      - '[8081, 8081, "HTTP", "HTTP"] in info.elb.listeners'
      - 'info.elb.listeners|length == 2'


# ============================================================

- name: test with no parameters
  ec2_elb_lb:
  register: result
  ignore_errors: true

- name: assert failure when called with no parameters
  assert:
    that:
       - 'result.failed'
       - 'result.msg == "missing required arguments: name,state"'



# ============================================================
- name: test with only name
  ec2_elb_lb:
    name="{{ tag_prefix }}"
  register: result
  ignore_errors: true

- name: assert failure when called with only name
  assert:
    that:
       - 'result.failed'
       - 'result.msg == "missing required arguments: state"'


# ============================================================
- name: test invalid region parameter
  ec2_elb_lb:
    name="{{ tag_prefix }}"
    region='asdf querty 1234'
    state=present
  register: result
  ignore_errors: true

- name: assert invalid region parameter
  assert:
    that:
       - 'result.failed'
       - 'result.msg.startswith("value of region must be one of:")'


# ============================================================
- name: test valid region parameter
  ec2_elb_lb:
    name: "{{ tag_prefix }}"
    region: "{{ ec2_region }}"
    state: present
    zones:
      - us-east-1a
      - us-east-1d
    listeners:
      - protocol: http
        load_balancer_port: 80
        instance_port: 80

  register: result
  ignore_errors: true

- name: assert valid region parameter
  assert:
    that:
       - 'result.failed'
       - 'result.msg.startswith("No handler was ready to authenticate.")'


# ============================================================

- name: test invalid ec2_url parameter
  ec2_elb_lb:
    name: "{{ tag_prefix }}"
    region: "{{ ec2_region }}"
    state: present
    zones:
      - us-east-1a
      - us-east-1d
    listeners:
      - protocol: http
        load_balancer_port: 80
        instance_port: 80
  environment:
    EC2_URL: bogus.example.com
  register: result
  ignore_errors: true

- name: assert invalid ec2_url parameter
  assert:
    that:
       - 'result.failed'
       - 'result.msg.startswith("No handler was ready to authenticate.")'


# ============================================================
- name: test valid ec2_url parameter
  ec2_elb_lb:
    name: "{{ tag_prefix }}"
    region: "{{ ec2_region }}"
    state: present
    zones:
      - us-east-1a
      - us-east-1d
    listeners:
      - protocol: http
        load_balancer_port: 80
        instance_port: 80
  environment:
    EC2_URL: '{{ec2_url}}'
  register: result
  ignore_errors: true

- name: assert valid ec2_url parameter
  assert:
    that:
       - 'result.failed'
       - 'result.msg.startswith("No handler was ready to authenticate.")'


# ============================================================
- name: test credentials from environment
  ec2_elb_lb:
    name: "{{ tag_prefix }}"
    region: "{{ ec2_region }}"
    state: present
    zones:
      - us-east-1a
      - us-east-1d
    listeners:
      - protocol: http
        load_balancer_port: 80
        instance_port: 80
  environment:
    EC2_ACCESS_KEY: bogus_access_key
    EC2_SECRET_KEY: bogus_secret_key
  register: result
  ignore_errors: true

- name: assert credentials from environment
  assert:
    that:
       - 'result.failed'
       - '"InvalidClientTokenId" in result.msg'


# ============================================================
- name: test credential parameters
  ec2_elb_lb:
    name: "{{ tag_prefix }}"
    region: "{{ ec2_region }}"
    state: present
    zones:
      - us-east-1a
      - us-east-1d
    listeners:
      - protocol: http
        load_balancer_port: 80
        instance_port: 80
  register: result
  ignore_errors: true

- name: assert credential parameters
  assert:
    that:
       - 'result.failed'
       - '"No handler was ready to authenticate. 1 handlers were checked." in result.msg'

# ============================================================
- name: remove the test load balancer completely
  ec2_elb_lb:
    name: "{{ tag_prefix }}"
    region: "{{ ec2_region }}"
    state: absent
    ec2_access_key: "{{ ec2_access_key }}"
    ec2_secret_key: "{{ ec2_secret_key }}"
  register: result

- name: assert the load balancer was removed
  assert:
    that:
       - 'result.changed'
       - 'result.elb.name == "{{tag_prefix}}"'
       - 'result.elb.status == "deleted"'