-
-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathDictionaryCollectionTests.cs
More file actions
1062 lines (878 loc) · 30.5 KB
/
Copy pathDictionaryCollectionTests.cs
File metadata and controls
1062 lines (878 loc) · 30.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
namespace TUnit.Assertions.Tests;
/// <summary>
/// Tests to verify that dictionaries now behave as collections of KeyValuePair items,
/// inheriting all collection assertion methods while maintaining dictionary-specific methods.
/// </summary>
public class DictionaryCollectionTests
{
[Test]
public async Task Dictionary_IsEmpty_Works()
{
var dictionary = new Dictionary<string, int>();
await Assert.That(dictionary).IsEmpty();
}
[Test]
public async Task Dictionary_IsNotEmpty_Works()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 1
};
await Assert.That(dictionary).IsNotEmpty();
}
[Test]
public async Task Dictionary_HasCount_Works()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 1,
["key2"] = 2,
["key3"] = 3
};
await Assert.That(dictionary).Count().IsEqualTo(3);
}
[Test]
public async Task Dictionary_Contains_KeyValuePair_Works()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 1,
["key2"] = 2
};
await Assert.That(dictionary).Contains(new KeyValuePair<string, int>("key1", 1));
}
[Test]
public async Task Dictionary_Contains_Predicate_Works()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 1,
["key2"] = 2,
["key3"] = 3
};
await Assert.That(dictionary).Contains(kvp => kvp.Key == "key2" && kvp.Value == 2);
}
[Test]
public async Task Dictionary_All_Works()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 1,
["key2"] = 2,
["key3"] = 3
};
await Assert.That(dictionary).All(kvp => kvp.Value > 0);
}
[Test]
public async Task Dictionary_Any_Works()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 1,
["key2"] = 2,
["key3"] = 3
};
await Assert.That(dictionary).Any(kvp => kvp.Value == 2);
}
[Test]
public async Task Dictionary_ContainsKey_StillWorks()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 1
};
// Dictionary-specific method should still work
await Assert.That(dictionary).ContainsKey("key1");
}
[Test]
public async Task Dictionary_DoesNotContainKey_StillWorks()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 1
};
// Dictionary-specific method should still work
await Assert.That(dictionary).DoesNotContainKey("key2");
}
[Test]
public async Task Dictionary_And_Chain_Preserves_Type()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 1,
["key2"] = 2
};
// Dictionary methods can chain with other dictionary methods
await Assert.That(dictionary)
.ContainsKey("key1")
.And.ContainsKey("key2");
// Collection methods work on dictionaries
await Assert.That(dictionary)
.IsNotEmpty()
.And.Count().IsEqualTo(2)
.And.Contains(new KeyValuePair<string, int>("key2", 2));
}
[Test]
public async Task Dictionary_Or_Chain_Works()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 1
};
await Assert.That(dictionary)
.ContainsKey("nonexistent")
.Or.ContainsKey("key1");
}
[Test]
public async Task IReadOnlyDictionary_Collection_Methods_Work()
{
IReadOnlyDictionary<string, int> dictionary = new Dictionary<string, int>
{
["key1"] = 1,
["key2"] = 2
};
// Collection methods work on IReadOnlyDictionary
await Assert.That(dictionary)
.IsNotEmpty()
.And.Count().IsEqualTo(2);
// Dictionary-specific methods also work
await Assert.That(dictionary)
.ContainsKey("key1");
}
[Test]
public async Task Dictionary_IsEquivalentTo_Works()
{
var dictionary1 = new Dictionary<string, int>
{
["key1"] = 1,
["key2"] = 2
};
var dictionary2 = new Dictionary<string, int>
{
["key2"] = 2,
["key1"] = 1
};
// IsEquivalentTo works on collections regardless of order
// Cast both to IEnumerable to use collection equivalency
await Assert.That((IEnumerable<KeyValuePair<string, int>>)dictionary1)
.IsEquivalentTo(dictionary2);
}
[Test]
public async Task Dictionary_HasDistinctItems_Works()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 1,
["key2"] = 2,
["key3"] = 1 // Same value, different key - still distinct KeyValuePairs
};
await Assert.That(dictionary).HasDistinctItems();
}
// ===================================
// ContainsValue Tests
// ===================================
[Test]
public async Task Dictionary_ContainsValue_Passes_When_Value_Exists()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 100,
["key2"] = 200,
["key3"] = 300
};
await Assert.That(dictionary).ContainsValue(200);
}
[Test]
public async Task Dictionary_ContainsValue_Fails_When_Value_Not_Found()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 100
};
var exception = await Assert.ThrowsAsync<TUnit.Assertions.Exceptions.AssertionException>(
async () => await Assert.That(dictionary).ContainsValue(999));
await Assert.That(exception.Message).Contains("contain value");
}
[Test]
public async Task Dictionary_DoesNotContainValue_Passes_When_Value_Not_Exists()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 100
};
await Assert.That(dictionary).DoesNotContainValue(999);
}
[Test]
public async Task Dictionary_DoesNotContainValue_Fails_When_Value_Exists()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 100,
["key2"] = 200
};
var exception = await Assert.ThrowsAsync<TUnit.Assertions.Exceptions.AssertionException>(
async () => await Assert.That(dictionary).DoesNotContainValue(100));
await Assert.That(exception.Message).Contains("not contain value");
}
// ===================================
// ContainsKeyWithValue Tests
// ===================================
[Test]
public async Task Dictionary_ContainsKeyWithValue_Passes_When_Match()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 100,
["key2"] = 200
};
await Assert.That(dictionary).ContainsKeyWithValue("key2", 200);
}
[Test]
public async Task Dictionary_ContainsKeyWithValue_Fails_When_Key_Not_Found()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 100
};
var exception = await Assert.ThrowsAsync<TUnit.Assertions.Exceptions.AssertionException>(
async () => await Assert.That(dictionary).ContainsKeyWithValue("nonexistent", 100));
await Assert.That(exception.Message).Contains("key");
}
[Test]
public async Task Dictionary_ContainsKeyWithValue_Fails_When_Value_Different()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 100
};
var exception = await Assert.ThrowsAsync<TUnit.Assertions.Exceptions.AssertionException>(
async () => await Assert.That(dictionary).ContainsKeyWithValue("key1", 999));
await Assert.That(exception.Message).Contains("value");
}
// ===================================
// AllKeys Tests
// ===================================
[Test]
public async Task Dictionary_AllKeys_Passes_When_All_Match()
{
var dictionary = new Dictionary<string, int>
{
["prefix_a"] = 1,
["prefix_b"] = 2,
["prefix_c"] = 3
};
await Assert.That(dictionary).AllKeys(key => key.StartsWith("prefix_"));
}
[Test]
public async Task Dictionary_AllKeys_Fails_When_Some_Dont_Match()
{
var dictionary = new Dictionary<string, int>
{
["prefix_a"] = 1,
["other_b"] = 2 // Doesn't start with "prefix_"
};
var exception = await Assert.ThrowsAsync<TUnit.Assertions.Exceptions.AssertionException>(
async () => await Assert.That(dictionary).AllKeys(key => key.StartsWith("prefix_")));
await Assert.That(exception.Message).Contains("all keys");
}
// ===================================
// AllValues Tests
// ===================================
[Test]
public async Task Dictionary_AllValues_Passes_When_All_Match()
{
var dictionary = new Dictionary<string, int>
{
["a"] = 10,
["b"] = 20,
["c"] = 30
};
await Assert.That(dictionary).AllValues(val => val > 0);
}
[Test]
public async Task Dictionary_AllValues_Fails_When_Some_Dont_Match()
{
var dictionary = new Dictionary<string, int>
{
["a"] = 10,
["b"] = -5 // Negative
};
var exception = await Assert.ThrowsAsync<TUnit.Assertions.Exceptions.AssertionException>(
async () => await Assert.That(dictionary).AllValues(val => val > 0));
await Assert.That(exception.Message).Contains("all values");
}
// ===================================
// AnyKey Tests
// ===================================
[Test]
public async Task Dictionary_AnyKey_Passes_When_At_Least_One_Matches()
{
var dictionary = new Dictionary<string, int>
{
["first"] = 1,
["special_key"] = 2,
["last"] = 3
};
await Assert.That(dictionary).AnyKey(key => key.Contains("special"));
}
[Test]
public async Task Dictionary_AnyKey_Fails_When_None_Match()
{
var dictionary = new Dictionary<string, int>
{
["first"] = 1,
["second"] = 2
};
var exception = await Assert.ThrowsAsync<TUnit.Assertions.Exceptions.AssertionException>(
async () => await Assert.That(dictionary).AnyKey(key => key.Contains("special")));
await Assert.That(exception.Message).Contains("any key");
}
// ===================================
// AnyValue Tests
// ===================================
[Test]
public async Task Dictionary_AnyValue_Passes_When_At_Least_One_Matches()
{
var dictionary = new Dictionary<string, int>
{
["a"] = 1,
["b"] = 100,
["c"] = 3
};
await Assert.That(dictionary).AnyValue(val => val >= 100);
}
[Test]
public async Task Dictionary_AnyValue_Fails_When_None_Match()
{
var dictionary = new Dictionary<string, int>
{
["a"] = 1,
["b"] = 2
};
var exception = await Assert.ThrowsAsync<TUnit.Assertions.Exceptions.AssertionException>(
async () => await Assert.That(dictionary).AnyValue(val => val >= 100));
await Assert.That(exception.Message).Contains("any value");
}
// ===================================
// Chaining with new methods
// ===================================
[Test]
public async Task Dictionary_Chain_New_Methods()
{
var dictionary = new Dictionary<string, int>
{
["key1"] = 100,
["key2"] = 200,
["key3"] = 300
};
await Assert.That(dictionary)
.ContainsKey("key1")
.And.ContainsValue(200)
.And.AllValues(v => v > 0);
}
[Test]
public async Task Dictionary_ContainsKey_With_Custom_Comparer()
{
var dictionary = new Dictionary<string, int>
{
["Hello"] = 1
};
// Using custom comparer for case-insensitive matching
await Assert.That(dictionary)
.ContainsKey("HELLO", StringComparer.OrdinalIgnoreCase);
}
// ===================================
// IDictionary<TKey, TValue> Tests
// ===================================
[Test]
public async Task IDictionary_ContainsKey_Works()
{
IDictionary<string, int> dictionary = new Dictionary<string, int>
{
["key1"] = 1,
["key2"] = 2
};
await Assert.That(dictionary).ContainsKey("key1");
}
[Test]
public async Task IDictionary_DoesNotContainKey_Works()
{
IDictionary<string, int> dictionary = new Dictionary<string, int>
{
["key1"] = 1
};
await Assert.That(dictionary).DoesNotContainKey("nonexistent");
}
[Test]
public async Task IDictionary_ContainsValue_Works()
{
IDictionary<string, int> dictionary = new Dictionary<string, int>
{
["key1"] = 100,
["key2"] = 200
};
await Assert.That(dictionary).ContainsValue(200);
}
[Test]
public async Task IDictionary_DoesNotContainValue_Works()
{
IDictionary<string, int> dictionary = new Dictionary<string, int>
{
["key1"] = 100
};
await Assert.That(dictionary).DoesNotContainValue(999);
}
[Test]
public async Task IDictionary_ContainsKeyWithValue_Works()
{
IDictionary<string, int> dictionary = new Dictionary<string, int>
{
["key1"] = 100,
["key2"] = 200
};
await Assert.That(dictionary).ContainsKeyWithValue("key2", 200);
}
[Test]
public async Task IDictionary_AllKeys_Works()
{
IDictionary<string, int> dictionary = new Dictionary<string, int>
{
["prefix_a"] = 1,
["prefix_b"] = 2
};
await Assert.That(dictionary).AllKeys(k => k.StartsWith("prefix_"));
}
[Test]
public async Task IDictionary_AllValues_Works()
{
IDictionary<string, int> dictionary = new Dictionary<string, int>
{
["a"] = 10,
["b"] = 20
};
await Assert.That(dictionary).AllValues(v => v > 0);
}
[Test]
public async Task IDictionary_AnyKey_Works()
{
IDictionary<string, int> dictionary = new Dictionary<string, int>
{
["first"] = 1,
["special"] = 2
};
await Assert.That(dictionary).AnyKey(k => k == "special");
}
[Test]
public async Task IDictionary_AnyValue_Works()
{
IDictionary<string, int> dictionary = new Dictionary<string, int>
{
["a"] = 1,
["b"] = 100
};
await Assert.That(dictionary).AnyValue(v => v >= 100);
}
[Test]
public async Task IDictionary_And_Chain_Works()
{
IDictionary<string, int> dictionary = new Dictionary<string, int>
{
["key1"] = 100,
["key2"] = 200
};
await Assert.That(dictionary)
.ContainsKey("key1")
.And.ContainsValue(200)
.And.AllValues(v => v > 0);
}
[Test]
public async Task IDictionary_Or_Chain_Works()
{
IDictionary<string, int> dictionary = new Dictionary<string, int>
{
["key1"] = 100
};
await Assert.That(dictionary)
.ContainsKey("nonexistent")
.Or.ContainsKey("key1");
}
[Test]
public async Task IDictionary_Collection_Methods_Work()
{
IDictionary<string, int> dictionary = new Dictionary<string, int>
{
["key1"] = 1,
["key2"] = 2
};
// IDictionary should also have access to collection methods
await Assert.That(dictionary)
.IsNotEmpty()
.And.Count().IsEqualTo(2);
}
[Test]
public async Task IDictionary_ContainsKey_With_Custom_Comparer()
{
IDictionary<string, int> dictionary = new Dictionary<string, int>
{
["Hello"] = 1
};
await Assert.That(dictionary)
.ContainsKey("HELLO", StringComparer.OrdinalIgnoreCase);
}
[Test]
public async Task Dictionary_ContainsKey_And_Value_IsEqualTo_Passes()
{
var dictionary = new Dictionary<string, long>
{
["Key"] = 1234L
};
await Assert.That(dictionary).ContainsKey("Key").And.Value.IsEqualTo(1234L);
}
[Test]
public async Task Dictionary_ContainsKey_And_Value_IsEqualTo_Fails_When_Value_Different()
{
var dictionary = new Dictionary<string, long>
{
["Key"] = 1234L
};
var exception = await Assert.ThrowsAsync<TUnit.Assertions.Exceptions.AssertionException>(
async () => await Assert.That(dictionary).ContainsKey("Key").And.Value.IsEqualTo(9999L));
await Assert.That(exception.Message).Contains("1234");
}
[Test]
public async Task Dictionary_ContainsKey_And_Value_Fails_When_Key_Missing()
{
var dictionary = new Dictionary<string, long>
{
["Key"] = 1234L
};
var exception = await Assert.ThrowsAsync<TUnit.Assertions.Exceptions.AssertionException>(
async () => await Assert.That(dictionary).ContainsKey("Missing").And.Value.IsEqualTo(1234L));
// The ContainsKey check runs first (pre-work), so a missing key fails with the
// standard "contain key" message rather than a raw KeyNotFoundException.
await Assert.That(exception.Message).Contains("contain key");
}
[Test]
public async Task Dictionary_ContainsKey_And_Value_Member()
{
var dictionary = new Dictionary<string, Holder>
{
["Key"] = new Holder(1234L)
};
await Assert.That(dictionary)
.ContainsKey("Key").And.Value.Member(x => x.Inner, p => p.IsEqualTo(1234L));
}
[Test]
public async Task Dictionary_ContainsKey_And_Value_Supports_Other_Assertions()
{
var dictionary = new Dictionary<string, long>
{
["Key"] = 1234L
};
await Assert.That(dictionary).ContainsKey("Key").And.Value.IsGreaterThan(1000L);
await Assert.That(dictionary).ContainsKey("Key").And.Value.IsNotEqualTo(0L);
}
[Test]
public async Task Dictionary_ContainsKey_And_Value_Then_Value_Level_And()
{
var dictionary = new Dictionary<string, long>
{
["Key"] = 1234L
};
await Assert.That(dictionary)
.ContainsKey("Key").And.Value.IsGreaterThan(1000L).And.IsLessThan(2000L);
}
[Test]
public async Task Dictionary_And_Value_Still_Allows_Dictionary_Chaining()
{
var dictionary = new Dictionary<string, long>
{
["Key"] = 1234L,
["Other"] = 1L
};
// The And continuation still exposes the regular dictionary methods.
await Assert.That(dictionary).ContainsKey("Key").And.ContainsKey("Other");
}
[Test]
public async Task Dictionary_LongerChain_Then_Value()
{
var dictionary = new Dictionary<string, long>
{
["First"] = 1L,
["Key"] = 1234L
};
// Earlier assertions in the chain run as pre-work before the value is read.
await Assert.That(dictionary)
.ContainsKey("First").And.ContainsKey("Key").And.Value.IsEqualTo(1234L);
}
[Test]
public async Task Dictionary_ContainsKey_With_Comparer_And_Value()
{
var dictionary = new Dictionary<string, long>
{
["Hello"] = 1234L
};
await Assert.That(dictionary)
.ContainsKey("HELLO", StringComparer.OrdinalIgnoreCase).And.Value.IsEqualTo(1234L);
}
[Test]
public async Task IReadOnlyDictionary_ContainsKey_And_Value_IsEqualTo()
{
IReadOnlyDictionary<string, long> dictionary = new Dictionary<string, long>
{
["Key"] = 1234L
};
await Assert.That(dictionary).ContainsKey("Key").And.Value.IsEqualTo(1234L);
}
[Test]
public async Task IDictionary_ContainsKey_And_Value_IsEqualTo()
{
IDictionary<string, long> dictionary = new Dictionary<string, long>
{
["Key"] = 1234L
};
await Assert.That(dictionary).ContainsKey("Key").And.Value.IsEqualTo(1234L);
}
// ── Collection-typed value drill-in (issue #6185 follow-up) ───────────────────────
// When the dictionary value is itself a collection, .Value must expose the collection
// surface (Count/Contains/IsEmpty/…) rather than binding to LINQ's Enumerable.Count (CS0411).
[Test]
public async Task Dictionary_ContainsKey_And_Value_Count_When_Value_Is_Collection()
{
IDictionary<string, IEnumerable<int>> dictionary = new Dictionary<string, IEnumerable<int>>
{
["Key"] = new[] { 1, 2 }
};
await Assert.That(dictionary).ContainsKey("Key").And.Value.Count().IsEqualTo(2);
}
[Test]
public async Task IReadOnlyDictionary_ContainsKey_And_Value_Count_When_Value_Is_Collection()
{
IReadOnlyDictionary<string, IEnumerable<string>> dictionary = new Dictionary<string, IEnumerable<string>>
{
["Key"] = new[] { "a", "b", "c" }
};
await Assert.That(dictionary).ContainsKey("Key").And.Value.Count().IsGreaterThan(2);
}
[Test]
public async Task Dictionary_ContainsKey_And_Value_Collection_Contains_And_IsNotEmpty()
{
IDictionary<string, IEnumerable<int>> dictionary = new Dictionary<string, IEnumerable<int>>
{
["Key"] = new[] { 10, 20, 30 }
};
await Assert.That(dictionary).ContainsKey("Key").And.Value.Contains(20);
await Assert.That(dictionary).ContainsKey("Key").And.Value.IsNotEmpty();
}
[Test]
public async Task Dictionary_ContainsKey_And_Value_Collection_Count_Fails_With_Count_Message()
{
IDictionary<string, IEnumerable<int>> dictionary = new Dictionary<string, IEnumerable<int>>
{
["Key"] = new[] { 1, 2 }
};
var exception = await Assert.ThrowsAsync<TUnit.Assertions.Exceptions.AssertionException>(
async () => await Assert.That(dictionary).ContainsKey("Key").And.Value.Count().IsEqualTo(5));
await Assert.That(exception.Message).Contains("count");
}
[Test]
public async Task Dictionary_ContainsKey_And_Value_Collection_Fails_When_Key_Missing()
{
IDictionary<string, IEnumerable<int>> dictionary = new Dictionary<string, IEnumerable<int>>
{
["Key"] = new[] { 1, 2 }
};
// The ContainsKey pre-work still runs first, so a missing key fails with the
// standard "contain key" message rather than reading the (absent) collection.
var exception = await Assert.ThrowsAsync<TUnit.Assertions.Exceptions.AssertionException>(
async () => await Assert.That(dictionary).ContainsKey("Missing").And.Value.Count().IsEqualTo(2));
await Assert.That(exception.Message).Contains("contain key");
}
[Test]
public async Task Dictionary_ContainsKey_And_Value_List_HasItemAt()
{
IDictionary<string, IList<int>> dictionary = new Dictionary<string, IList<int>>
{
["Key"] = new List<int> { 10, 20, 30 }
};
// List-specific surface (HasItemAt / ItemAt) is preserved, not degraded to a bare enumerable.
await Assert.That(dictionary).ContainsKey("Key").And.Value.HasItemAt(1, 20);
await Assert.That(dictionary).ContainsKey("Key").And.Value.ItemAt(2).IsEqualTo(30);
}
[Test]
public async Task Dictionary_ContainsKey_And_Value_Set_IsSubsetOf()
{
IDictionary<string, ISet<int>> dictionary = new Dictionary<string, ISet<int>>
{
["Key"] = new HashSet<int> { 1, 2 }
};
await Assert.That(dictionary).ContainsKey("Key").And.Value.IsSubsetOf(new[] { 1, 2, 3 });
}
[Test]
public async Task Dictionary_ContainsKey_And_Value_NestedDictionary_ContainsKey()
{
IDictionary<string, IDictionary<string, int>> dictionary = new Dictionary<string, IDictionary<string, int>>
{
["Outer"] = new Dictionary<string, int> { ["Inner"] = 42 }
};
await Assert.That(dictionary).ContainsKey("Outer").And.Value.ContainsKey("Inner");
await Assert.That(dictionary).ContainsKey("Outer").And.Value.ContainsKeyWithValue("Inner", 42);
}
[Test]
public async Task Dictionary_ContainsKey_And_Value_Array_Count()
{
IDictionary<string, int[]> dictionary = new Dictionary<string, int[]>
{
["Key"] = new[] { 1, 2, 3 }
};
await Assert.That(dictionary).ContainsKey("Key").And.Value.Count().IsEqualTo(3);
}
[Test]
public async Task Dictionary_ContainsKey_And_Value_ConcreteList_Count_And_MissingKey()
{
IDictionary<string, List<int>> dictionary = new Dictionary<string, List<int>>
{
["Key"] = new List<int> { 1, 2 }
};
await Assert.That(dictionary).ContainsKey("Key").And.Value.Count().IsEqualTo(2);
// Concrete List<T> uses the upcast seed; the ContainsKey pre-work must still run first.
var exception = await Assert.ThrowsAsync<TUnit.Assertions.Exceptions.AssertionException>(
async () => await Assert.That(dictionary).ContainsKey("Missing").And.Value.Count().IsEqualTo(2));
await Assert.That(exception.Message).Contains("contain key");
}
[Test]
public async Task Dictionary_ContainsKey_And_Value_ConcreteDictionary_ContainsKey_And_MissingKey()
{
IDictionary<string, Dictionary<string, int>> dictionary = new Dictionary<string, Dictionary<string, int>>
{
["Outer"] = new Dictionary<string, int> { ["Inner"] = 7 }
};
await Assert.That(dictionary).ContainsKey("Outer").And.Value.ContainsKey("Inner");
// Concrete Dictionary<K,V> uses the upcast seed; the ContainsKey pre-work must still run first.
var exception = await Assert.ThrowsAsync<TUnit.Assertions.Exceptions.AssertionException>(
async () => await Assert.That(dictionary).ContainsKey("Missing").And.Value.ContainsKey("Inner"));
await Assert.That(exception.Message).Contains("contain key");
}
[Test]
public async Task Dictionary_IsNotEmpty_Preserves_Dictionary_Continuation()
{
var dictionary = new Dictionary<string, long>
{
["Key"] = 1234L
};
// IsNotEmpty now keeps the dictionary continuation, so ContainsKey/.Value remain available.
await Assert.That(dictionary)
.IsNotEmpty()
.And.ContainsKey("Key").And.Value.IsEqualTo(1234L);
}
[Test]
public async Task Dictionary_IsEmpty_Preserves_Dictionary_Continuation()
{
var nonEmpty = new Dictionary<string, long>
{
["Key"] = 1234L
};
await Assert.That(nonEmpty)
.IsEmpty()
.Or.ContainsKey("Key");
}
[Test]
public async Task IDictionary_IsNotEmpty_Preserves_Dictionary_Continuation()
{
IDictionary<string, long> dictionary = new Dictionary<string, long>
{
["Key"] = 1234L
};
await Assert.That(dictionary)
.IsNotEmpty()
.And.ContainsKey("Key").And.Value.IsEqualTo(1234L);
}
[Test]
public async Task Dictionary_Count_Preserves_Dictionary_Continuation()
{
var dictionary = new Dictionary<string, long>
{
["Key"] = 1234L,
["Other"] = 1L
};
await Assert.That(dictionary)
.Count().IsEqualTo(2).And.ContainsKey("Key").And.Value.IsEqualTo(1234L);
}
[Test]
public async Task Dictionary_Count_Comparison_Methods_Work()
{
var dictionary = new Dictionary<string, long>
{
["a"] = 1L,
["b"] = 2L,
["c"] = 3L
};
await Assert.That(dictionary).Count().IsGreaterThan(2);
await Assert.That(dictionary).Count().IsLessThanOrEqualTo(3).And.ContainsKey("a");
await Assert.That(dictionary).Count().IsNotEqualTo(0).And.IsNotEmpty();
await Assert.That(dictionary).Count().IsPositive();
}
[Test]
public async Task Dictionary_Count_Fails_With_Count_Message()
{
var dictionary = new Dictionary<string, long>
{
["a"] = 1L
};
var exception = await Assert.ThrowsAsync<TUnit.Assertions.Exceptions.AssertionException>(
async () => await Assert.That(dictionary).Count().IsEqualTo(5));
await Assert.That(exception.Message).Contains("count");
}
[Test]