[Parcelize] Add test for parcelize in multiplatform setting.

This tests that classes in common code can have code generated
for them in android compilations.
This commit is contained in:
Mads Ager
2024-03-04 15:37:13 +01:00
committed by Space Cloud
parent fa0d456850
commit b0bc017a16
13 changed files with 133 additions and 16 deletions
@@ -0,0 +1,41 @@
// TARGET_BACKEND: JVM_IR
// !LANGUAGE: +MultiPlatformProjects
// WITH_STDLIB
// Metadata compilations do not see through the expect/actuals and therefore,
// there are parcelize errors in metadata compilations.
// IGNORE_FIR_DIAGNOSTICS_DIFF
// MODULE: m1-common
// FILE: common.kt
package test
expect interface MyParcelable
annotation class TriggerParcelize
@TriggerParcelize
data class User(val name: String) : MyParcelable
// MODULE: m2-jvm()()(m1-common)
// FILE: android.kt
@file:JvmName("TestKt")
package test
import kotlinx.parcelize.*
actual typealias MyParcelable = android.os.Parcelable
fun box() = parcelTest { parcel ->
val user = User("John")
user.writeToParcel(parcel, 0)
val bytes = parcel.marshall()
parcel.unmarshall(bytes, 0, bytes.size)
parcel.setDataPosition(0)
val user2 = parcelableCreator<User>().createFromParcel(parcel)
assert(user == user2)
}