-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split YamlReadingTest into several files
- Loading branch information
1 parent
7536265
commit 79fdaf3
Showing
10 changed files
with
3,119 additions
and
2,738 deletions.
There are no files selected for viewing
380 changes: 380 additions & 0 deletions
380
src/commonTest/kotlin/com/charleskorn/kaml/YamlContextualReadingTest.kt
Large diffs are not rendered by default.
Oops, something went wrong.
225 changes: 225 additions & 0 deletions
225
src/commonTest/kotlin/com/charleskorn/kaml/YamlListReadingTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,225 @@ | ||
/* | ||
Copyright 2018-2023 Charles Korn. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
https://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package com.charleskorn.kaml | ||
|
||
import com.charleskorn.kaml.testobjects.SimpleStructure | ||
import com.charleskorn.kaml.testobjects.TestEnum | ||
import io.kotest.assertions.asClue | ||
import io.kotest.assertions.throwables.shouldThrow | ||
import io.kotest.matchers.shouldBe | ||
import kotlinx.serialization.builtins.ListSerializer | ||
import kotlinx.serialization.builtins.nullable | ||
import kotlinx.serialization.builtins.serializer | ||
|
||
class YamlListReadingTest : FlatFunSpec({ | ||
context("a YAML parser parsing lists") { | ||
context("given a list of strings") { | ||
val input = """ | ||
- thing1 | ||
- thing2 | ||
- thing3 | ||
""".trimIndent() | ||
|
||
context("parsing that input as a list") { | ||
val result = Yaml.default.decodeFromString(ListSerializer(String.serializer()), input) | ||
|
||
test("deserializes it to the expected value") { | ||
result shouldBe listOf("thing1", "thing2", "thing3") | ||
} | ||
} | ||
|
||
context("parsing that input as a nullable list") { | ||
val result = Yaml.default.decodeFromString(ListSerializer(String.serializer()).nullable, input) | ||
|
||
test("deserializes it to the expected value") { | ||
result shouldBe listOf("thing1", "thing2", "thing3") | ||
} | ||
} | ||
|
||
context("parsing that input with a serializer that uses YAML location information when throwing exceptions") { | ||
test("throws an exception with the correct location information") { | ||
val exception = shouldThrow<LocationInformationException> { | ||
Yaml.default.decodeFromString( | ||
ListSerializer(LocationThrowingSerializer), | ||
input, | ||
) | ||
} | ||
|
||
exception.asClue { | ||
it.message shouldBe "Serializer called with location (1, 3) and path: [0]" | ||
} | ||
} | ||
} | ||
} | ||
|
||
context("given a list of numbers") { | ||
val input = """ | ||
- 123 | ||
- 45 | ||
- 6 | ||
""".trimIndent() | ||
|
||
context("parsing that input as a list of integers") { | ||
val result = Yaml.default.decodeFromString(ListSerializer(Int.serializer()), input) | ||
|
||
test("deserializes it to the expected value") { | ||
result shouldBe listOf(123, 45, 6) | ||
} | ||
} | ||
|
||
context("parsing that input as a list of longs") { | ||
val result = Yaml.default.decodeFromString(ListSerializer(Long.serializer()), input) | ||
|
||
test("deserializes it to the expected value") { | ||
result shouldBe listOf(123L, 45, 6) | ||
} | ||
} | ||
|
||
context("parsing that input as a list of shorts") { | ||
val result = Yaml.default.decodeFromString(ListSerializer(Short.serializer()), input) | ||
|
||
test("deserializes it to the expected value") { | ||
result shouldBe listOf(123.toShort(), 45, 6) | ||
} | ||
} | ||
|
||
context("parsing that input as a list of bytes") { | ||
val result = Yaml.default.decodeFromString(ListSerializer(Byte.serializer()), input) | ||
|
||
test("deserializes it to the expected value") { | ||
result shouldBe listOf(123.toByte(), 45, 6) | ||
} | ||
} | ||
|
||
context("parsing that input as a list of doubles") { | ||
val result = Yaml.default.decodeFromString(ListSerializer(Double.serializer()), input) | ||
|
||
test("deserializes it to the expected value") { | ||
result shouldBe listOf(123.0, 45.0, 6.0) | ||
} | ||
} | ||
|
||
context("parsing that input as a list of floats") { | ||
val result = Yaml.default.decodeFromString(ListSerializer(Float.serializer()), input) | ||
|
||
test("deserializes it to the expected value") { | ||
result shouldBe listOf(123.0f, 45.0f, 6.0f) | ||
} | ||
} | ||
} | ||
|
||
context("given a list of booleans") { | ||
val input = """ | ||
- true | ||
- false | ||
""".trimIndent() | ||
|
||
context("parsing that input as a list") { | ||
val result = Yaml.default.decodeFromString(ListSerializer(Boolean.serializer()), input) | ||
|
||
test("deserializes it to the expected value") { | ||
result shouldBe listOf(true, false) | ||
} | ||
} | ||
} | ||
|
||
context("given a list of enum values") { | ||
val input = """ | ||
- Value1 | ||
- Value2 | ||
""".trimIndent() | ||
|
||
context("parsing that input as a list") { | ||
val result = Yaml.default.decodeFromString(ListSerializer(TestEnum.serializer()), input) | ||
|
||
test("deserializes it to the expected value") { | ||
result shouldBe listOf(TestEnum.Value1, TestEnum.Value2) | ||
} | ||
} | ||
} | ||
|
||
context("given a list of characters") { | ||
val input = """ | ||
- a | ||
- b | ||
""".trimIndent() | ||
|
||
context("parsing that input as a list") { | ||
val result = Yaml.default.decodeFromString(ListSerializer(Char.serializer()), input) | ||
|
||
test("deserializes it to the expected value") { | ||
result shouldBe listOf('a', 'b') | ||
} | ||
} | ||
} | ||
|
||
context("given a list of nullable strings") { | ||
val input = """ | ||
- thing1 | ||
- null | ||
""".trimIndent() | ||
|
||
context("parsing that input as a list") { | ||
val result = Yaml.default.decodeFromString(ListSerializer(String.serializer().nullable), input) | ||
|
||
test("deserializes it to the expected value") { | ||
result shouldBe listOf("thing1", null) | ||
} | ||
} | ||
} | ||
|
||
context("given a list of lists") { | ||
val input = """ | ||
- [thing1, thing2] | ||
- [thing3] | ||
""".trimIndent() | ||
|
||
context("parsing that input as a list") { | ||
val result = Yaml.default.decodeFromString(ListSerializer(ListSerializer(String.serializer())), input) | ||
|
||
test("deserializes it to the expected value") { | ||
result shouldBe | ||
listOf( | ||
listOf("thing1", "thing2"), | ||
listOf("thing3"), | ||
) | ||
} | ||
} | ||
} | ||
|
||
context("given a list of objects") { | ||
val input = """ | ||
- name: thing1 | ||
- name: thing2 | ||
""".trimIndent() | ||
|
||
context("parsing that input as a list") { | ||
val result = Yaml.default.decodeFromString(ListSerializer(SimpleStructure.serializer()), input) | ||
|
||
test("deserializes it to the expected value") { | ||
result shouldBe | ||
listOf( | ||
SimpleStructure("thing1"), | ||
SimpleStructure("thing2"), | ||
) | ||
} | ||
} | ||
} | ||
} | ||
}) |
59 changes: 59 additions & 0 deletions
59
src/commonTest/kotlin/com/charleskorn/kaml/YamlNamingStrategyTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
Copyright 2018-2023 Charles Korn. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
https://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package com.charleskorn.kaml | ||
|
||
import io.kotest.matchers.shouldBe | ||
import kotlinx.serialization.Serializable | ||
|
||
class YamlNamingStrategyTest : FlatFunSpec({ | ||
context("a YAML parser deserializing serial names using YamlNamingStrategies") { | ||
@Serializable | ||
data class NamingStrategyTestData(val serialName: String) | ||
|
||
context("deserializing a snake_case serial name using YamlNamingStrategy.SnakeCase") { | ||
val output = Yaml( | ||
configuration = YamlConfiguration(yamlNamingStrategy = YamlNamingStrategy.SnakeCase), | ||
).decodeFromString(NamingStrategyTestData.serializer(), "serial_name: value") | ||
|
||
test("correctly serializes into the data class") { | ||
output shouldBe NamingStrategyTestData("value") | ||
} | ||
} | ||
|
||
context("deserializing a PascalCase serial name using YamlNamingStrategy.PascalCase") { | ||
val output = Yaml( | ||
configuration = YamlConfiguration(yamlNamingStrategy = YamlNamingStrategy.PascalCase), | ||
).decodeFromString(NamingStrategyTestData.serializer(), "SerialName: value") | ||
|
||
test("correctly serializes into the data class") { | ||
output shouldBe NamingStrategyTestData("value") | ||
} | ||
} | ||
|
||
context("deserializing a camelCase serial name using YamlNamingStrategy.CamelCase") { | ||
val output = Yaml( | ||
configuration = YamlConfiguration(yamlNamingStrategy = YamlNamingStrategy.CamelCase), | ||
).decodeFromString(NamingStrategyTestData.serializer(), "serialName: value") | ||
|
||
test("correctly serializes into the data class") { | ||
output shouldBe NamingStrategyTestData("value") | ||
} | ||
} | ||
} | ||
}) |
Oops, something went wrong.