Skip to content

Commit

Permalink
Don't crash if burstValues() has only one argument
Browse files Browse the repository at this point in the history
  • Loading branch information
squarejesse committed Oct 29, 2024
1 parent 737ab7f commit e8dd9ee
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import assertk.assertThat
import assertk.assertions.contains
import assertk.assertions.containsExactly
import assertk.assertions.containsExactlyInAnyOrder
import assertk.assertions.isEmpty
import assertk.assertions.isFalse
import assertk.assertions.isTrue
import com.tschuchort.compiletesting.JvmCompilationResult
Expand Down Expand Up @@ -308,6 +309,31 @@ class BurstKotlinPluginTest {
baseLog.clear()
}

@Test
fun burstValuesJustOne() {
val result = compile(
sourceFile = SourceFile.kotlin(
"CoffeeTest.kt",
"""
import app.cash.burst.Burst
import app.cash.burst.burstValues
import kotlin.test.Test
@Burst
class CoffeeTest {
@Test
fun test(volume: Int = burstValues(12)) {
}
}
""",
),
)
assertEquals(KotlinCompilation.ExitCode.OK, result.exitCode, result.messages)

val baseClass = result.classLoader.loadClass("CoffeeTest")
assertThat(baseClass.testSuffixes).isEmpty()
}

@Test
fun burstValuesHasReasonableSymbolName() {
val result = compile(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import org.jetbrains.kotlin.backend.common.extensions.IrPluginContext
import org.jetbrains.kotlin.ir.IrElement
import org.jetbrains.kotlin.ir.backend.js.utils.valueArguments
import org.jetbrains.kotlin.ir.declarations.IrClass
import org.jetbrains.kotlin.ir.declarations.IrDeclarationParent
import org.jetbrains.kotlin.ir.declarations.IrEnumEntry
import org.jetbrains.kotlin.ir.declarations.IrValueParameter
import org.jetbrains.kotlin.ir.expressions.IrCall
Expand Down Expand Up @@ -87,13 +86,16 @@ private class BooleanArgument(
}
}

@UnsafeDuringIrConstructionAPI
private class BurstValuesArgument(
private val declarationParent: IrDeclarationParent,
override val isDefault: Boolean,
override val name: String,
val value: IrExpression,
private val parameter: IrValueParameter,
private val value: IrExpression,
index: Int,
) : Argument {
override fun expression() = value.deepCopyWithSymbols(declarationParent)
override val isDefault = index == 0
override val name = value.suggestedName() ?: index.toString()

override fun expression() = value.deepCopyWithSymbols(parameter.parent)

override fun <R, D> accept(visitor: IrElementVisitor<R, D>, data: D): R {
return value.accept(visitor, data)
Expand Down Expand Up @@ -136,24 +138,21 @@ private fun burstValuesArguments(
burstApisCall: IrCall,
): List<Argument> {
return buildList {
val defaultExpression = burstApisCall.valueArguments[0] ?: unexpectedParameter(parameter)
add(
BurstValuesArgument(
declarationParent = parameter.parent,
isDefault = true,
name = defaultExpression.suggestedName() ?: "0",
value = defaultExpression,
parameter = parameter,
value = burstApisCall.valueArguments[0] ?: unexpectedParameter(parameter),
index = size,
),
)

for ((index, element) in (burstApisCall.valueArguments[1] as IrVararg).elements.withIndex()) {
val varargExpression = element as? IrExpression ?: unexpectedParameter(parameter)
val varargs = burstApisCall.valueArguments[1] as? IrVararg ?: return@buildList
for (element in varargs.elements) {
add(
BurstValuesArgument(
declarationParent = parameter.parent,
isDefault = false,
name = varargExpression.suggestedName() ?: (index + 1).toString(),
value = varargExpression,
parameter = parameter,
value = element as? IrExpression ?: unexpectedParameter(parameter),
index = size,
),
)
}
Expand Down

0 comments on commit e8dd9ee

Please sign in to comment.