All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmTest.kotlinx.serialization.StacktraceRecoveryTest.kt Maven / Gradle / Ivy

There is a newer version: 1.7.3
Show newest version
/*
 * Copyright 2017-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

package kotlinx.serialization

import kotlinx.coroutines.*
import kotlinx.serialization.descriptors.*
import kotlinx.serialization.encoding.*
import kotlinx.serialization.json.*
import kotlinx.serialization.json.internal.*
import kotlinx.serialization.modules.*
import kotlin.test.*

class StacktraceRecoveryTest {
    @Serializable
    private class Data(val s: String)

    private class BadDecoder : AbstractDecoder() {
        override val serializersModule: SerializersModule = EmptySerializersModule
        override fun decodeElementIndex(descriptor: SerialDescriptor): Int = 42
    }

    @Test
    fun testJsonDecodingException() = checkRecovered {
        Json.decodeFromString("42")
    }

    @Test
    fun testJsonEncodingException() = checkRecovered {
        Json.encodeToString(Double.NaN)
    }

    @Test
    // checks simple name because UFE is internal class
    fun testUnknownFieldException() = checkRecovered("UnknownFieldException") {
        val serializer = Data.serializer()
        serializer.deserialize(BadDecoder())
    }

    @Test
    // checks simple name because MFE is internal class
    fun testMissingFieldException() = checkRecovered("MissingFieldException") {
        Json.decodeFromString("{}")
    }

    private fun checkRecovered(exceptionClassSimpleName: String, block: () -> Unit) = runBlocking {
        val result = runCatching {
            callBlockWithRecovery(block)
        }
        assertTrue(result.isFailure, "Block should have failed")
        val e = result.exceptionOrNull()!!
        assertEquals(exceptionClassSimpleName, e::class.simpleName!!)
        val cause = e.cause
        assertNotNull(cause, "Exception should have cause: $e")
        assertEquals(e.message, cause.message)
        assertEquals(exceptionClassSimpleName, e::class.simpleName!!)
    }

    private inline fun  checkRecovered(noinline block: () -> Unit) = runBlocking {
        val result = runCatching {
            callBlockWithRecovery(block)
        }
        assertTrue(result.isFailure, "Block should have failed")
        val e = result.exceptionOrNull()!!
        assertEquals(E::class, e::class)
        val cause = e.cause
        assertNotNull(cause, "Exception should have cause: $e")
        assertEquals(e.message, cause.message)
        assertEquals(E::class, cause::class)
    }

    // KLUDGE: A separate function with state-machine to ensure coroutine DebugMetadata is generated. See KT-41789
    private suspend fun callBlockWithRecovery(block: () -> Unit) {
        yield()
        // use withContext to perform switch between coroutines and thus trigger exception recovery machinery
        withContext(NonCancellable) {
            block()
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy