forked from cloudbase/powershell-yaml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpowershell-yaml.Tests.ps1
More file actions
1103 lines (968 loc) · 44.5 KB
/
powershell-yaml.Tests.ps1
File metadata and controls
1103 lines (968 loc) · 44.5 KB
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
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2016-2024 Cloudbase Solutions Srl
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# pinning this module to an exact version,
# because the options api will be merged with Assert-Equivalent
# before release of 1.0.0
Import-Module Assert -Version 0.9.6
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
$moduleHome = Split-Path -Parent $here
$moduleName = "powershell-yaml"
$modulePath = Join-Path $moduleHome "powershell-yaml.psd1"
Import-Module $modulePath
InModuleScope $moduleName {
$compareStrictly = Get-EquivalencyOption -Comparator Equality
Describe "Test flow styles" {
Context "Mappings, sequences and PSCustomObjects" {
It "Should serialize Block flow (default) correctly" {
$obj = [ordered]@{
aStringKey = "test"
anIntKey = 1
anArrayKey = @(1, 2, 3)
}
$expected = @"
aStringKey: test
anIntKey: 1
anArrayKey:
- 1
- 2
- 3
"@
$serialized = ConvertTo-Yaml $obj
Assert-Equivalent -Options $compareStrictly -Expected $expected -Actual $serialized
$pso = [pscustomobject]$obj
$serialized = ConvertTo-Yaml $pso
Assert-Equivalent -Options $compareStrictly -Expected $expected -Actual $serialized
}
It "Should serialize Flow flow correctly" {
$obj = [ordered]@{
aStringKey = "test"
anIntKey = 1
anArrayKey = @(1, 2, 3)
}
$expected = @"
{aStringKey: test, anIntKey: 1, anArrayKey: [1, 2, 3]}
"@
$serialized = ConvertTo-Yaml -Options UseFlowStyle $obj
Assert-Equivalent -Options $compareStrictly -Expected $expected -Actual $serialized
$pso = [pscustomobject]$obj
$serialized = ConvertTo-Yaml -Options UseFlowStyle $pso
Assert-Equivalent -Options $compareStrictly -Expected $expected -Actual $serialized
}
It "Should serialize SequenceFlowStyle correctly" {
$obj = [ordered]@{
aStringKey = "test"
anIntKey = 1
anArrayKey = @(1, 2, 3)
}
$expected = @"
aStringKey: test
anIntKey: 1
anArrayKey: [1, 2, 3]
"@
$serialized = ConvertTo-Yaml -Options UseSequenceFlowStyle $obj
Assert-Equivalent -Options $compareStrictly -Expected $expected -Actual $serialized
$pso = [pscustomobject]$obj
$serialized = ConvertTo-Yaml -Options UseSequenceFlowStyle $pso
Assert-Equivalent -Options $compareStrictly -Expected $expected -Actual $serialized
}
It "Should serialize JsonCompatible correctly" {
$obj = [ordered]@{
aStringKey = "test"
anIntKey = 1
anArrayKey = @(1, 2, 3)
}
$expected = @"
{"aStringKey": "test", "anIntKey": 1, "anArrayKey": [1, 2, 3]}
"@
$serialized = ConvertTo-Yaml -Options JsonCompatible $obj
Assert-Equivalent -Options $compareStrictly -Expected $expected -Actual $serialized
if ($PSVersionTable['PSEdition'] -eq 'Core') {
$deserializedWithJSonCommandlet = $serialized | ConvertFrom-Json -AsHashtable
Assert-Equivalent -Options $compareStrictly -Expected $obj -Actual $deserializedWithJSonCommandlet
}
$pso = [pscustomobject]$obj
$serialized = ConvertTo-Yaml -Options JsonCompatible $pso
Assert-Equivalent -Options $compareStrictly -Expected $expected -Actual $serialized
if ($PSVersionTable['PSEdition'] -eq 'Core') {
$deserializedWithJSonCommandlet = $serialized | ConvertFrom-Json -AsHashtable
Assert-Equivalent -Options $compareStrictly -Expected $obj -Actual $deserializedWithJSonCommandlet
}
}
}
}
Describe "Test serialized depth" {
Context "Deeply nested objects are serialized correctly" {
It "Should deserialize the entire object" {
$data = @"
children:
appliance:
bla:
bla2:
bla3:
bla4:
bla5:
bla6:
bla7:
bla8:
bla9:
bla10:
bla11:
bla12:
bla13:
bla14:
bla15:
bla16:
bla17:
bla18:
bla19:
bla20:
bla21:
bla22:
bla23:
bla24:
bla25:
bla26:
bla27:
bla28:
bla29:
bla30:
bla31:
bla32:
bla33:
bla34:
bla35:
bla36:
bla37:
bla38:
bla39:
bla40:
bla41:
bla42:
bla43:
bla44:
bla45:
bla46:
bla47:
bla48:
bla49:
bla50:
bla51:
- 192.168.0.1
- 192.168.0.2
- 192.168.0.3
"@
$result = cfy $data | cty
Assert-Equivalent -Options $compareStrictly -Expected $data -Actual $result
}
}
}
Describe "Test PSCustomObject wrapped values are serialized correctly" {
Context "A PSCustomObject that contains an array of PSObjects" {
It "Should serialize correctly" {
$expected = @"
yamlList:
- item1
- item2
"@
$data = ConvertFrom-YAml "yamlList: []" | ConvertTo-JSON -Depth 3 | ConvertFrom-Json
$jsData = '["item1", "item2"]'
$data.yamlList = $jsData | ConvertFrom-Json
$asYaml = ConvertTo-Yaml $data
Assert-Equivalent -Options $compareStrictly -Expected $expected -Actual $asYaml
}
}
Context "A PSCustomObject containing nested PSCustomObjects" {
It "Should serialize correctly" {
$expectBigInt = [System.Numerics.BigInteger]::Parse("9999999999999999999999999999999999999999999999999")
$obj = [PSCustomObject]@{a = Write-Output 'string'; b = Write-Output 1; c = Write-Output @{nested = $true};d = [pscustomobject]$expectBigInt}
$asYaml = ConvertTo-Yaml $obj
$fromYaml = ConvertFrom-Yaml $asYaml
Assert-Equivalent -Options $compareStrictly -Expected "string" -Actual $fromYaml["a"]
Assert-Equivalent -Options $compareStrictly -Expected 1 -Actual $fromYaml["b"]
Assert-Equivalent -Options $compareStrictly -Expected $expectBigInt -Actual $fromYaml["d"]
}
}
Context "A hashtable containing nested PSCustomObjects" {
It "Should serialize correctly" {
$expectBigInt = [System.Numerics.BigInteger]::Parse("9999999999999999999999999999999999999999999999999")
$obj = @{a = Write-Output 'string'; b = Write-Output 1; c = Write-Output @{nested = $true};d = [pscustomobject]$expectBigInt}
$asYaml = ConvertTo-Yaml $obj
$fromYaml = ConvertFrom-Yaml $asYaml
Assert-Equivalent -Options $compareStrictly -Expected "string" -Actual $fromYaml["a"]
Assert-Equivalent -Options $compareStrictly -Expected 1 -Actual $fromYaml["b"]
Assert-Equivalent -Options $compareStrictly -Expected $expectBigInt -Actual $fromYaml["d"]
}
}
Context "A generic dictionary containing nested PSCustomObjects" {
It "Should serialize correctly" {
$expectBigInt = [System.Numerics.BigInteger]::Parse("9999999999999999999999999999999999999999999999999")
$obj = [System.Collections.Generic.Dictionary[string, object]]::new()
$obj["a"] = Write-Output 'string'
$obj["b"] = Write-Output 1
$obj["c"] = Write-Output @{nested = $true}
$obj["d"] = [pscustomobject]$expectBigInt
$asYaml = ConvertTo-Yaml $obj
$fromYaml = ConvertFrom-Yaml $asYaml
Assert-Equivalent -Options $compareStrictly -Expected "string" -Actual $fromYaml["a"]
Assert-Equivalent -Options $compareStrictly -Expected 1 -Actual $fromYaml["b"]
Assert-Equivalent -Options $compareStrictly -Expected $expectBigInt -Actual $fromYaml["d"]
}
}
}
Describe "Test encode-decode symmetry." {
Context "Simple-Items" {
It "Should represent identity to encode and decode." -TestCases @(
@{ Expected = 1 }
@{ Expected = "yes" }
@{ Expected = 56 }
@{ Expected = $null }
) {
param ($Expected)
$actual = ConvertFrom-Yaml (ConvertTo-Yaml $Expected)
Assert-Equivalent -Options $compareStrictly -Expected $Expected -Actual $actual
}
}
Context "Nulls and strings" {
BeforeAll {
$global:nullAndString = [ordered]@{"iAmNull"= $null; "iAmEmptyString"=""}
$global:yaml = @"
iAmNull:
iAmEmptyString: ""
"@
}
It "should not serialize null value when -Options OmitNullValues is set" {
$toYaml = ConvertTo-Yaml $nullAndString -Options OmitNullValues
$toYaml | Should -Be "iAmEmptyString: """"$([Environment]::NewLine)"
}
It "should preserve nulls and empty strings from PowerShell" {
$toYaml = ConvertTo-Yaml $nullAndString
$backFromYaml = ConvertFrom-Yaml $toYaml
($null -eq $backFromYaml.iAmNull) | Should -Be $true
$backFromYaml.iAmEmptyString | Should -Be ""
$toYaml | Should -Be $yaml
}
It "should preserve nulls and empty strings from Yaml" {
$fromYaml = ConvertFrom-Yaml -Ordered $yaml
$backToYaml = ConvertTo-Yaml $fromYaml
$backToYaml | Should -Be $yaml
($null -eq $fromYaml.iAmNull) | Should -Be $true
$fromYaml.iAmEmptyString | Should -Be ""
}
}
Context "Test array handling under various circumstances." {
$arr = 1, 2, "yes", @{ key = "value" }, 5, (1, "no", 3)
It "Should represent identity to encode/decode arrays as arguments." {
$yaml = ConvertTo-Yaml $arr
$a = ConvertFrom-Yaml $yaml
Assert-Equivalent -Options $compareStrictly -Actual $a -Expected $arr
}
It "Should represent identity to encode/decode arrays by piping them in." {
$yaml = $arr | ConvertTo-Yaml
$a = ConvertFrom-Yaml $yaml
Assert-Equivalent -Options $compareStrictly -Actual $a -Expected $arr
}
It "Should be irrelevant whether we convert an array by piping it, or referencing them as an argument." {
$arged = ConvertTo-Yaml $arr
$piped = $arr | ConvertTo-Yaml
Assert-Equivalent -Options $compareStrictly -Actual $piped -Expected $arged
}
}
Context "Test merging parser" {
BeforeAll {
$global:mergingYaml = @"
---
default: &default
value1: 1
value2: 2
hoge:
<<: *default
value3: 3
"@
$global:mergingYamlOverwriteCase = @"
---
default: &default
value1: 1
value2: 2
hoge:
<<: *default
value1: 33
value3: 3
"@
}
It "Should expand merging key with appropriate referenced keys" {
$result = ConvertFrom-Yaml -Yaml $mergingYaml -UseMergingParser
[array]$values = $result.hoge.keys
[array]::sort($values)
Assert-Equivalent -Options $compareStrictly -Actual $values -Expected @("value1", "value2", "value3")
}
It "Should retain literal key name in the absence or -UseMergingParser" {
$result = ConvertFrom-Yaml -Yaml $mergingYaml
[array]$values = $result.hoge.keys
[array]::sort($values)
Assert-Equivalent -Options $compareStrictly -Actual $values -Expected @("<<", "value3")
}
It "Shoud Throw duplicate key exception when merging keys" {
# This case does not seem to be treated by YamlDotNet and currently throws
# a duplicate key exception
{ ConvertFrom-Yaml -Yaml $mergingYamlOverwriteCase -UseMergingParser } | Should -Throw -PassThru | Select-Object -ExpandProperty Exception |
Should -BeLike "*Duplicate key*"
}
}
Context "Test hash handling under various circumstances." {
$hash = @{
# NOTE: intentionally not considered as YAML requires dict keys
# be strings. As such; decoding the encoding of this would result
# in a hash with the string key of "1", as below:
# 1 = 42;
"1" = 42;
today = @{
month = "January";
year = "2016";
timestamp = Get-Date
};
arr = 1, 2, 3, "yes", @{ yes = "yes" };
yes = "no"
}
It "Should be symmetrical to encode and then decode the hash as an argument." {
$yaml = ConvertTo-Yaml $hash
$h = ConvertFrom-Yaml $yaml
Assert-Equivalent -Options $compareStrictly -Actual $h -Expected $hash
}
It "Should be symmetrical to endocode and then decode a hash by piping it." {
$yaml = $hash | ConvertTo-Yaml
$h = ConvertFrom-Yaml $yaml
Assert-Equivalent -Options $compareStrictly -Actual $h -Expected $hash
}
It "Shouldn't matter whether we reference or pipe our hashes in to the YAML functions." {
$arged = ConvertTo-Yaml $hash
$piped = $hash | ConvertTo-Yaml
Assert-Equivalent -Options $compareStrictly -Actual $piped -Expected $arged
}
}
}
Describe "Being able to decode an externally provided string." {
Context "Decoding an arbitrary YAML string correctly." {
BeforeAll {
# testYaml is just a string containing some yaml to be tested below:
$testYaml = @"
wishlist:
- [coats, hats, and, scarves]
- product : A Cool Book.
quantity : 1
description : I love that Cool Book.
price : 55.34
total: 4443.52
int64: $([int64]::MaxValue)
note: >
I can't wait.
To get that Cool Book.
intsAndDecimals:
aStringTatLooksLikeAFloat: 55,34
aStringThatLooksLikeAnInt: 2018+
scientificNotationInt: 1e+3
scientificNotationBigInt: 1e+40
intWithTag: !!int "42"
zeroIntWithTag: !!int "0"
zeroIntWithoutTag: 0
scientificNotationIntWithTag: !!int "1e+3"
aDecimalWithATag: !!float "3.9999999999999990"
aDecimalWithoutATag: 3.9999999999999990
decimalInfinity: !!float ".inf"
decimalNegativeInfinity: !!float "-.inf"
dates:
- !!timestamp 2001-12-15T02:59:43.1Z
- !!timestamp 2001-12-14t21:59:43.10-05:00
- !!timestamp 2001-12-14 21:59:43.10 -5
- !!timestamp 2001-12-15 2:59:43.10
- !!timestamp 2002-12-14
datesAsStrings:
- 2001-12-15T02:59:43.1Z
- 2001-12-14t21:59:43.10-05:00
- 2001-12-14 21:59:43.10 -5
- 2001-12-15 2:59:43.10
- 2002-12-14
version:
- 1.2.3
noniso8601dates:
- 5/4/2017
- 1.2.3
bools:
- true
- false
- TRUE
- FALSE
- True
- False
"@
$global:expected = @{
wishlist = @(
@("coats", "hats", "and", "scarves"),
@{
product = "A Cool Book.";
quantity = 1;
description = "I love that Cool Book.";
price = 55.34;
}
);
intsAndDecimals = @{
aStringTatLooksLikeAFloat = "55,34";
aStringThatLooksLikeAnInt = "2018+"
scientificNotationInt = [int32]1000
scientificNotationBigInt = [System.Numerics.BigInteger]::Parse("10000000000000000000000000000000000000000")
intWithTag = 42
zeroIntWithTag = 0
zeroIntWithoutTag = 0
scientificNotationIntWithTag = 1000
aDecimalWithATag = [decimal]::Parse("3.9999999999999990", [System.Globalization.CultureInfo]::InvariantCulture)
aDecimalWithoutATag = [decimal]::Parse("3.9999999999999990", [System.Globalization.CultureInfo]::InvariantCulture)
decimalInfinity = [double]::PositiveInfinity
decimalNegativeInfinity = [double]::NegativeInfinity
}
total = 4443.52;
int64 = ([int64]::MaxValue);
note = ("I can't wait. To get that Cool Book.`n");
dates = @(
[DateTime]::Parse('2001-12-15T02:59:43.1Z'),
[DateTime]::Parse('2001-12-14t21:59:43.10-05:00'),
[DateTime]::Parse('2001-12-14 21:59:43.10 -5'),
[DateTime]::Parse('2001-12-15 2:59:43.10'),
[DateTime]::Parse('2002-12-14')
);
datesAsStrings = @(
"2001-12-15T02:59:43.1Z",
"2001-12-14t21:59:43.10-05:00",
"2001-12-14 21:59:43.10 -5",
"2001-12-15 2:59:43.10",
"2002-12-14"
);
version = "1.2.3";
noniso8601dates = @( '5/4/2017', '1.2.3' );
bools = @( $true, $false, $true, $false, $true, $false );
}
$global:res = ConvertFrom-Yaml $testYaml
}
It "Should decode the YAML string as expected." {
$wishlist = $res['wishlist']
$wishlist | Should -Not -BeNullOrEmpty
$wishlist.Count | Should -Be 2
$wishlist[0] | Should -Not -BeNullOrEmpty
$wishlist[0].Count | Should -Be 4
$wishlist[0][0] | Should -Be $expected['wishlist'][0][0]
$wishlist[0][1] | Should -Be $expected['wishlist'][0][1]
$wishlist[0][2] | Should -Be $expected['wishlist'][0][2]
$wishlist[0][3] | Should -Be $expected['wishlist'][0][3]
$product = $res['wishlist'][1]
$product | Should -Not -BeNullOrEmpty
$expectedProduct = $expected['wishlist'][1]
$product['product'] | Should -Be $expectedProduct['product']
$product['quantity'] | Should -Be $expectedProduct['quantity']
$product['description'] | Should -Be $expectedProduct['description']
$product['price'] | Should -Be $expectedProduct['price']
$res['total'] | Should -Be $expected['total']
$res['note'] | Should -Be $expected['note']
$expectedIntsAndDecimals = $expected['intsAndDecimals']
$intsAndDecimals = $res['intsAndDecimals']
$intsAndDecimals['aStringTatLooksLikeAFloat'] | Should -Be $expectedIntsAndDecimals['aStringTatLooksLikeAFloat']
$intsAndDecimals['aStringTatLooksLikeAFloat'] | Should -BeOfType ([string])
$intsAndDecimals['aStringThatLooksLikeAnInt'] | Should -Be $expectedIntsAndDecimals['aStringThatLooksLikeAnInt']
$intsAndDecimals['aStringThatLooksLikeAnInt'] | Should -BeOfType ([string])
$intsAndDecimals['zeroIntWithTag'] | Should -Be $expectedIntsAndDecimals['zeroIntWithTag']
$intsAndDecimals['zeroIntWithTag'] | Should -BeOfType ([int32])
$intsAndDecimals['zeroIntWithoutTag'] | Should -Be $expectedIntsAndDecimals['zeroIntWithoutTag']
$intsAndDecimals['zeroIntWithoutTag'] | Should -BeOfType ([int32])
$intsAndDecimals['scientificNotationInt'] | Should -Be $expectedIntsAndDecimals['scientificNotationInt']
$intsAndDecimals['scientificNotationInt'] | Should -BeOfType ([int32])
$intsAndDecimals['scientificNotationBigInt'] | Should -Be $expectedIntsAndDecimals['scientificNotationBigInt']
$intsAndDecimals['scientificNotationBigInt'] | Should -BeOfType ([System.Numerics.BigInteger])
$intsAndDecimals['intWithTag'] | Should -Be $expectedIntsAndDecimals['intWithTag']
$intsAndDecimals['intWithTag'] | Should -BeOfType ([int32])
$intsAndDecimals['scientificNotationIntWithTag'] | Should -Be $expectedIntsAndDecimals['scientificNotationIntWithTag']
$intsAndDecimals['scientificNotationIntWithTag'] | Should -BeOfType ([int32])
$intsAndDecimals['aDecimalWithATag'] | Should -Be $expectedIntsAndDecimals['aDecimalWithATag']
$intsAndDecimals['aDecimalWithATag'] | Should -BeOfType ([decimal])
$intsAndDecimals['aDecimalWithoutATag'] | Should -Be $expectedIntsAndDecimals['aDecimalWithoutATag']
$intsAndDecimals['aDecimalWithoutATag'] | Should -BeOfType ([decimal])
$intsAndDecimals['decimalInfinity'] | Should -Be $expectedIntsAndDecimals['decimalInfinity']
$intsAndDecimals['decimalInfinity'] | Should -BeOfType ([double])
$intsAndDecimals['decimalNegativeInfinity'] | Should -Be $expectedIntsAndDecimals['decimalNegativeInfinity']
$intsAndDecimals['decimalNegativeInfinity'] | Should -BeOfType ([double])
$res['dates'] | Should -Not -BeNullOrEmpty
$res['dates'].Count | Should -Be $expected['dates'].Count
for( $idx = 0; $idx -lt $expected['dates'].Count; ++$idx )
{
$res['dates'][$idx] | Should -BeOfType ([datetime])
$res['dates'][$idx] | Should -Be $expected['dates'][$idx]
}
$res['datesAsStrings'] | Should -Not -BeNullOrEmpty
$res['datesAsStrings'].Count | Should -Be $expected['datesAsStrings'].Count
for( $idx = 0; $idx -lt $expected['datesAsStrings'].Count; ++$idx )
{
$res['datesAsStrings'][$idx] | Should -BeOfType ([string])
$res['datesAsStrings'][$idx] | Should -Be $expected['dates'][$idx]
}
$res['version'] | Should -BeOfType ([string])
$res['version'] | Should -Be $expected['version']
$res['noniso8601dates'] | Should -Not -BeNullOrEmpty
$res['noniso8601dates'].Count | Should -Be $expected['noniso8601dates'].Count
for( $idx = 0; $idx -lt $expected['noniso8601dates'].Count; ++$idx )
{
$res['noniso8601dates'][$idx] | Should -BeOfType ([string])
$res['noniso8601dates'][$idx] | Should -Be $expected['noniso8601dates'][$idx]
}
Assert-Equivalent -Options $compareStrictly -Actual $res -Expected $expected
}
}
}
Describe "Test ConvertTo-Yaml can serialize more complex nesting" {
BeforeAll {
$global:sample = [PSCustomObject]@{
a1 = "a"
a2 = [PSCustomObject]@{
"a1" = "a"
a2 = [PSCustomObject]@{
a1 = [PSCustomObject]@{
"a1" = "a"
a2 = [PSCustomObject]@{
a1 = "a"
}
a3 = [ordered]@{
a1 = @("a", "b")
}
a4 = @("a", "b")
}
}
a3 = @(
[PSCustomObject]@{
a1 = "a"
a2 = $False
}
)
}
}
$global:sample2 = [PSCustomObject]@{
b1 = "b"
b2 = [PSCustomObject]@{
b1 = "b"
b2 = [PSCustomObject]@{
"b" = "b"
}
}
b3 = [ordered]@{
b1 = @("b1", "b2")
}
b4 = $True
b5 = [PSCustomObject]@{
b = "b"
}
}
$global:expected_json = '{"a1":"a","a2":{"a1":"a","a2":{"a1":{"a1":"a","a2":{"a1":"a"},"a3":{"a1":["a","b"]},"a4":["a","b"]}},"a3":[{"a1":"a","a2":false}]}}'
$global:expected_json2 = '{"b1":"b","b2":{"b1":"b","b2":{"b":"b"}},"b3":{"b1":["b1","b2"]},"b4":true,"b5":{"b":"b"}}'
$global:expected_block_yaml = @"
a1: a
a2:
a1: a
a2:
a1:
a1: a
a2:
a1: a
a3:
a1:
- a
- b
a4:
- a
- b
a3:
- a1: a
a2: false
"@
$global:expected_flow_yaml = '{a1: a, a2: {a1: a, a2: {a1: {a1: a, a2: {a1: a}, a3: {a1: [a, b]}, a4: [a, b]}}, a3: [{a1: a, a2: false}]}}'
$global:expected_block_yaml2 = @"
b1: b
b2:
b1: b
b2:
b: b
b3:
b1:
- b1
- b2
b4: true
b5:
b: b
"@
$global:expected_flow_yaml2 = '{b1: b, b2: {b1: b, b2: {b: b}}, b3: {b1: [b1, b2]}, b4: true, b5: {b: b}}'
}
It "Should serialize nested PSCustomObjects to YAML" {
$yaml = ConvertTo-Yaml $sample
$yaml | Should -Be $expected_block_yaml
$yaml = ConvertTo-Yaml $sample2
$yaml | Should -Be $expected_block_yaml2
}
It "Should serialize nested PSCustomObjects to YAML flow format" {
$yaml = ConvertTo-Yaml $sample -Options UseFlowStyle
$yaml.Replace($([Environment]::NewLine), "") | Should -Be $expected_flow_yaml
$yaml = ConvertTo-Yaml $sample2 -Options UseFlowStyle
$yaml.Replace($([Environment]::NewLine), "") | Should -Be $expected_flow_yaml2
}
It "Should serialize nested PSCustomObjects to JSON" {
# Converted with powershell-yaml
$json = ConvertTo-Yaml $sample -Options JsonCompatible
$json.Replace(" ", "").Replace($([Environment]::NewLine), "") | Should -Be $expected_json
# Converted with ConvertTo-Json
$withJsonCommandlet = ConvertTo-Json -Compress -Depth 100 $sample
$withJsonCommandlet | Should -Be $expected_json
# Converted with powershell-yaml
$json = ConvertTo-Yaml $sample2 -Options JsonCompatible
$json.Replace(" ", "").Replace($([Environment]::NewLine), "") | Should -Be $expected_json2
# Converted with ConvertTo-Json
$withJsonCommandlet = ConvertTo-Json -Compress -Depth 100 $sample2
$withJsonCommandlet | Should -Be $expected_json2
}
}
Describe "Test ConvertTo-Yaml -OutFile parameter behavior" {
Context "Providing -OutFile with invalid prefix." {
BeforeAll {
$testPath = "/some/bogus/path"
$global:testObject = 42
# mock Test-Path to fail so the test for the directory of the -OutFile fails:
Mock Test-Path { return $false } -Verifiable -ParameterFilter { $OutFile -eq $testPath }
}
It "Should refuse to work with an -OutFile with an invalid prefix." {
{ ConvertTo-Yaml $testObject -OutFile $testPath } | Should -Throw "Parent folder for specified path does not exist"
}
It "Should verify that all the required mocks were called." {
Assert-VerifiableMock
}
}
Context "Providing existing -OutFile without -Force." {
BeforeAll {
$testPath = "/some/bogus/path"
$global:testObject = "A random string this time."
# mock Test-Path to succeed so the -OutFile seems to exist:
Mock Test-Path { return $true } -Verifiable -ParameterFilter { $OutFile -eq $testPath }
}
It "Should refuse to work for an existing -OutFile but no -Force flag." {
{ ConvertTo-Yaml $testObject -OutFile $testPath } | Should -Throw "Target file already exists. Use -Force to overwrite."
}
It "Should verify that all the required mocks were called." {
Assert-VerifiableMock
}
}
Context "Providing a valid -OutFile." {
BeforeAll {
$global:testObject = @{ yes = "No"; "arr" = @(1, 2, 3) }
$testPath = [System.IO.Path]::GetTempFileName()
Remove-Item -Force $testPath # must be deleted for the test
}
It "Should succesfully write the expected content to the specified -OutFile." {
$yaml = ConvertTo-Yaml $testObject
ConvertTo-Yaml $testObject -OutFile $testPath
Compare-Object $yaml (Get-Content -Raw $testPath) | Should -Be $null
}
# NOTE: the below assertion relies on the above writing its file.
It "Should succesfully write the expected content to the specified -OutFile with -Force even if it exists." {
$newTestObject = @(1, "two", @("arr", "ay"), @{ yes = "no"; answer = 42 })
$yaml = ConvertTo-Yaml $newTestObject
ConvertTo-Yaml $newTestObject -OutFile $testPath -Force
Compare-Object $yaml (Get-Content -Raw $testPath) | Should -Be $null
}
}
}
Describe "Generic Casting Behaviour" {
Context "Node Style is 'Plain'" {
BeforeAll {
$global:value = @'
T1: 001
'@
}
It 'Should be an int' {
$result = ConvertFrom-Yaml -Yaml $value
$result.T1 | Should -BeOfType System.Int32
}
It 'Should be value of 1' {
$result = ConvertFrom-Yaml -Yaml $value
$result.T1 | Should -Be 1
}
It 'Should not be value of 001' {
$result = ConvertFrom-Yaml -Yaml $value
$result.T1 | Should -Not -Be '001'
}
}
Context "Node Style is 'SingleQuoted'" {
BeforeAll {
$global:value = @'
T1: '001'
'@
}
It 'Should be a string' {
$result = ConvertFrom-Yaml -Yaml $value
$result.T1 | Should -BeOfType System.String
}
It 'Should be value of 001' {
$result = ConvertFrom-Yaml -Yaml $value
$result.T1 | Should -Be '001'
}
It 'Should not be value of 1' {
$result = ConvertFrom-Yaml -Yaml $value
$result.T1 | Should -Not -Be '1'
}
}
Context "Node Style is 'DoubleQuoted'" {
BeforeAll {
$global:value = @'
T1: "001"
'@
}
It 'Should be a string' {
$result = ConvertFrom-Yaml -Yaml $value
$result.T1 | Should -BeOfType System.String
}
It 'Should be value of 001' {
$result = ConvertFrom-Yaml -Yaml $value
$result.T1 | Should -Be '001'
}
It 'Should not be value of 1' {
$result = ConvertFrom-Yaml -Yaml $value
$result.T1 | Should -Not -Be '1'
}
}
}
Describe 'Strings containing other primitives' {
Context 'String contains an int' {
BeforeAll {
$global:value = @{key="1"}
}
It 'Should serialise with double quotes' {
$result = ConvertTo-Yaml $value
$result | Should -Be "key: ""1""$([Environment]::NewLine)"
}
}
Context 'String contains a float' {
BeforeAll {
$global:value = @{key="0.25"}
}
It 'Should serialise with double quotes' {
$result = ConvertTo-Yaml $value
$result | Should -Be "key: ""0.25""$([Environment]::NewLine)"
}
}
Context 'String is "true"' {
BeforeAll {
$global:value = @{key="true"}
}
It 'Should serialise with double quotes' {
$result = ConvertTo-Yaml $value
$result | Should -Be "key: ""true""$([Environment]::NewLine)"
}
}
Context 'String is "false"' {
BeforeAll {
$global:value = @{key="false"}
}
It 'Should serialise with double quotes' {
$result = ConvertTo-Yaml $value
$result | Should -Be "key: ""false""$([Environment]::NewLine)"
}
}
Context 'String is "null"' {
BeforeAll {
$global:value = @{key="null"}
}
It 'Should serialise with double quotes' {
$result = ConvertTo-Yaml $value
$result | Should -Be "key: ""null""$([Environment]::NewLine)"
}
}
Context 'String is "~" (alternative syntax for null)' {
BeforeAll {
$global:value = @{key="~"}
}
It 'Should serialise with double quotes' {
$result = ConvertTo-Yaml $value
$result | Should -Be "key: ""~""$([Environment]::NewLine)"
}
}
Context 'String is empty' {
BeforeAll {
$global:value = @{key=""}
}
It 'Should serialise with double quotes' {
$result = ConvertTo-Yaml $value
$result | Should -Be "key: """"$([Environment]::NewLine)"
}
}
}
Describe 'Numbers are parsed as the smallest type possible' {
BeforeAll {
$global:value = @'
bigInt: 99999999999999999999999999999999999
int32: 2147483647
int64: 9223372036854775807
decimal: 3.10
reallyLongDecimal: 3.9999999999999990
'@
}
It 'Should be a BigInt' {
$result = ConvertFrom-Yaml -Yaml $value
$result.bigInt | Should -BeOfType System.Numerics.BigInteger
}
It "Should round-trip decimals with trailing 0" {
$result = ConvertFrom-Yaml -Yaml $value
$result.decimal | Should -Be ([decimal]3.10)
$result.reallyLongDecimal | Should -Be ([decimal]::Parse("3.9999999999999990", [cultureinfo]::InvariantCulture))
ConvertTo-Yaml $result["decimal"] | Should -Be "3.10$([Environment]::NewLine)"
ConvertTo-Yaml $result["reallyLongDecimal"] | Should -Be "3.9999999999999990$([Environment]::NewLine)"
}
It 'Should be of proper type and value' {
$result = ConvertFrom-Yaml -Yaml $value
$result.bigInt | Should -Be ([System.Numerics.BigInteger]::Parse("99999999999999999999999999999999999"))
$result.int32 | Should -Be ([int32]2147483647)
$result.int64 | Should -Be ([int64]9223372036854775807)
$result.decimal | Should -Be ([decimal]3.10)
}
}
Describe 'PSCustomObjects' {
Context 'Classes with PSCustomObjects' {
It 'Should serialise as a hash' {
$nestedPsO = [PSCustomObject]@{
Nested = 'NestedValue'
}
$nestedHashTable = @{
"aKey" = $nestedPsO
}
$nestedArray = @(
$nestedPsO
)
$PsO = [PSCustomObject]@{
Name = 'Value'
Nested = $nestedPsO
NestedHashTable = $nestedHashTable
NestedArray = $nestedArray
NullValue = $null
}
class TestClass {
[PSCustomObject]$PsO
[string]$Ok
}
$Class = [TestClass]@{
PsO = $PsO
Ok = 'aye'
}
$asYaml = ConvertTo-Yaml $Class
$result = ConvertFrom-Yaml -Yaml $asYaml -Ordered
[System.Collections.Specialized.OrderedDictionary]$ret = [System.Collections.Specialized.OrderedDictionary]::new()
$ret["PsO"] = [System.Collections.Specialized.OrderedDictionary]::new()
$ret["PsO"]["Name"] = "Value"
$ret["PsO"]["Nested"] = [System.Collections.Specialized.OrderedDictionary]::new()
$ret["PsO"]["Nested"]["Nested"] = "NestedValue"
$ret["PsO"]["NestedHashTable"] = [ordered]@{
"aKey" = [ordered]@{