summaryrefslogtreecommitdiff
path: root/test/integration/targets/win_package/tasks/network_tests.yml
blob: 4f183a44d5b2e3dde7d3dea91155f50738057d3d (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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
---
- name: install network msi (check mode)
  win_package:
    path: '{{test_win_package_network_path}}\good.msi'
    product_id: '{{test_win_package_good_id}}'
    state: present
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: install_network_msi_check
  check_mode: yes

- name: get result of install network msi (check mode)
  win_reg_stat:
    path: HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{{test_win_package_good_id}}
  register: install_network_msi_actual_check

- name: assert install network msi (check mode)
  assert:
    that:
    - install_network_msi_check is changed
    - install_network_msi_check.reboot_required == False
    - install_network_msi_actual_check.exists == False

- name: install network msi
  win_package:
    path: '{{test_win_package_network_path}}\good.msi'
    product_id: '{{test_win_package_good_id}}'
    state: present
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: install_network_msi

- name: get result of install network msi
  win_reg_stat:
    path: HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{{test_win_package_good_id}}
  register: install_network_msi_actual

- name: assert install network msi
  assert:
    that:
    - install_network_msi is changed
    - install_network_msi.reboot_required == False
    - install_network_msi.rc == 0
    - install_network_msi_actual.exists == True

- name: install network msi (idempotent)
  win_package:
    path: '{{test_win_package_network_path}}\good.msi'
    product_id: '{{test_win_package_good_id}}'
    state: present
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: install_network_msi_idempotent

- name: assert install network msi (idempotent)
  assert:
    that:
    - install_network_msi_idempotent is not changed

- name: uninstall network msi with path (check mode)
  win_package:
    path: '{{test_win_package_network_path}}\good.msi'
    product_id: '{{test_win_package_good_id}}'
    state: absent
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: uninstall_path_network_msi_check
  check_mode: yes

- name: get result of uninstall network msi with path (check mode)
  win_reg_stat:
    path: HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{{test_win_package_good_id}}
  register: uninstall_path_network_msi_actual_check

- name: assert uninstall network msi with path (check mode)
  assert:
    that:
    - uninstall_path_network_msi_check is changed
    - uninstall_path_network_msi_check.reboot_required == False
    - uninstall_path_network_msi_actual_check.exists == True

- name: uninstall network msi with path
  win_package:
    path: '{{test_win_package_network_path}}\good.msi'
    product_id: '{{test_win_package_good_id}}'
    state: absent
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: uninstall_path_network_msi

- name: get result of uninstall network msi with path
  win_reg_stat:
    path: HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{{test_win_package_good_id}}
  register: uninstall_path_network_msi_actual

- name: assert uninstall network msi with path
  assert:
    that:
    - uninstall_path_network_msi is changed
    - uninstall_path_network_msi.reboot_required == False
    - uninstall_path_network_msi.rc == 0
    - uninstall_path_network_msi_actual.exists == False

- name: uninstall network msi with path (idempotent)
  win_package:
    path: '{{test_win_package_network_path}}\good.msi'
    product_id: '{{test_win_package_good_id}}'
    state: absent
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: uninstall_path_network_msi_idempotent

- name: assert uninstall network msi with path (idempotent)
  assert:
    that:
    - uninstall_path_network_msi_idempotent is not changed

- name: install network reboot msi (check mode)
  win_package:
    path: '{{test_win_package_network_path}}\reboot.msi'
    product_id: '{{test_win_package_reboot_id}}'
    state: present
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: install_network_reboot_msi_check
  check_mode: yes

- name: get result of install network reboot msi (check mode)
  win_reg_stat:
    path: HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{{test_win_package_reboot_id}}
  register: install_network_reboot_msi_actual_check

- name: assert install network reboot msi (check mode)
  assert:
    that:
    - install_network_reboot_msi_check is changed
    - install_network_reboot_msi_check.reboot_required == False
    - install_network_reboot_msi_actual_check.exists == False

- name: install network reboot msi
  win_package:
    path: '{{test_win_package_network_path}}\reboot.msi'
    product_id: '{{test_win_package_reboot_id}}'
    state: present
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: install_network_reboot_msi

- name: get result of install network reboot msi
  win_reg_stat:
    path: HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{{test_win_package_reboot_id}}
  register: install_network_reboot_msi_actual

- name: assert install network reboot msi
  assert:
    that:
    - install_network_reboot_msi is changed
    - install_network_reboot_msi.reboot_required == True
    - install_network_reboot_msi.rc == 3010
    - install_network_reboot_msi_actual.exists == True

- name: install network reboot msi (idempotent)
  win_package:
    path: '{{test_win_package_network_path}}\reboot.msi'
    product_id: '{{test_win_package_reboot_id}}'
    state: present
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: install_network_reboot_msi_idempotent

- name: assert install network reboot msi (idempotent)
  assert:
    that:
    - install_network_reboot_msi_idempotent is not changed

- name: uninstall network msi with product_id (check mode)
  win_package:
    product_id: '{{test_win_package_reboot_id}}'
    state: absent
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: uninstall_id_network_msi_check
  check_mode: yes

- name: get result of uninstall network msi with product_id (check mode)
  win_reg_stat:
    path: HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{{test_win_package_reboot_id}}
  register: uninstall_id_network_msi_actual_check

- name: assert uninstall network msi with product_id (check mode)
  assert:
    that:
    - uninstall_id_network_msi_check is changed
    - uninstall_id_network_msi_check.reboot_required == False
    - uninstall_id_network_msi_actual_check.exists == True

- name: uninstall network msi with product_id
  win_package:
    product_id: '{{test_win_package_reboot_id}}'
    state: absent
  register: uninstall_id_network_msi

- name: get result of uninstall network msi with product_id
  win_reg_stat:
    path: HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{{test_win_package_reboot_id}}
  register: uninstall_id_network_msi_actual

- name: assert uninstall network msi with product_id
  assert:
    that:
    - uninstall_id_network_msi is changed
    - uninstall_id_network_msi.reboot_required == True
    - uninstall_id_network_msi.rc == 3010
    - uninstall_id_network_msi_actual.exists == False

- name: uninstall network msi with product_id (idempotent)
  win_package:
    product_id: '{{test_win_package_reboot_id}}'
    state: absent
  register: uninstall_id_network_msi_idempotent

- name: assert uninstall network msi with product_id (idempotent)
  assert:
    that:
    - uninstall_id_network_msi_idempotent is not changed

- name: ensure the install folder is cleaned in case uninstall didn't work
  win_file:
    path: '%ProgramFiles(x86)%\Bovine University'
    state: absent

- name: install network msi with arguments (check mode)
  win_package:
    path: '{{test_win_package_network_path}}\good.msi'
    product_id: '{{test_win_package_good_id}}'
    state: present
    arguments: ADDLOCAL=Cow
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: install_network_msi_argument_check
  check_mode: yes

- name: get result of moo file after install network msi with arguments (check mode)
  win_stat:
    path: '%ProgramFiles(x86)%\Bovine University\moo.exe'
  register: install_network_msi_argument_moo_check

- name: get result of cow file after install network msi with arguments (check mode)
  win_stat:
    path: '%ProgramFiles(x86)%\Bovine University\cow.exe'
  register: install_network_msi_argument_cow_check

- name: assert install network msi with arguments (check mode)
  assert:
    that:
    - install_network_msi_argument_check is changed
    - install_network_msi_argument_check.reboot_required == False
    - install_network_msi_argument_moo_check.stat.exists == False
    - install_network_msi_argument_cow_check.stat.exists == False

- name: install network msi with arguments
  win_package:
    path: '{{test_win_package_network_path}}\good.msi'
    product_id: '{{test_win_package_good_id}}'
    state: present
    arguments: ADDLOCAL=Cow
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: install_network_msi_argument

- name: get result of moo file after install network msi with arguments
  win_stat:
    path: '%ProgramFiles(x86)%\Bovine University\moo.exe'
  register: install_network_msi_argument_moo

- name: get result of cow file after install network msi with arguments
  win_stat:
    path: '%ProgramFiles(x86)%\Bovine University\cow.exe'
  register: install_network_msi_argument_cow

- name: assert install network msi with arguments
  assert:
    that:
    - install_network_msi_argument is changed
    - install_network_msi_argument.reboot_required == False
    - install_network_msi_argument.rc == 0
    - install_network_msi_argument_moo.stat.exists == False
    - install_network_msi_argument_cow.stat.exists == True

- name: install network msi with arguments (idempotent)
  win_package:
    path: '{{test_win_package_network_path}}\good.msi'
    product_id: '{{test_win_package_good_id}}'
    state: present
    arguments: ADDLOCAL=Cow
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: install_network_msi_argument_again

- name: assert install network msi with arguments (idempotent)
  assert:
    that:
    - install_network_msi_argument_again is not changed

- name: uninstall msi after test
  win_package:
    product_id: '{{test_win_package_good_id}}'
    state: absent

- name: install network exe (check mode)
  win_package:
    path: '{{test_win_package_network_path}}\7z.exe'
    product_id: '{{test_win_package_exe_id}}'
    arguments: /S
    state: present
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: install_network_exe_check
  check_mode: yes

- name: get result of install network exe (check mode)
  win_reg_stat:
    path: HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{{test_win_package_exe_id}}
  register: install_network_exe_actual_check

- name: assert install network exe (check mode)
  assert:
    that:
    - install_network_exe_check is changed
    - install_network_exe_check.reboot_required == False
    - install_network_exe_actual_check.exists == False

- name: install network exe
  win_package:
    path: '{{test_win_package_network_path}}\7z.exe'
    product_id: '{{test_win_package_exe_id}}'
    arguments: /S
    state: present
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: install_network_exe

- name: get result of install network exe
  win_reg_stat:
    path: HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{{test_win_package_exe_id}}
  register: install_network_exe_actual

- name: assert install network exe
  assert:
    that:
    - install_network_exe is changed
    - install_network_exe.reboot_required == False
    - install_network_exe.rc == 0
    - install_network_exe_actual.exists == True

- name: install network exe (idempotent)
  win_package:
    path: '{{test_win_package_network_path}}\7z.exe'
    product_id: '{{test_win_package_exe_id}}'
    arguments: /S
    state: present
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: install_network_exe_idempotent

- name: assert install network exe (idempotent)
  assert:
    that:
    - install_network_exe_idempotent is not changed

- name: uninstall network exe (check mode)
  win_package:
    product_id: '{{test_win_package_exe_id}}'
    arguments: /S
    state: absent
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: uninstall_network_exe_check
  check_mode: yes

- name: get result of uninstall network exe (check mode)
  win_reg_stat:
    path: HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{{test_win_package_exe_id}}
  register: uninstall_network_exe_actual_check

- name: assert uninstall network exe (check mode)
  assert:
    that:
    - uninstall_network_exe_check is changed
    - uninstall_network_exe_check.reboot_required == False
    - uninstall_network_exe_actual_check.exists == True

- name: uninstall network exe
  win_package:
    product_id: '{{test_win_package_exe_id}}'
    arguments: /S
    state: absent
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: uninstall_network_exe

- name: get result of uninstall network exe
  win_reg_stat:
    path: HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{{test_win_package_exe_id}}
  register: uninstall_network_exe_actual

- name: assert uninstall network exe
  assert:
    that:
    - uninstall_network_exe is changed
    - uninstall_network_exe.reboot_required == False
    - uninstall_network_exe.rc == 0
    - uninstall_network_exe_actual.exists == False

- name: uninstall network exe (idempotent)
  win_package:
    product_id: '{{test_win_package_exe_id}}'
    arguments: /S
    state: absent
    user_name: '{{test_win_package_network_username|default(omit)}}'
    user_password: '{{test_win_package_network_password|default(omit)}}'
  register: uninstall_network_exe_idempotent

- name: assert uninstall network exe (idempotent)
  assert:
    that:
    - uninstall_network_exe_idempotent is not changed