Skip to content

Commit e9b2598

Browse files
authored
Fix JsonHelper.Format failing when deserializing top-level array objects. (DevToys-app#640)
Adds appropriate test cases to JsonHelperTests
1 parent ec62d8c commit e9b2598

File tree

2 files changed

+32
-11
lines changed

2 files changed

+32
-11
lines changed

src/dev/impl/DevToys/Helpers/JsonYaml/JsonHelper.cs

+27-11
Original file line numberDiff line numberDiff line change
@@ -69,18 +69,25 @@ internal static string Format(string? input, Indentation indentationMode, bool s
6969
LineInfoHandling = LineInfoHandling.Load
7070
};
7171

72-
JObject jObject;
72+
JToken jToken;
7373
using (var jsonReader = new JsonTextReader(new StringReader(input)))
7474
{
7575
jsonReader.DateParseHandling = DateParseHandling.None;
7676
jsonReader.DateTimeZoneHandling = DateTimeZoneHandling.RoundtripKind;
7777

78-
jObject = JObject.Load(jsonReader, jsonLoadSettings);
78+
jToken = JToken.Load(jsonReader, jsonLoadSettings);
7979
}
8080

8181
if (sortProperties)
8282
{
83-
SortJsonPropertiesAlphabetically(jObject);
83+
if (jToken is JObject obj)
84+
{
85+
SortJsonPropertiesAlphabetically(obj);
86+
}
87+
else if (jToken is JArray array)
88+
{
89+
SortJsonPropertiesAlphabetically(array);
90+
}
8491
}
8592

8693
var stringBuilder = new StringBuilder();
@@ -114,7 +121,7 @@ internal static string Format(string? input, Indentation indentationMode, bool s
114121
jsonTextWriter.DateFormatHandling = DateFormatHandling.IsoDateFormat;
115122
jsonTextWriter.DateTimeZoneHandling = DateTimeZoneHandling.RoundtripKind;
116123

117-
jObject.WriteTo(jsonTextWriter);
124+
jToken.WriteTo(jsonTextWriter);
118125
}
119126

120127
return stringBuilder.ToString();
@@ -215,13 +222,22 @@ private static void SortJsonPropertiesAlphabetically(JObject jObject)
215222
}
216223
else if (property.Value is JArray array)
217224
{
218-
foreach (JToken? arrayItem in array)
219-
{
220-
if (arrayItem is JObject arrayObj)
221-
{
222-
SortJsonPropertiesAlphabetically(arrayObj);
223-
}
224-
}
225+
SortJsonPropertiesAlphabetically(array);
226+
}
227+
}
228+
}
229+
230+
private static void SortJsonPropertiesAlphabetically(JArray jArray)
231+
{
232+
foreach (JToken? arrayItem in jArray)
233+
{
234+
if (arrayItem is JObject arrayObj)
235+
{
236+
SortJsonPropertiesAlphabetically(arrayObj);
237+
}
238+
else if (arrayItem is JArray array)
239+
{
240+
SortJsonPropertiesAlphabetically(array);
225241
}
226242
}
227243
}

src/tests/DevToys.Tests/Helpers/JsonHelperTests.cs

+5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public class JsonHelperTests
1414
[DataRow("", false)]
1515
[DataRow(" ", false)]
1616
[DataRow(" { } ", true)]
17+
[DataRow(" [ ] ", true)]
1718
[DataRow(" { \"foo\": 123 } ", true)]
1819
[DataRow(" bar { \"foo\": 123 } ", false)]
1920
public void IsValid(string input, bool expectedResult)
@@ -26,6 +27,7 @@ public void IsValid(string input, bool expectedResult)
2627
[DataRow("", "")]
2728
[DataRow(" ", "")]
2829
[DataRow(" { } ", "{}")]
30+
[DataRow(" [ ] ", "[]")]
2931
[DataRow(" { \"foo\": 123 } ", "{\r\n \"foo\": 123\r\n}")]
3032
public void FormatTwoSpaces(string input, string expectedResult)
3133
{
@@ -37,6 +39,7 @@ public void FormatTwoSpaces(string input, string expectedResult)
3739
[DataRow("", "")]
3840
[DataRow(" ", "")]
3941
[DataRow(" { } ", "{}")]
42+
[DataRow(" [ ] ", "[]")]
4043
[DataRow(" { \"foo\": 123 } ", "{\r\n \"foo\": 123\r\n}")]
4144
public void FormatFourSpaces(string input, string expectedResult)
4245
{
@@ -48,6 +51,7 @@ public void FormatFourSpaces(string input, string expectedResult)
4851
[DataRow("", "")]
4952
[DataRow(" ", "")]
5053
[DataRow(" { } ", "{}")]
54+
[DataRow(" [ ] ", "[]")]
5155
[DataRow(" { \"foo\": 123 } ", "{\r\n\t\"foo\": 123\r\n}")]
5256
public void FormatOneTab(string input, string expectedResult)
5357
{
@@ -59,6 +63,7 @@ public void FormatOneTab(string input, string expectedResult)
5963
[DataRow("", "")]
6064
[DataRow(" ", "")]
6165
[DataRow(" { } ", "{}")]
66+
[DataRow(" [ ] ", "[]")]
6267
[DataRow(" { \"foo\": 123 } ", "{\"foo\":123}")]
6368
public void FormatMinified(string input, string expectedResult)
6469
{

0 commit comments

Comments
 (0)