-
Notifications
You must be signed in to change notification settings - Fork 638
/
Copy pathTrailingCommaTest.kt
169 lines (141 loc) · 5.22 KB
/
TrailingCommaTest.kt
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
/*
* Copyright 2017-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.serialization.json
import kotlinx.serialization.*
import kotlinx.serialization.test.*
import kotlin.test.*
class TrailingCommaTest : JsonTestBase() {
val tj = Json { allowTrailingComma = true }
@Serializable
data class Optional(val data: String = "")
@Serializable
data class MultipleFields(val a: String, val b: String, val c: String)
private val multipleFields = MultipleFields("1", "2", "3")
@Serializable
data class WithMap(val m: Map<String, String>)
private val withMap = WithMap(mapOf("a" to "1", "b" to "2", "c" to "3"))
@Serializable
data class WithList(val l: List<Int>)
private val withList = WithList(listOf(1, 2, 3))
@Test
fun basic() = parametrizedTest { mode ->
val sd = """{"data":"str",}"""
assertEquals(Optional("str"), tj.decodeFromString<Optional>(sd, mode))
}
@Test
fun trailingCommaNotAllowedByDefaultForObjects() = parametrizedTest { mode ->
val sd = """{"data":"str",}"""
checkSerializationException({
default.decodeFromString<Optional>(sd, mode)
}, { message ->
assertContains(
message,
"""Unexpected JSON token at offset 13: Trailing comma before the end of JSON object"""
)
})
}
@Test
fun trailingCommaNotAllowedByDefaultForLists() = parametrizedTest { mode ->
val sd = """{"l":[1,]}"""
checkSerializationException({
default.decodeFromString<WithList>(sd, mode)
}, { message ->
assertContains(
message,
"""Unexpected JSON token at offset 7: Trailing comma before the end of JSON array"""
)
})
}
@Test
fun trailingCommaNotAllowedByDefaultForMaps() = parametrizedTest { mode ->
val sd = """{"m":{"a": "b",}}"""
checkSerializationException({
default.decodeFromString<WithMap>(sd, mode)
}, { message ->
assertContains(
message,
"""Unexpected JSON token at offset 14: Trailing comma before the end of JSON object"""
)
})
}
@Test
fun emptyObjectNotAllowed() = parametrizedTest { mode ->
assertFailsWithMessage<SerializationException>("Unexpected leading comma") {
tj.decodeFromString<Optional>("""{,}""", mode)
}
}
@Test
fun emptyListNotAllowed() = parametrizedTest { mode ->
assertFailsWithMessage<SerializationException>("Unexpected leading comma") {
tj.decodeFromString<WithList>("""{"l":[,]}""", mode)
}
}
@Test
fun emptyMapNotAllowed() = parametrizedTest { mode ->
assertFailsWithMessage<SerializationException>("Unexpected leading comma") {
tj.decodeFromString<WithMap>("""{"m":{,}}""", mode)
}
}
@Test
fun testMultipleFields() = parametrizedTest { mode ->
val input = """{"a":"1","b":"2","c":"3", }"""
assertEquals(multipleFields, tj.decodeFromString(input, mode))
}
@Test
fun testWithMap() = parametrizedTest { mode ->
val input = """{"m":{"a":"1","b":"2","c":"3", }}"""
assertEquals(withMap, tj.decodeFromString(input, mode))
}
@Test
fun testWithList() = parametrizedTest { mode ->
val input = """{"l":[1, 2, 3, ]}"""
assertEquals(withList, tj.decodeFromString(input, mode))
}
@Serializable
data class Mixed(val mf: MultipleFields, val wm: WithMap, val wl: WithList)
@Test
fun testMixed() = parametrizedTest { mode ->
//language=JSON5
val input = """{"mf":{"a":"1","b":"2","c":"3",},
"wm":{"m":{"a":"1","b":"2","c":"3",},},
"wl":{"l":[1, 2, 3,],},}"""
assertEquals(Mixed(multipleFields, withMap, withList), tj.decodeFromString(input, mode))
}
@Test
fun testCommaReportedPosition() = parametrizedTest { mode ->
val sd = """{"a":"1", }"""
checkSerializationException({
default.decodeFromString<Map<String, String>>(sd, mode)
}, { message ->
assertContains(
message,
"""Unexpected JSON token at offset 8: Trailing comma before the end of JSON object"""
)
})
}
@Test
fun testMultipleTrailingCommasAreNotAllowedEvenWhenTrailingIsEnabled() = parametrizedTest { mode ->
val sd = """{"a":"1",,}"""
checkSerializationException({
tj.decodeFromString<Map<String, String>>(sd, mode)
}, { message ->
assertContains(
message,
"""Unexpected JSON token at offset 9: Multiple consecutive commas are not allowed in JSON"""
)
})
}
@Test
fun testMultipleTrailingCommasError() = parametrizedTest { mode ->
val sd = """{"a":"1",,,}"""
checkSerializationException({
default.decodeFromString<Map<String, String>>(sd, mode)
}, { message ->
assertContains(
message,
"""Unexpected JSON token at offset 9: Multiple consecutive commas are not allowed in JSON"""
)
})
}
}