summaryrefslogtreecommitdiff
path: root/formats/json/commonTest/src/kotlinx/serialization/json/polymorphic/JsonPropertyPolymorphicTest.kt
blob: e2e10e246a61c37aafb40fbe70919829484267e2 (plain)
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
/*
 * Copyright 2017-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

package kotlinx.serialization.json.polymorphic

import kotlinx.serialization.PolymorphicSerializer
import kotlinx.serialization.json.JsonTestBase
import kotlin.test.Test
import kotlin.test.assertEquals

class JsonPropertyPolymorphicTest : JsonTestBase() {

    @Test
    fun testPolymorphicProperties() = assertJsonFormAndRestored(
        InnerBox.serializer(),
        InnerBox(InnerImpl(42, "foo")),
        """{"base":{"type":"kotlinx.serialization.json.polymorphic.InnerImpl",""" +
                """"field":42,"str":"foo","nullable":null}}""",
        polymorphicRelaxedJson)

    @Test
    fun testFlatPolymorphic() = parametrizedTest { jsonTestingMode ->
        val base: InnerBase = InnerImpl(42, "foo")
        val string = polymorphicRelaxedJson.encodeToString(PolymorphicSerializer(InnerBase::class), base, jsonTestingMode)
        assertEquals("""{"type":"kotlinx.serialization.json.polymorphic.InnerImpl",""" +
                """"field":42,"str":"foo","nullable":null}""", string)
        assertEquals(base, polymorphicRelaxedJson.decodeFromString(PolymorphicSerializer(InnerBase::class), string, jsonTestingMode))
    }

    @Test
    fun testNestedPolymorphicProperties() = assertJsonFormAndRestored(
        OuterBox.serializer(),
        OuterBox(OuterImpl(InnerImpl(42), InnerImpl2(42)), InnerImpl2(239)),
        """{"outerBase":{""" +
                """"type":"kotlinx.serialization.json.polymorphic.OuterImpl",""" +
                """"base":{"type":"kotlinx.serialization.json.polymorphic.InnerImpl","field":42,"str":"default","nullable":null},""" +
                """"base2":{"type":"kotlinx.serialization.json.polymorphic.InnerImpl2","field":42}},""" +
                """"innerBase":{"type":"kotlinx.serialization.json.polymorphic.InnerImpl2","field":239}}""",
        polymorphicRelaxedJson)

    @Test
    fun testPolymorphicNullableProperties() = assertJsonFormAndRestored(
        InnerNullableBox.serializer(),
        InnerNullableBox(InnerImpl(42, "foo")),
        """{"base":{"type":"kotlinx.serialization.json.polymorphic.InnerImpl",""" +
                """"field":42,"str":"foo","nullable":null}}""",
        polymorphicRelaxedJson)

    @Test
    fun testPolymorphicNullablePropertiesWithNull() =
        assertJsonFormAndRestored(InnerNullableBox.serializer(), InnerNullableBox(null), """{"base":null}""", polymorphicJson)

    @Test
    fun testNestedPolymorphicNullableProperties() = assertJsonFormAndRestored(
        OuterNullableBox.serializer(),
        OuterNullableBox(OuterNullableImpl(InnerImpl(42), null), InnerImpl2(239)),
        """{"outerBase":{""" +
                """"type":"kotlinx.serialization.json.polymorphic.OuterNullableImpl",""" +
                """"base":{"type":"kotlinx.serialization.json.polymorphic.InnerImpl","field":42,"str":"default","nullable":null},"base2":null},""" +
                """"innerBase":{"type":"kotlinx.serialization.json.polymorphic.InnerImpl2","field":239}}""",
        polymorphicRelaxedJson)
}