|
|
|
@ -1,67 +1,151 @@
|
|
|
|
|
package org.jetbrains.compose.web.core.tests |
|
|
|
|
|
|
|
|
|
import androidx.compose.runtime.Composable |
|
|
|
|
import androidx.compose.runtime.MonotonicFrameClock |
|
|
|
|
import org.jetbrains.compose.web.renderComposable |
|
|
|
|
import kotlinx.browser.document |
|
|
|
|
import kotlinx.browser.window |
|
|
|
|
import kotlinx.coroutines.CoroutineScope |
|
|
|
|
import kotlinx.coroutines.MainScope |
|
|
|
|
import kotlinx.coroutines.channels.Channel |
|
|
|
|
import kotlinx.coroutines.launch |
|
|
|
|
import kotlinx.coroutines.promise |
|
|
|
|
import kotlinx.dom.clear |
|
|
|
|
import org.w3c.dom.* |
|
|
|
|
import kotlin.coroutines.resume |
|
|
|
|
import kotlin.coroutines.suspendCoroutine |
|
|
|
|
import kotlin.time.DurationUnit |
|
|
|
|
import kotlin.time.ExperimentalTime |
|
|
|
|
import kotlin.time.toDuration |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* This class provides a set of utils methods to simplify compose-web tests. |
|
|
|
|
* There is no need to create its instances manually. |
|
|
|
|
* @see [runTest] |
|
|
|
|
*/ |
|
|
|
|
class TestScope : CoroutineScope by MainScope() { |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* It's used as a parent element for the composition. |
|
|
|
|
* It's added into the document's body automatically. |
|
|
|
|
*/ |
|
|
|
|
val root = "div".asHtmlElement() |
|
|
|
|
|
|
|
|
|
private val testScope = MainScope() |
|
|
|
|
|
|
|
|
|
class TestScope : CoroutineScope by testScope { |
|
|
|
|
private val recompositionCompleteEventsChannel = Channel<Unit>() |
|
|
|
|
private val childrenIterator = root.children.asList().listIterator() |
|
|
|
|
|
|
|
|
|
val root = "div".asHtmlElement() |
|
|
|
|
init { |
|
|
|
|
document.body!!.appendChild(root) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private fun onRecompositionComplete() { |
|
|
|
|
launch { |
|
|
|
|
recompositionCompleteEventsChannel.send(Unit) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Cleans up the [root] content. |
|
|
|
|
* Creates a new composition with a given Composable [content]. |
|
|
|
|
*/ |
|
|
|
|
fun composition(content: @Composable () -> Unit) { |
|
|
|
|
root.clear() |
|
|
|
|
renderComposable(root) { |
|
|
|
|
|
|
|
|
|
renderComposable( |
|
|
|
|
root = root, |
|
|
|
|
monotonicFrameClock = TestMonotonicClockImpl( |
|
|
|
|
onRecomposeComplete = this::onRecompositionComplete |
|
|
|
|
) |
|
|
|
|
) { |
|
|
|
|
content() |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private val childrenIterator = root.children.asList().listIterator() |
|
|
|
|
/** |
|
|
|
|
* @return a reference to the next child element of the root. |
|
|
|
|
* Subsequent calls will return next child reference every time. |
|
|
|
|
*/ |
|
|
|
|
fun nextChild() = childrenIterator.next() as HTMLElement |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @return a reference to current child. |
|
|
|
|
* Calling this subsequently returns the same reference every time. |
|
|
|
|
*/ |
|
|
|
|
fun currentChild() = root.children[childrenIterator.previousIndex()] as HTMLElement |
|
|
|
|
|
|
|
|
|
suspend fun waitChanges() { |
|
|
|
|
/** |
|
|
|
|
* Suspends until [root] observes any change to its html. |
|
|
|
|
*/ |
|
|
|
|
suspend fun waitForChanges() { |
|
|
|
|
waitForChanges(root) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Suspends until element with [elementId] observes any change to its html. |
|
|
|
|
*/ |
|
|
|
|
suspend fun waitForChanges(elementId: String) { |
|
|
|
|
waitForChanges(document.getElementById(elementId) as HTMLElement) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Suspends until [element] observes any change to its html. |
|
|
|
|
*/ |
|
|
|
|
suspend fun waitForChanges(element: HTMLElement) { |
|
|
|
|
suspendCoroutine<Unit> { continuation -> |
|
|
|
|
val observer = MutationObserver { mutations, observer -> |
|
|
|
|
continuation.resume(Unit) |
|
|
|
|
observer.disconnect() |
|
|
|
|
} |
|
|
|
|
observer.observe(element, MutationObserverOptions) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Suspends until recomposition completes. |
|
|
|
|
*/ |
|
|
|
|
suspend fun waitForRecompositionComplete() { |
|
|
|
|
recompositionCompleteEventsChannel.receive() |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
internal fun runTest(block: suspend TestScope.() -> Unit): dynamic { |
|
|
|
|
/** |
|
|
|
|
* Use this method to test compose-web components rendered using HTML. |
|
|
|
|
* Declare states and make assertions in [block]. |
|
|
|
|
* Use [TestScope.composition] to define the code under test. |
|
|
|
|
* |
|
|
|
|
* For dynamic tests, use [TestScope.waitForRecompositionComplete] |
|
|
|
|
* after changing state's values and before making assertions. |
|
|
|
|
* |
|
|
|
|
* @see [TestScope.composition] |
|
|
|
|
* @see [TestScope.waitForRecompositionComplete] |
|
|
|
|
* @see [TestScope.waitForChanges]. |
|
|
|
|
* |
|
|
|
|
* Test example: |
|
|
|
|
* ``` |
|
|
|
|
* @Test |
|
|
|
|
* fun textChild() = runTest { |
|
|
|
|
* var textState by mutableStateOf("inner text") |
|
|
|
|
* |
|
|
|
|
* composition { |
|
|
|
|
* Div { |
|
|
|
|
* Text(textState) |
|
|
|
|
* } |
|
|
|
|
* } |
|
|
|
|
* assertEquals("<div>inner text</div>", root.innerHTML) |
|
|
|
|
* |
|
|
|
|
* textState = "new text" |
|
|
|
|
* waitForRecompositionComplete() |
|
|
|
|
* |
|
|
|
|
* assertEquals("<div>new text</div>", root.innerHTML) |
|
|
|
|
* } |
|
|
|
|
* ``` |
|
|
|
|
*/ |
|
|
|
|
fun runTest(block: suspend TestScope.() -> Unit): dynamic { |
|
|
|
|
val scope = TestScope() |
|
|
|
|
return scope.promise { block(scope) } |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
internal fun runBlockingTest( |
|
|
|
|
block: suspend CoroutineScope.() -> Unit |
|
|
|
|
): dynamic = testScope.promise { this.block() } |
|
|
|
|
|
|
|
|
|
internal fun String.asHtmlElement() = document.createElement(this) as HTMLElement |
|
|
|
|
|
|
|
|
|
/* Currently, the recompositionRunner relies on AnimationFrame to run the recomposition and |
|
|
|
|
applyChanges. Therefore we can use this method after updating the state and before making |
|
|
|
|
assertions. |
|
|
|
|
|
|
|
|
|
If tests get broken, then DefaultMonotonicFrameClock need to be checked if it still |
|
|
|
|
uses window.requestAnimationFrame */ |
|
|
|
|
internal suspend fun waitForAnimationFrame() { |
|
|
|
|
suspendCoroutine<Unit> { continuation -> |
|
|
|
|
window.requestAnimationFrame { |
|
|
|
|
continuation.resume(Unit) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
fun String.asHtmlElement() = document.createElement(this) as HTMLElement |
|
|
|
|
|
|
|
|
|
private object MutationObserverOptions : MutationObserverInit { |
|
|
|
|
override var childList: Boolean? = true |
|
|
|
@ -71,16 +155,19 @@ private object MutationObserverOptions : MutationObserverInit {
|
|
|
|
|
override var attributeOldValue: Boolean? = true |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
internal suspend fun waitForChanges(elementId: String) { |
|
|
|
|
waitForChanges(document.getElementById(elementId) as HTMLElement) |
|
|
|
|
} |
|
|
|
|
@OptIn(ExperimentalTime::class) |
|
|
|
|
private class TestMonotonicClockImpl( |
|
|
|
|
private val onRecomposeComplete: () -> Unit |
|
|
|
|
) : MonotonicFrameClock { |
|
|
|
|
|
|
|
|
|
internal suspend fun waitForChanges(element: HTMLElement) { |
|
|
|
|
suspendCoroutine<Unit> { continuation -> |
|
|
|
|
val observer = MutationObserver { mutations, observer -> |
|
|
|
|
continuation.resume(Unit) |
|
|
|
|
observer.disconnect() |
|
|
|
|
override suspend fun <R> withFrameNanos( |
|
|
|
|
onFrame: (Long) -> R |
|
|
|
|
): R = suspendCoroutine { continuation -> |
|
|
|
|
window.requestAnimationFrame { |
|
|
|
|
val duration = it.toDuration(DurationUnit.MILLISECONDS) |
|
|
|
|
val result = onFrame(duration.inWholeNanoseconds) |
|
|
|
|
continuation.resume(result) |
|
|
|
|
onRecomposeComplete() |
|
|
|
|
} |
|
|
|
|
observer.observe(element, MutationObserverOptions) |
|
|
|
|
} |
|
|
|
|
} |