summaryrefslogtreecommitdiff
path: root/test/integration/targets/win_dsc/tasks/tests.yml
blob: d2a6802fdfa24dc6701ac09197ac86e28a6fa02c (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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
---
- name: fail with incorrect DSC resource name
  win_dsc:
    resource_name: FakeResource
  register: fail_invalid_resource
  failed_when: fail_invalid_resource.msg != "Resource 'FakeResource' not found."

- name: fail with invalid DSC version
  win_dsc:
    resource_name: xTestResource
    module_version: 0.0.1
  register: fail_invalid_version
  failed_when: 'fail_invalid_version.msg != "Resource ''xTestResource'' with version ''0.0.1'' not found. Versions installed: ''1.0.0'', ''1.0.1''."'

- name: fail with mandatory option not set
  win_dsc:
    resource_name: xSetReboot
    Value: yes
  register: fail_man_key
  failed_when: 'fail_man_key.msg != "missing required arguments: KeyParam"'

- name: fail with mandatory option not set in sub dict
  win_dsc:
    resource_name: xTestResource
    Path: C:\path
    Ensure: Present
    CimInstanceParam:  # Missing KeyValue in dict
      Choice: Choice1
  register: fail_man_key_sub_dict
  failed_when: 'fail_man_key_sub_dict.msg != "missing required arguments: KeyValue found in CimInstanceParam"'

- name: fail invalid option
  win_dsc:
    resource_name: xSetReboot
    KeyParam: key
    OtherParam: invalid
  register: fail_invalid_option
  failed_when: 'fail_invalid_option.msg != "Unsupported parameters for (win_dsc) module: OtherParam. Supported parameters include: KeyParam, PsDscRunAsCredential_username, module_version, Value, PsDscRunAsCredential_password, resource_name, DependsOn"'

- name: fail invalid option in sub dict
  win_dsc:
    resource_name: xTestResource
    Path: C:\path
    Ensure: Present
    NestedCimInstanceParam:
      KeyValue: key
      CimValue:
        KeyValue: other key
        InvalidKey: invalid
  register: fail_invalid_option_sub_dict
  failed_when: 'fail_invalid_option_sub_dict.msg != "Unsupported parameters for (win_dsc) module: InvalidKey found in NestedCimInstanceParam -> CimValue. Supported parameters include: IntValue, KeyValue, StringArrayValue, Choice, StringValue"'

- name: fail invalid read only option
  win_dsc:
    resource_name: xTestResource
    Path: C:\path
    Ensure: Present
    ReadParam: abc
  register: fail_invalid_option_read_only
  failed_when: '"Unsupported parameters for (win_dsc) module: ReadParam" not in fail_invalid_option_read_only.msg'

- name: fail invalid choice
  win_dsc:
    resource_name: xTestResource
    Path: C:\path
    Ensure: invalid
  register: fail_invalid_choice
  failed_when: 'fail_invalid_choice.msg != "value of Ensure must be one of: Present, Absent. Got no match for: invalid"'

- name: fail invalid choice in sub dict
  win_dsc:
    resource_name: xTestResource
    Path: C:\path
    Ensure: Present
    CimInstanceArrayParam:
    - KeyValue: key
    - KeyValue: key2
      Choice: Choice3
  register: fail_invalid_choice_sub_dict
  failed_when: 'fail_invalid_choice_sub_dict.msg != "value of Choice must be one of: Choice1, Choice2. Got no match for: Choice3 found in CimInstanceArrayParam"'

- name: fail old version missing new option
  win_dsc:
    resource_name: xTestResource
    module_version: 1.0.0
    Path: C:\path
    Ensure: Present
    CimInstanceParam:  # CimInstanceParam does not exist in the 1.0.0 version
      Key: key
  register: fail_invalid_option_old
  failed_when: '"Unsupported parameters for (win_dsc) module: CimInstanceParam" not in fail_invalid_option_old.msg'

- name: fail old version missing new option sub dict
  win_dsc:
    resource_name: xTestResource
    module_version: 1.0.0
    Path: C:\path
    Ensure: Present
    CimInstanceArrayParam:
    - Key: key
      Choice: Choice1
  register: fail_invalid_option_old_sub_dict
  failed_when: 'fail_invalid_option_old_sub_dict.msg != "Unsupported parameters for (win_dsc) module: Choice found in CimInstanceArrayParam. Supported parameters include: Key, IntValue, StringArrayValue, StringValue"'

- name: create test file (check mode)
  win_dsc:
    resource_name: File
    DestinationPath: '{{ remote_tmp_dir }}\dsc-file'
    Contents: file contents
    Attributes:
    - Hidden
    - ReadOnly
    Ensure: Present
    Type: File
  register: create_file_check
  check_mode: yes

- name: get result of create test file (check mode)
  win_stat:
    path: '{{ remote_tmp_dir }}\dsc-file'
  register: create_file_actual_check

- name: assert create test file (check mode)
  assert:
    that:
    - create_file_check is changed
    - create_file_check.module_version == None  # Some built in modules don't have a version set
    - not create_file_check.reboot_required
    - not create_file_actual_check.stat.exists

- name: assert create test file verbosity (check mode)
  assert:
    that:
    - create_file_check.verbose_test is defined
    - not create_file_check.verbose_set is defined
  when: ansible_verbosity >= 3

- name: create test file
  win_dsc:
    resource_name: File
    DestinationPath: '{{ remote_tmp_dir }}\dsc-file'
    Contents: file contents
    Attributes:
    - Hidden
    - ReadOnly
    Ensure: Present
    Type: File
  register: create_file

- name: get result of create test file
  win_stat:
    path: '{{ remote_tmp_dir }}\dsc-file'
  register: create_file_actual

- name: assert create test file verbosity
  assert:
    that:
    - create_file.verbose_test is defined
    - create_file.verbose_set is defined
  when: ansible_verbosity >= 3

- name: assert create test file
  assert:
    that:
    - create_file is changed
    - create_file.module_version == None
    - not create_file.reboot_required
    - create_file_actual.stat.exists
    - create_file_actual.stat.attributes == "ReadOnly, Hidden, Archive"
    - create_file_actual.stat.checksum == 'd48daab51112b49ecabd917adc345b8ba257055e'

- name: create test file (idempotent)
  win_dsc:
    resource_name: File
    DestinationPath: '{{ remote_tmp_dir }}\dsc-file'
    Contents: file contents
    Attributes:
    - Hidden
    - ReadOnly
    Ensure: Present
    Type: File
  register: create_file_again

- name: assert create test file (idempotent)
  assert:
    that:
    - not create_file_again is changed
    - create_file.module_version == None
    - not create_file.reboot_required

- name: get SID of the current Ansible user
  win_shell: |
    Add-Type -AssemblyName System.DirectoryServices.AccountManagement
    [System.DirectoryServices.AccountManagement.UserPrincipal]::Current.Sid.Value
  register: actual_sid

- name: run DSC process as another user
  win_dsc:
    resource_name: Script
    GetScript: '@{ Result= "" }'
    SetScript: |
      Add-Type -AssemblyName System.DirectoryServices.AccountManagement
      $sid = [System.DirectoryServices.AccountManagement.UserPrincipal]::Current.Sid.Value
      Set-Content -Path "{{ remote_tmp_dir }}\runas.txt" -Value $sid
    TestScript: $false
    PsDscRunAsCredential_username: '{{ ansible_user }}'
    PsDscRunAsCredential_password: '{{ ansible_password }}'
  register: runas_user

- name: get result of run DSC process as another user
  slurp:
    path: '{{ remote_tmp_dir }}\runas.txt'
  register: runas_user_result

- name: assert run DSC process as another user
  assert:
    that:
    - runas_user is changed
    - runas_user.module_version != None  # Can't reliably set the version but we can test it is set
    - not runas_user.reboot_required
    - runas_user_result.content|b64decode == actual_sid.stdout

- name: run DSC that sets reboot_required with defaults
  win_dsc:
    resource_name: xSetReboot
    KeyParam: value  # Just to satisfy the Resource with key validation
  register: set_reboot_defaults

- name: assert run DSC that sets reboot_required with defaults
  assert:
    that:
    - set_reboot_defaults.reboot_required

- name: run DSC that sets reboot_required with False
  win_dsc:
    resource_name: xSetReboot
    KeyParam: value
    Value: no
  register: set_reboot_false

- name: assert run DSC that sets reboot_required with False
  assert:
    that:
    - not set_reboot_false.reboot_required

- name: run DSC that sets reboot_required with True
  win_dsc:
    resource_name: xSetReboot
    KeyParam: value
    Value: yes
  register: set_reboot_true

- name: assert run DSC that sets reboot_required with True
  assert:
    that:
    - set_reboot_true.reboot_required

- name: test DSC with all types
  win_dsc:
    resource_name: xTestResource
    Path: '{{ remote_tmp_dir }}\test-types.json'
    Ensure: Present
    StringParam: string param
    StringArrayParam:
    - string 1
    - string 2
    Int8Param: 127  # [SByte]::MaxValue
    Int8ArrayParam:
    - 127
    - '127'
    UInt8Param: 255  # [Byte]::MaxValue
    UInt8ArrayParam:
    - 255
    - '255'
    Int16Param: 32767  # [Int16]::MaxValue
    Int16ArrayParam: 32767, 32767
    UInt16Param: '65535'  # [UInt16]::MaxValue
    UInt16ArrayParam: 65535
    Int32Param: 2147483647  # [Int32]::MaxValue
    Int32ArrayParam: '2147483647'
    UInt32Param: '4294967295'  # [UInt32]::MaxValue
    UInt32ArrayParam:
    - '4294967295'
    - 4294967295
    Int64Param: 9223372036854775807  # [Int64]::MaxValue
    Int64ArrayParam:
    - -9223372036854775808  # [Int64]::MinValue
    - 9223372036854775807
    UInt64Param: 18446744073709551615  # [UInt64]::MaxValue
    UInt64ArrayParam:
    - 0  # [UInt64]::MinValue
    - 18446744073709551615
    BooleanParam: True
    BooleanArrayParam:
    - True
    - 'True'
    - 'true'
    - 'y'
    - 'yes'
    - 1
    - False
    - 'False'
    - 'false'
    - 'n'
    - 'no'
    - 0
    CharParam: c
    CharArrayParam:
    - c
    - h
    - a
    - r
    SingleParam: 3.402823E+38
    SingleArrayParam:
    - '3.402823E+38'
    - 1.2393494
    DoubleParam: 1.79769313486232E+300
    DoubleArrayParam:
    - '1.79769313486232E+300'
    - 3.56821831681516
    DateTimeParam: '2019-02-22T13:57:31.2311892-04:00'
    DateTimeArrayParam:
    - '2019-02-22T13:57:31.2311892+00:00'
    - '2019-02-22T13:57:31.2311892+04:00'
    PSCredentialParam_username: username1
    PSCredentialParam_password: password1
    HashtableParam:
      key1: string 1
      key2: ''
      key3: 1
    CimInstanceParam:
      KeyValue: a
    CimInstanceArrayParam:
    - KeyValue: b
      Choice: Choice1
      StringValue: string 1
      IntValue: 1
      StringArrayValue:
      - abc
      - def
    - KeyValue: c
      Choice: Choice2
      StringValue: string 2
      IntValue: '2'
      StringArrayValue:
      - ghi
      - jkl
    NestedCimInstanceParam:
      KeyValue: key value
      CimValue:
        KeyValue: d
      CimArrayValue:
      - KeyValue: e
        Choice: Choice2
      HashValue:
        a: a
      IntValue: '300'
  register: dsc_types

- name: get result of test DSC with all types
  slurp:
    path: '{{ remote_tmp_dir }}\test-types.json'
  register: dsc_types_raw

- name: convert result of test DSC with all types to dict
  set_fact:
    dsc_types_actual: '{{ dsc_types_raw.content | b64decode | from_json }}'

- name: assert test DSC with all types
  assert:
    that:
    - dsc_types is changed
    - dsc_types.module_version == '1.0.1'
    - not dsc_types.reboot_required
    - dsc_types_actual.Version == '1.0.1'
    - dsc_types_actual.Verbose.Value.IsPresent
    - dsc_types_actual.DefaultParam.Value == 'Default'  # ensures that the default is set in the engine if we don't set it outselves
    - dsc_types_actual.Ensure.Value == 'Present'
    - dsc_types_actual.Path.Value == remote_tmp_dir + "\\test-types.json"
    - dsc_types_actual.StringParam.Type == 'System.String'
    - dsc_types_actual.StringParam.Value == 'string param'
    - dsc_types_actual.StringArrayParam.Type == 'System.String[]'
    - dsc_types_actual.StringArrayParam.Value == ['string 1', 'string 2']
    - dsc_types_actual.Int8Param.Type == 'System.SByte'
    - dsc_types_actual.Int8Param.Value == 127
    - dsc_types_actual.Int8ArrayParam.Type == 'System.SByte[]'
    - dsc_types_actual.Int8ArrayParam.Value == [127, 127]
    - dsc_types_actual.UInt8Param.Type == 'System.Byte'
    - dsc_types_actual.UInt8Param.Value == 255
    - dsc_types_actual.UInt8ArrayParam.Type == 'System.Byte[]'
    - dsc_types_actual.UInt8ArrayParam.Value == [255, 255]
    - dsc_types_actual.Int16Param.Type == 'System.Int16'
    - dsc_types_actual.Int16Param.Value == 32767
    - dsc_types_actual.Int16ArrayParam.Type == 'System.Int16[]'
    - dsc_types_actual.Int16ArrayParam.Value == [32767, 32767]
    - dsc_types_actual.UInt16Param.Type == 'System.UInt16'
    - dsc_types_actual.UInt16Param.Value == 65535
    - dsc_types_actual.UInt16ArrayParam.Type == 'System.UInt16[]'
    - dsc_types_actual.UInt16ArrayParam.Value == [65535]
    - dsc_types_actual.Int32Param.Type == 'System.Int32'
    - dsc_types_actual.Int32Param.Value == 2147483647
    - dsc_types_actual.Int32ArrayParam.Type == 'System.Int32[]'
    - dsc_types_actual.Int32ArrayParam.Value == [2147483647]
    - dsc_types_actual.UInt32Param.Type == 'System.UInt32'
    - dsc_types_actual.UInt32Param.Value == 4294967295
    - dsc_types_actual.UInt32ArrayParam.Type == 'System.UInt32[]'
    - dsc_types_actual.UInt32ArrayParam.Value == [4294967295, 4294967295]
    - dsc_types_actual.Int64Param.Type == 'System.Int64'
    - dsc_types_actual.Int64Param.Value == 9223372036854775807
    - dsc_types_actual.Int64ArrayParam.Type == 'System.Int64[]'
    - dsc_types_actual.Int64ArrayParam.Value == [-9223372036854775808, 9223372036854775807]
    - dsc_types_actual.UInt64Param.Type == 'System.UInt64'
    - dsc_types_actual.UInt64Param.Value == 18446744073709551615
    - dsc_types_actual.UInt64ArrayParam.Type == 'System.UInt64[]'
    - dsc_types_actual.UInt64ArrayParam.Value == [0, 18446744073709551615]
    - dsc_types_actual.BooleanParam.Type == 'System.Boolean'
    - dsc_types_actual.BooleanParam.Value == True
    - dsc_types_actual.BooleanArrayParam.Type == 'System.Boolean[]'
    - dsc_types_actual.BooleanArrayParam.Value == [True, True, True, True, True, True, False, False, False, False, False, False]
    - dsc_types_actual.CharParam.Type == 'System.Char'
    - dsc_types_actual.CharParam.Value == 'c'
    - dsc_types_actual.CharArrayParam.Type == 'System.Char[]'
    - dsc_types_actual.CharArrayParam.Value == ['c', 'h', 'a', 'r']
    - dsc_types_actual.SingleParam.Type == 'System.Single'
    - dsc_types_actual.SingleParam.Value|string == '3.402823e+38'
    - dsc_types_actual.SingleArrayParam.Type == 'System.Single[]'
    - dsc_types_actual.SingleArrayParam.Value|length == 2
    - dsc_types_actual.SingleArrayParam.Value[0]|string == '3.402823e+38'
    - dsc_types_actual.SingleArrayParam.Value[1]|string == '1.23934937'
    - dsc_types_actual.DoubleParam.Type == 'System.Double'
    - dsc_types_actual.DoubleParam.Value == '1.79769313486232E+300'
    - dsc_types_actual.DoubleArrayParam.Type == 'System.Double[]'
    - dsc_types_actual.DoubleArrayParam.Value|length == 2
    - dsc_types_actual.DoubleArrayParam.Value[0] == '1.79769313486232E+300'
    - dsc_types_actual.DoubleArrayParam.Value[1] == '3.56821831681516'
    - dsc_types_actual.DateTimeParam.Type == 'System.DateTime'
    - dsc_types_actual.DateTimeParam.Value == '2019-02-22T17:57:31.2311890+00:00'
    - dsc_types_actual.DateTimeArrayParam.Type == 'System.DateTime[]'
    - dsc_types_actual.DateTimeArrayParam.Value == ['2019-02-22T13:57:31.2311890+00:00', '2019-02-22T09:57:31.2311890+00:00']
    - dsc_types_actual.PSCredentialParam.Type == 'System.Management.Automation.PSCredential'
    - dsc_types_actual.PSCredentialParam.Value.username == 'username1'
    - dsc_types_actual.PSCredentialParam.Value.password == 'password1'
    # Hashtable is actually a CimInstance[] of MSFT_KeyValuePairs
    - dsc_types_actual.HashtableParam.Type == 'Microsoft.Management.Infrastructure.CimInstance[]'
    - dsc_types_actual.HashtableParam.Value|length == 3
    # Can't guarantee the order of the keys so just check they are the values they could be
    - dsc_types_actual.HashtableParam.Value[0].Key in ["key1", "key2", "key3"]
    - dsc_types_actual.HashtableParam.Value[0].Value in ["string 1", "1", ""]
    - dsc_types_actual.HashtableParam.Value[0]._cim_instance == 'MSFT_KeyValuePair'
    - dsc_types_actual.HashtableParam.Value[1].Key in ["key1", "key2", "key3"]
    - dsc_types_actual.HashtableParam.Value[1].Value in ["string 1", "1", ""]
    - dsc_types_actual.HashtableParam.Value[1]._cim_instance == 'MSFT_KeyValuePair'
    - dsc_types_actual.HashtableParam.Value[2].Key in ["key1", "key2", "key3"]
    - dsc_types_actual.HashtableParam.Value[2].Value in ["string 1", "1", ""]
    - dsc_types_actual.HashtableParam.Value[2]._cim_instance == 'MSFT_KeyValuePair'
    - dsc_types_actual.CimInstanceParam.Type == 'Microsoft.Management.Infrastructure.CimInstance'
    - dsc_types_actual.CimInstanceParam.Value.Choice == None
    - dsc_types_actual.CimInstanceParam.Value.IntValue == None
    - dsc_types_actual.CimInstanceParam.Value.KeyValue == 'a'
    - dsc_types_actual.CimInstanceParam.Value.StringArrayValue == None
    - dsc_types_actual.CimInstanceParam.Value.StringValue == None
    - dsc_types_actual.CimInstanceParam.Value._cim_instance == "ANSIBLE_xTestClass"
    - dsc_types_actual.CimInstanceArrayParam.Type == 'Microsoft.Management.Infrastructure.CimInstance[]'
    - dsc_types_actual.CimInstanceArrayParam.Value|length == 2
    - dsc_types_actual.CimInstanceArrayParam.Value[0].Choice == 'Choice1'
    - dsc_types_actual.CimInstanceArrayParam.Value[0].IntValue == 1
    - dsc_types_actual.CimInstanceArrayParam.Value[0].KeyValue == 'b'
    - dsc_types_actual.CimInstanceArrayParam.Value[0].StringArrayValue == ['abc', 'def']
    - dsc_types_actual.CimInstanceArrayParam.Value[0].StringValue == 'string 1'
    - dsc_types_actual.CimInstanceArrayParam.Value[0]._cim_instance == 'ANSIBLE_xTestClass'
    - dsc_types_actual.CimInstanceArrayParam.Value[1].Choice == 'Choice2'
    - dsc_types_actual.CimInstanceArrayParam.Value[1].IntValue == 2
    - dsc_types_actual.CimInstanceArrayParam.Value[1].KeyValue == 'c'
    - dsc_types_actual.CimInstanceArrayParam.Value[1].StringArrayValue == ['ghi', 'jkl']
    - dsc_types_actual.CimInstanceArrayParam.Value[1].StringValue == 'string 2'
    - dsc_types_actual.CimInstanceArrayParam.Value[1]._cim_instance == 'ANSIBLE_xTestClass'
    - dsc_types_actual.NestedCimInstanceParam.Type == 'Microsoft.Management.Infrastructure.CimInstance'
    - dsc_types_actual.NestedCimInstanceParam.Value.CimArrayValue|length == 1
    - dsc_types_actual.NestedCimInstanceParam.Value.CimArrayValue[0].Choice == 'Choice2'
    - dsc_types_actual.NestedCimInstanceParam.Value.CimArrayValue[0].IntValue == None
    - dsc_types_actual.NestedCimInstanceParam.Value.CimArrayValue[0].KeyValue == 'e'
    - dsc_types_actual.NestedCimInstanceParam.Value.CimArrayValue[0].StringArrayValue == None
    - dsc_types_actual.NestedCimInstanceParam.Value.CimArrayValue[0].StringValue == None
    - dsc_types_actual.NestedCimInstanceParam.Value.CimArrayValue[0]._cim_instance == 'ANSIBLE_xTestClass'
    - dsc_types_actual.NestedCimInstanceParam.Value.CimValue.Choice == None
    - dsc_types_actual.NestedCimInstanceParam.Value.CimValue.IntValue == None
    - dsc_types_actual.NestedCimInstanceParam.Value.CimValue.KeyValue == 'd'
    - dsc_types_actual.NestedCimInstanceParam.Value.CimValue.StringArrayValue == None
    - dsc_types_actual.NestedCimInstanceParam.Value.CimValue.StringValue == None
    - dsc_types_actual.NestedCimInstanceParam.Value.CimValue._cim_instance == 'ANSIBLE_xTestClass'
    - dsc_types_actual.NestedCimInstanceParam.Value.HashValue|length == 1
    - dsc_types_actual.NestedCimInstanceParam.Value.HashValue[0].Key == 'a'
    - dsc_types_actual.NestedCimInstanceParam.Value.HashValue[0].Value == 'a'
    - dsc_types_actual.NestedCimInstanceParam.Value.HashValue[0]._cim_instance == 'MSFT_KeyValuePair'
    - dsc_types_actual.NestedCimInstanceParam.Value.IntValue == 300
    - dsc_types_actual.NestedCimInstanceParam.Value.KeyValue == 'key value'
    - dsc_types_actual.NestedCimInstanceParam.Value._cim_instance == 'ANSIBLE_xNestedClass'

- name: test DSC with all types older version
  win_dsc:
    resource_name: xTestResource
    module_version: 1.0.0
    Path: '{{ remote_tmp_dir }}\test-types.json'
    Ensure: Absent
    StringParam: string param old
    CimInstanceArrayParam:
    - Key: old key
      StringValue: string old 1
      IntValue: 0
      StringArrayValue:
      - zyx
      - wvu
  register: dsc_types_old

- name: get result of test DSC with all types older version
  slurp:
    path: '{{ remote_tmp_dir }}\test-types.json'
  register: dsc_types_old_raw

- name: convert result of test DSC with all types to dict
  set_fact:
    dsc_types_old_actual: '{{ dsc_types_old_raw.content | b64decode | from_json }}'

- name: assert test DSC with all types older version
  assert:
    that:
    - dsc_types_old is changed
    - dsc_types_old.module_version == '1.0.0'
    - not dsc_types_old.reboot_required
    - dsc_types_old_actual.Version == '1.0.0'
    - dsc_types_old_actual.Verbose.Value.IsPresent
    - dsc_types_old_actual.DefaultParam.Value == 'Default'
    - dsc_types_old_actual.Ensure.Value == 'Absent'
    - dsc_types_old_actual.Path.Value == remote_tmp_dir + "\\test-types.json"
    - dsc_types_old_actual.StringParam.Type == 'System.String'
    - dsc_types_old_actual.StringParam.Value == 'string param old'
    - dsc_types_old_actual.CimInstanceArrayParam.Type == 'Microsoft.Management.Infrastructure.CimInstance[]'
    - dsc_types_old_actual.CimInstanceArrayParam.Value|length == 1
    - not dsc_types_old_actual.CimInstanceArrayParam.Value[0].Choice is defined  # 1.0.0 does not have a Choice option
    - dsc_types_old_actual.CimInstanceArrayParam.Value[0].IntValue == 0
    - dsc_types_old_actual.CimInstanceArrayParam.Value[0].Key == 'old key'
    - dsc_types_old_actual.CimInstanceArrayParam.Value[0].StringArrayValue == ['zyx', 'wvu']
    - dsc_types_old_actual.CimInstanceArrayParam.Value[0].StringValue == 'string old 1'
    - dsc_types_old_actual.CimInstanceArrayParam.Value[0]._cim_instance == 'ANSIBLE_xTestClass'