Skip to content

Commit

Permalink
Add test for #2288
Browse files Browse the repository at this point in the history
  • Loading branch information
tadfisher committed Mar 21, 2024
1 parent a2f92e4 commit b31a220
Showing 1 changed file with 51 additions and 0 deletions.
@@ -0,0 +1,51 @@
/*
* Copyright 2017-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/

package kotlinx.serialization.features.sealed

import kotlinx.serialization.*
import kotlinx.serialization.json.*
import kotlin.jvm.*
import kotlin.test.*

class SealedInterfacesInlineSerialNameTest : JsonTestBase() {
@Serializable
data class Child1Value(
val a: Int,
val b: String
)

@Serializable
data class Child2Value(
val c: Int,
val d: String
)

@Serializable
sealed interface Parent

@Serializable
@SerialName("child1")
@JvmInline
value class Child1(val value: Child1Value) : Parent

@Serializable
@SerialName("child2")
@JvmInline
value class Child2(val value: Child2Value) : Parent

@Test
@Ignore // https://github.com/Kotlin/kotlinx.serialization/issues/2288
fun testSealedInterfaceInlineSerialName() {
val messages = listOf(
Child1(Child1Value(1, "one")),
Child2(Child2Value(2, "two"))
)
assertJsonFormAndRestored(
serializer(),
messages,
"""[{"type":"child1","a":1,"b":"one"},{"type":"child2","c":2,"d":"two"}]"""
)
}
}

0 comments on commit b31a220

Please sign in to comment.