Skip to content

Commit 32d21fb

Browse files
committed
Add tests for KeyValuePair<>/Dictionary ArgumentFormatter update
1 parent 1109d48 commit 32d21fb

File tree

3 files changed

+38
-13
lines changed

3 files changed

+38
-13
lines changed

test/test.xunit.assert/Asserts/EquivalenceAssertsTests.cs

+12-12
Original file line numberDiff line numberDiff line change
@@ -921,8 +921,8 @@ public void Failure()
921921
Assert.IsType<EquivalentException>(ex);
922922
Assert.Equal(
923923
"Assert.Equivalent() Failure: Collection value not found" + Environment.NewLine +
924-
"Expected: [Foo, 16]" + Environment.NewLine +
925-
"In: [[Foo, 42], [Bar, 2112]]",
924+
"Expected: [\"Foo\"] = 16" + Environment.NewLine +
925+
"In: [[\"Foo\"] = 42, [\"Bar\"] = 2112]",
926926
ex.Message
927927
);
928928
}
@@ -938,8 +938,8 @@ public void Failure_EmbeddedDictionary()
938938
Assert.IsType<EquivalentException>(ex);
939939
Assert.Equal(
940940
"Assert.Equivalent() Failure: Collection value not found in member 'x'" + Environment.NewLine +
941-
"Expected: [Foo, 16]" + Environment.NewLine +
942-
"In: [[Foo, 42], [Bar, 2112]]",
941+
"Expected: [\"Foo\"] = 16" + Environment.NewLine +
942+
"In: [[\"Foo\"] = 42, [\"Bar\"] = 2112]",
943943
ex.Message
944944
);
945945
}
@@ -976,8 +976,8 @@ public void Failure_ValueNotFoundInActual()
976976
Assert.IsType<EquivalentException>(ex);
977977
Assert.Equal(
978978
"Assert.Equivalent() Failure: Collection value not found" + Environment.NewLine +
979-
"Expected: [Foo, 16]" + Environment.NewLine +
980-
"In: [[Foo, 42], [Bar, 2112]]",
979+
"Expected: [\"Foo\"] = 16" + Environment.NewLine +
980+
"In: [[\"Foo\"] = 42, [\"Bar\"] = 2112]",
981981
ex.Message
982982
);
983983
}
@@ -993,8 +993,8 @@ public void Failure_ExtraValueInActual()
993993
Assert.IsType<EquivalentException>(ex);
994994
Assert.Equal(
995995
"Assert.Equivalent() Failure: Extra values found" + Environment.NewLine +
996-
"Expected: [[Bar, 2112], [Foo, 42]]" + Environment.NewLine +
997-
"Actual: [[Biff, 2600]] left over from [[Foo, 42], [Biff, 2600], [Bar, 2112]]",
996+
"Expected: [[\"Bar\"] = 2112, [\"Foo\"] = 42]" + Environment.NewLine +
997+
"Actual: [[\"Biff\"] = 2600] left over from [[\"Foo\"] = 42, [\"Biff\"] = 2600, [\"Bar\"] = 2112]",
998998
ex.Message
999999
);
10001000
}
@@ -1010,8 +1010,8 @@ public void Failure_EmbeddedDictionary_ValueNotFoundInActual()
10101010
Assert.IsType<EquivalentException>(ex);
10111011
Assert.Equal(
10121012
"Assert.Equivalent() Failure: Collection value not found in member 'x'" + Environment.NewLine +
1013-
"Expected: [Foo, 16]" + Environment.NewLine +
1014-
"In: [[Foo, 42], [Bar, 2112]]",
1013+
"Expected: [\"Foo\"] = 16" + Environment.NewLine +
1014+
"In: [[\"Foo\"] = 42, [\"Bar\"] = 2112]",
10151015
ex.Message
10161016
);
10171017
}
@@ -1027,8 +1027,8 @@ public void Failure_EmbeddedDictionary_ExtraValueInActual()
10271027
Assert.IsType<EquivalentException>(ex);
10281028
Assert.Equal(
10291029
"Assert.Equivalent() Failure: Extra values found in member 'x'" + Environment.NewLine +
1030-
"Expected: [[Bar, 2112], [Foo, 42]]" + Environment.NewLine +
1031-
"Actual: [[Biff, 2600]] left over from [[Foo, 42], [Biff, 2600], [Bar, 2112]]",
1030+
"Expected: [[\"Bar\"] = 2112, [\"Foo\"] = 42]" + Environment.NewLine +
1031+
"Actual: [[\"Biff\"] = 2600] left over from [[\"Foo\"] = 42, [\"Biff\"] = 2600, [\"Bar\"] = 2112]",
10321032
ex.Message
10331033
);
10341034
}

test/test.xunit.assert/Asserts/Sdk/ArgumentFormatterTests.cs

+25
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,18 @@ public static void Flags(FlagsEnum enumValue, string expected)
237237
}
238238
}
239239

240+
public class KeyValuePair
241+
{
242+
[CulturedFact]
243+
public static void KeyValuePairValue()
244+
{
245+
var kvp = new KeyValuePair<object, List<object>>(42, new() { 21.12M, "2600" });
246+
var expected = $"[42] = [{21.12M}, \"2600\"]";
247+
248+
Assert.Equal(expected, ArgumentFormatter.Format(kvp));
249+
}
250+
}
251+
240252
public class Enumerables
241253
{
242254
[CulturedFact]
@@ -247,6 +259,19 @@ public static void EnumerableValue()
247259
Assert.Equal(expected, ArgumentFormatter.Format(new object[] { 1, 2.3M, "Hello, world!" }));
248260
}
249261

262+
[CulturedFact]
263+
public static void DictionaryValue()
264+
{
265+
var value = new Dictionary<object, List<object>>
266+
{
267+
{ 42, new() { 21.12M, "2600" } },
268+
{ "123", new() { } },
269+
};
270+
var expected = $"[[42] = [{21.12M}, \"2600\"], [\"123\"] = []]";
271+
272+
Assert.Equal(expected, ArgumentFormatter.Format(value));
273+
}
274+
250275
[CulturedFact]
251276
public static void OnlyFirstFewValuesOfEnumerableAreRendered()
252277
{

0 commit comments

Comments
 (0)