forked from VerifyTests/Verify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SerializationTests.cs
2271 lines (1905 loc) · 55.6 KB
/
SerializationTests.cs
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
#if !NET461
using System.Security.Claims;
#endif
// ReSharper disable UnusedParameter.Local
// ReSharper disable MemberCanBeMadeStatic.Local
// Non-nullable field is uninitialized.
#pragma warning disable CS8618
[UsesVerify]
public class SerializationTests
{
[ModuleInitializer]
public static void Initialize()
{
VerifierSettings.AddExtraDatetimeFormat("F");
VerifierSettings.AddExtraDatetimeOffsetFormat("F");
}
[Fact]
public Task PathInfos()
{
return Verify(
new
{
file = new FileInfo(@"c:/foo\bar.txt"),
directory = new DirectoryInfo(@"c:/foo\bar/")
});
}
class DescendingComparer<T> :
IComparer<T>
where T : IComparable<T>
{
#pragma warning disable 8767
public int Compare(T x, T y)
#pragma warning restore 8767
{
return y.CompareTo(x);
}
}
[Fact]
public Task SortedDictionaryInt()
{
var dictionary = new SortedDictionary<int, string>(new DescendingComparer<int>())
{
{1, "1234"},
{2, "5678"}
};
return Verify(dictionary);
}
[Fact]
public Task SymbolOrdering1()
{
var target = new Dictionary<string, int>
{
{"#", 1},
{"@", 2},
};
return Verify(target);
}
[Fact]
public Task SymbolOrdering2()
{
var target = new Dictionary<string, int>
{
{"@", 2},
{"#", 1},
};
return Verify(target);
}
[Fact]
public Task JObjectOrdering1()
{
var obj = new JObject(
new JProperty("@xmlns", 2),
new JProperty("#text", 1)
);
return Verify(obj);
}
[Fact]
public Task JTokenIgnore()
{
var jToken = JToken.Parse(@"{
Include: 1,
Ignore: 2,
""Memory Info"": {
fragmentedBytes: 208,
heapSizeBytes: 2479536,
highMemoryLoadThresholdBytes: 30821986713,
memoryLoadBytes: 14041127280,
totalAvailableMemoryBytes: 34246651904
}
}");
return Verify(jToken)
.ModifySerialization(_ => _.IgnoreMembers("Ignore", "Memory Info"));
}
[Fact]
public Task JObjectIgnore()
{
var obj = new JObject(
new JProperty("Include", 2),
new JProperty("Ignore", 1)
);
return Verify(obj)
.ModifySerialization(_ => _.IgnoreMember("Ignore"));
}
[Fact]
public Task JObjectOrdering2()
{
var obj = new JObject(
new JProperty("#text", 1),
new JProperty("@xmlns", 2)
);
return Verify(obj);
}
[Fact]
public Task SortedDictionaryOrder()
{
var dictionary = new SortedDictionary<string, string>(new DescendingComparer<string>())
{
{"Entry_1", "1234"},
{"ignored", "1234"},
{"Entry_2", "5678"}
};
return Verify(dictionary)
.ModifySerialization(_ => _.IgnoreMember("ignored"));
}
[Fact]
public Task DictionaryOrderInt()
{
var dictionary = new Dictionary<int, string>();
if (DateTime.UtcNow.Ticks % 2 == 0)
{
dictionary.Add(1, "1234");
dictionary.Add(2, "5678");
}
else
{
dictionary.Add(2, "5678");
dictionary.Add(1, "1234");
}
return Verify(dictionary);
}
public class NonComparableKey
{
string member;
public NonComparableKey(string member)
{
this.member = member;
}
public override string ToString()
{
return member;
}
public override int GetHashCode()
{
return member.GetHashCode();
}
}
[Fact]
public Task DictionaryOrderNonComparable()
{
var dictionary = new Dictionary<NonComparableKey, string>
{
[new("Foo1")] = "Bar",
[new("Foo2")] = "Bar"
};
return Verify(dictionary);
}
[Fact]
public Task DictionaryOrderString()
{
var dictionary = new Dictionary<string, string>
{
{"ignored", "1234"}
};
if (DateTime.UtcNow.Ticks % 2 == 0)
{
dictionary.Add("Entry_1", "1234");
dictionary.Add("Entry_2", "5678");
}
else
{
dictionary.Add("Entry_2", "5678");
dictionary.Add("Entry_1", "1234");
}
return Verify(dictionary)
.ModifySerialization(_ => _.IgnoreMember("ignored"));
}
[Fact]
public Task DatetimeOffsetScrubbingDisabled()
{
return Verify(
new
{
noTime = new DateTimeOffset(new DateTime(2000, 1, 1), TimeSpan.FromHours(1)),
withTime = new DateTimeOffset(new DateTime(2000, 1, 1, 1, 1, 1), TimeSpan.FromHours(1))
})
.ModifySerialization(_ => _.DontScrubDateTimes());
}
[Fact]
public Task DatetimeScrubbingDisabled()
{
return Verify(
new
{
noTime = new DateTime(2000, 1, 1),
withTime = new DateTime(2000, 1, 1, 1, 1, 1)
})
.ModifySerialization(_ => _.DontScrubDateTimes());
}
#if NET6_0_OR_GREATER
#region AddExtraSettings
[Fact]
public Task AddExtraSettings()
{
var target = new DateOnly(2000, 1, 1);
var verifySettings = new VerifySettings();
verifySettings.ModifySerialization(settings =>
settings.AddExtraSettings(serializerSettings =>
serializerSettings.DefaultValueHandling = DefaultValueHandling.Include));
return Verify(target, verifySettings);
}
#endregion
#region AddExtraSettingsFluent
[Fact]
public Task AddExtraSettingsFluent()
{
var target = new DateOnly(2000, 1, 1);
return Verify(target)
.ModifySerialization(settings =>
settings.AddExtraSettings(serializerSettings =>
serializerSettings.DefaultValueHandling = DefaultValueHandling.Include));
}
#endregion
#endif
void AddExtraSettingsGlobal()
{
#region AddExtraSettingsGlobal
VerifierSettings.ModifySerialization(settings =>
settings.AddExtraSettings(serializerSettings =>
serializerSettings.TypeNameHandling = TypeNameHandling.All));
#endregion
}
#region TreatAsNumericId
[Fact]
public Task TreatAsNumericId()
{
var target = new IdConventionTarget
{
TheProperty = 5
};
return Verify(target)
.ModifySerialization(
settings => settings.TreatAsNumericId(
member => member.Name == "TheProperty"));
}
#endregion
//TOFO: move to diff project
//[Fact]
public Task TreatAsNumericIdGlobal()
{
#region TreatAsNumericIdGlobal
VerifierSettings.ModifySerialization(
settings => settings.TreatAsNumericId(
member => member.Name == "TheProperty"));
#endregion
var target = new IdConventionTarget
{
TheProperty = 5
};
return Verify(target);
}
public class IdConventionTarget
{
public int TheProperty { get; set; }
}
//TODO: move to diff project
public Task NumericIdScrubbingDisabledGlobal()
{
#region DisableNumericIdGlobal
VerifierSettings.ModifySerialization(_ => _.DontScrubNumericIds());
#endregion
return Verify(
new
{
Id = 5,
OtherId = 5,
YetAnotherId = 4,
PossibleNullId = (int?) 5,
ActualNullId = (int?) null
});
}
#region DisableNumericId
[Fact]
public Task NumericIdScrubbingDisabled()
{
var target = new
{
Id = 5,
OtherId = 5,
YetAnotherId = 4,
PossibleNullId = (int?) 5,
ActualNullId = (int?) null
};
return Verify(target)
.ModifySerialization(_ => _.DontScrubNumericIds());
}
#endregion
#region NumericId
[Fact]
public Task NumericIdScrubbing()
{
var target = new
{
Id = 5,
OtherId = 5,
YetAnotherId = 4,
PossibleNullId = (int?) 5,
ActualNullId = (int?) null
};
return Verify(target);
}
#endregion
[Fact]
public void SettingsIsCloned()
{
var settings = new SerializationSettings();
var ignoredMemberList = new List<string>();
settings.ignoredMembers.Add(GetType(), ignoredMemberList);
var ignoredInstances = new List<Func<object, bool>>();
settings.ignoredInstances.Add(GetType(), ignoredInstances);
settings.ignoredByNameMembers.Add("ignored");
var clone = new SerializationSettings(settings);
Assert.NotSame(settings, clone);
Assert.NotSame(settings.ignoredMembers, clone.ignoredMembers);
Assert.NotSame(settings.ignoredMembers.First().Value, clone.ignoredMembers.First().Value);
Assert.NotSame(settings.ignoredInstances, clone.ignoredInstances);
Assert.NotSame(settings.ignoredInstances.First().Value, clone.ignoredInstances.First().Value);
Assert.NotSame(settings.ignoredByNameMembers, clone.ignoredByNameMembers);
}
[Fact]
public async Task GuidScrubbingDisabled()
{
var target = Guid.Parse("b6993f86-c1b9-44db-bfc5-33ed9e5c048e");
#region DontScrubGuids
var settings = new VerifySettings();
settings.ModifySerialization(_ => _.DontScrubGuids());
await Verify(target, settings);
#endregion
}
[Fact]
public async Task GuidScrubbingDisabledFluent()
{
var target = Guid.Parse("b6993f86-c1b9-44db-bfc5-33ed9e5c048e");
#region DontScrubGuidsFluent
await Verify(target)
.ModifySerialization(_ => _.DontScrubGuids());
#endregion
}
[Fact]
public Task GuidScrubbingDisabledNested()
{
return Verify(
new
{
value = Guid.Parse("b6993f86-c1b9-44db-bfc5-33ed9e5c048e")
})
.ModifySerialization(_ => _.DontScrubGuids());
}
[Fact]
public Task ScrubberWithBadNewLine()
{
return Verify("a")
.AddScrubber(s =>
{
s.AppendLine("b");
s.AppendLine("c");
});
}
[Fact]
public Task ExtensionAwareScrubbers()
{
var settings = new VerifySettings();
settings.UseExtension("html");
settings.AddScrubber("html", builder => builder.Replace("a", "b"));
return Verify("a", settings);
}
[Fact]
public Task NameValueCollection()
{
return Verify(
new
{
item1 = new NameValueCollection {{null, null}},
item2 = new NameValueCollection {{"key", null}},
item3 = new NameValueCollection {{null, "value"}},
item4 = new NameValueCollection {{"key", "value"}},
item5 = new NameValueCollection {{"key", "value1"}, {"key", "value2"}},
item6 = new NameValueCollection {{"key", null}, {"key", "value2"}},
item7 = new NameValueCollection {{"key", "value1"}, {"key", null}},
item8 = new NameValueCollection {{"key1", "value1"}, {"key2", "value2"}},
});
}
[Fact]
public Task Timespan()
{
return Verify(
new
{
timespan = TimeSpan.FromDays(1)
});
}
[Fact]
public Task EmptyDictionaryProperty()
{
return Verify(new
{
property = new Dictionary<string, string>()
});
}
[Fact]
public Task ByteArray()
{
return Verify(
new
{
bytes = new byte[] {1}
});
}
[Fact]
public Task ExampleNonDefaults()
{
var person = new Person
{
Id = new("ebced679-45d3-4653-8791-3d969c4a986c"),
Title = Title.Mr,
GivenNames = "John",
FamilyName = "Smith",
Spouse = "Jill",
Children = new() {"Sam", "Mary"},
Address = new()
{
Street = "1 Puddle Lane",
Country = "USA"
}
};
var settings = new VerifySettings();
settings.ModifySerialization(_ =>
{
_.DontScrubDateTimes();
_.DontIgnoreFalse();
_.DontScrubGuids();
_.DontIgnoreEmptyCollections();
});
settings.AddScrubber(s => s.Replace("Lane", "Street"));
return Verify(person, settings);
}
[Theory]
[MemberData(nameof(GetBoolData))]
public Task Bools(bool boolean, bool? nullableBoolean, bool dontIgnoreFalse, bool includeDefault)
{
var target = new BoolModel
{
BoolMember = boolean,
NullableBoolMember = nullableBoolean
};
var settings = new VerifySettings();
settings.UseParameters(boolean, nullableBoolean, dontIgnoreFalse, includeDefault);
settings.ModifySerialization(serialization =>
{
if (dontIgnoreFalse)
{
serialization.DontIgnoreFalse();
}
if (includeDefault)
{
serialization.AddExtraSettings(serializerSettings => serializerSettings.DefaultValueHandling = DefaultValueHandling.Include);
}
});
return Verify(target, settings);
}
public static IEnumerable<object?[]> GetBoolData()
{
foreach (var boolean in new[] {true, false})
foreach (var nullableBoolean in new bool?[] {true, false, null})
foreach (var dontIgnoreFalse in new[] {true, false})
foreach (var includeDefault in new[] {true, false})
{
yield return new object?[]
{
boolean,
nullableBoolean,
dontIgnoreFalse,
includeDefault
};
}
}
class BoolModel
{
public bool BoolMember;
public bool? NullableBoolMember;
}
[Fact]
public Task TypeNameHandlingAll()
{
var person = new Person
{
Id = Guid.NewGuid(),
Title = Title.Mr,
GivenNames = "John",
FamilyName = "Smith",
Spouse = "Jill",
Children = new() {"Sam", "Mary"},
Address = new()
{
Street = "1 Puddle Lane",
Country = "USA"
}
};
return Verify(person)
.AddExtraSettings(_ => _.TypeNameHandling = TypeNameHandling.All);
}
#if NET6_0_OR_GREATER
[Fact]
public Task TimeOnlyNested()
{
return Verify(new { value = new TimeOnly(10, 10) });
}
[Fact]
public Task ShouldIgnoreDatetimeDefaults()
{
var target = new DateTimeTarget();
return Verify(target);
}
[Fact]
public async Task ShouldReUseDatetime()
{
#region Date
var dateTime = DateTime.Now;
var dateTimeOffset = DateTimeOffset.Now;
var target = new DateTimeTarget
{
DateTime = dateTime,
DateOnly = new(dateTime.Year, dateTime.Month, dateTime.Day),
DateOnlyNullable = new(dateTime.Year, dateTime.Month, dateTime.Day),
DateOnlyString = new DateOnly(dateTime.Year, dateTime.Month, dateTime.Day).ToString(),
DateTimeNullable = dateTime,
DateTimeString = dateTime.ToString("F"),
DateTimeOffset = dateTimeOffset,
DateTimeOffsetNullable = dateTimeOffset,
DateTimeOffsetString = dateTimeOffset.ToString("F"),
};
await Verify(target);
#endregion
}
[Fact]
public async Task DatetimeMin()
{
var dateTime = DateTime.MinValue;
var dateTimeOffset = DateTimeOffset.MinValue;
var target = new DateTimeTarget
{
DateTime = dateTime,
DateOnly = DateOnly.MinValue,
DateOnlyNullable = DateOnly.MinValue,
DateOnlyString = DateOnly.MinValue.ToString(),
DateTimeNullable = dateTime,
DateTimeString = dateTime.ToString("F"),
DateTimeOffset = dateTimeOffset,
DateTimeOffsetNullable = dateTimeOffset,
DateTimeOffsetString = dateTimeOffset.ToString("F"),
};
await Verify(target);
}
[Fact]
public async Task DatetimeMax()
{
var dateTime = DateTime.MaxValue;
var dateTimeOffset = DateTimeOffset.MaxValue;
var target = new DateTimeTarget
{
DateTime = dateTime,
DateOnly = DateOnly.MaxValue,
DateOnlyNullable = DateOnly.MaxValue,
DateOnlyString = DateOnly.MaxValue.ToString(),
DateTimeNullable = dateTime,
DateTimeString = dateTime.ToString("yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK"),
DateTimeOffset = dateTimeOffset,
DateTimeOffsetNullable = dateTimeOffset,
DateTimeOffsetString = dateTimeOffset.ToString("yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK"),
};
await Verify(target);
}
[Fact]
public Task ShouldScrubDatetime()
{
var dateTime = DateTime.Now;
var dateTimeOffset = DateTimeOffset.Now;
var target = new DateTimeTarget
{
DateTime = dateTime,
DateTimeNullable = dateTime.AddDays(1),
DateTimeString = dateTime.AddDays(2).ToString("F"),
DateTimeOffset = dateTimeOffset,
DateTimeOffsetNullable = dateTimeOffset.AddDays(1),
DateTimeOffsetString = dateTimeOffset.AddDays(2).ToString("F"),
DateOnly = new(2020, 10, 10),
DateOnlyNullable = new(2020, 10, 12),
DateOnlyString = new DateOnly(2020, 10, 12).ToString()
};
return Verify(target);
}
class DateTimeTarget
{
public DateTime DateTime;
public DateTime? DateTimeNullable;
public DateOnly DateOnly;
public DateOnly? DateOnlyNullable;
public DateTimeOffset DateTimeOffset;
public DateTimeOffset? DateTimeOffsetNullable;
public string DateTimeString;
public string DateTimeOffsetString;
public string DateOnlyString;
}
#endif
[Fact]
public Task VerifyBytes()
{
return Verify(File.ReadAllBytes("sample.jpg"))
.UseExtension("jpg");
}
[Fact]
public Task ShouldNotScrubInlineGuidsByDefault()
{
var id = new Guid("ebced679-45d3-4653-8791-3d969c4a986c");
var product = new
{
Title = $"item {id} - (ID={{{id}}})",
Variant = new
{
Id = "variant id: " + id
}
};
return Verify(product);
}
[Fact]
public Task ShouldBeAbleToExcludeInlineGuidsInString()
{
var id = Guid.NewGuid();
return Verify($"The string {id} ")
.ScrubInlineGuids();
}
[Fact]
public Task ShouldBeAbleToExcludeInlineGuidsWrappedInSymbols()
{
var id = Guid.NewGuid();
return Verify($"({id})")
.ScrubInlineGuids();
}
[Fact]
public Task ShouldNotExcludeInlineGuidsWrappedInDash()
{
return Verify("-087ea433-d83b-40b6-9e37-465211d9508-")
.ScrubInlineGuids();
}
[Fact]
public Task ShouldNotExcludeInlineGuidsWrappedInLetters()
{
return Verify("before087ea433-d83b-40b6-9e37-465211d9508cafter")
.ScrubInlineGuids();
}
[Fact]
public Task ShouldNotExcludeInlineGuidsWrappedInNumber()
{
return Verify("1087ea433-d83b-40b6-9e37-465211d95081")
.ScrubInlineGuids();
}
[Fact]
public Task ShouldBeAbleToExcludeInlineGuids()
{
var id = Guid.NewGuid();
var product = new
{
Title = $"item {id} - (ID={{{id}}})",
Variant = new
{
Id = "variant id: " + id
}
};
return Verify(product)
.ScrubInlineGuids();
}
void DontIgnoreEmptyCollections()
{
#region DontIgnoreEmptyCollections
VerifierSettings.ModifySerialization(_ => _.DontIgnoreEmptyCollections());
#endregion
}
void DontScrubGuids()
{
#region DontScrubGuidsGlobal
VerifierSettings.ModifySerialization(_ => _.DontScrubGuids());
#endregion
}
void DontScrubProjectDirectory()
{
#region DontScrubProjectDirectory
VerifierSettings.DontScrubProjectDirectory();
#endregion
}
void DontScrubSolutionDirectory()
{
#region DontScrubSolutionDirectory
VerifierSettings.DontScrubSolutionDirectory();
#endregion
}
void ScrubInlineGuids()
{
#region ScrubInlineGuids
VerifierSettings.ScrubInlineGuids();
#endregion
}
[Fact]
public Task ThrowForDateFormatHandling()
{
return ThrowsTask(
() => Verify("foo")
.AddExtraSettings(_ => _.DateFormatHandling = DateFormatHandling.MicrosoftDateFormat))
.IgnoreStackTrack();
}
[Fact]
public Task ThrowForDateTimeZoneHandling()
{
return ThrowsTask(
() => Verify("foo")
.AddExtraSettings(_ => _.DateTimeZoneHandling = DateTimeZoneHandling.Unspecified))
.IgnoreStackTrack();
}
[Fact]
public Task ThrowForDateFormatString()
{
return ThrowsTask(
() => Verify("foo")
.AddExtraSettings(_ => _.DateFormatString = "DateFormatHandling.MicrosoftDateFormat"))
.IgnoreStackTrack();
}
Task DontScrubDateTimes()
{
#region DontScrubDateTimes
var target = new
{
Date = DateTime.Now
};
var settings = new VerifySettings();
settings.ModifySerialization(_ => _.DontScrubDateTimes());
return Verify(target, settings);
#endregion
}
Task DontScrubDateTimesFluent()
{
#region DontScrubDateTimesFluent
var target = new
{
Date = DateTime.Now
};
return Verify(target)
.ModifySerialization(_ => _.DontScrubDateTimes());
#endregion
}
void DontScrubDateTimesGlobal()
{
#region DontScrubDateTimesGlobal
VerifierSettings.ModifySerialization(_ => _.DontScrubDateTimes());
#endregion
}
void DontIgnoreFalseGlobal()
{
#region DontIgnoreFalse
VerifierSettings.ModifySerialization(_ => _.DontIgnoreFalse());
#endregion
}
[Fact]
public Task NewLineNotEscapedInProperty()
{
return Verify(new {Property = "a\r\nb\\nc"});
}
void List()
{
var verifySettings = new VerifySettings();
#region ScrubLines
verifySettings.ScrubLines(line => line.Contains("text"));
#endregion
#region ScrubLinesContaining
verifySettings.ScrubLinesContaining("text1", "text2");
#endregion
#region ScrubLinesContainingOrdinal
verifySettings.ScrubLinesContaining(StringComparison.Ordinal, "text1", "text2");
#endregion
#region ScrubLinesWithReplace
verifySettings.ScrubLinesWithReplace(line => line.ToUpper());
#endregion
#region ScrubMachineName
verifySettings.ScrubMachineName();
#endregion
#region AddScrubber
verifySettings.AddScrubber(fullText => fullText.Remove(0, 100));
#endregion
}
[Fact]
public Task ScrubTempPath()
{
var tempPath = Path.GetTempPath().TrimEnd('/', '\\');
var altTempPath = tempPath.Replace(Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar);
return Verify(new
{
tempPath,
altTempPath,
tempPathTrailing = tempPath + Path.DirectorySeparatorChar,
altTempPathTrailing = altTempPath + Path.AltDirectorySeparatorChar
});
}
[Fact]
public Task ScrubCurrentDirectory()
{