@ -5,8 +5,10 @@ import androidx.compose.runtime.setValue
import androidx.compose.runtime.getValue
import androidx.compose.runtime.getValue
import org.jetbrains.compose.web.attributes.*
import org.jetbrains.compose.web.attributes.*
import org.jetbrains.compose.web.core.tests.runTest
import org.jetbrains.compose.web.core.tests.runTest
import org.jetbrains.compose.web.core.tests.waitForAnimationFrame
import org.jetbrains.compose.web.dom.*
import org.jetbrains.compose.web.dom.*
import org.w3c.dom.HTMLInputElement
import org.w3c.dom.HTMLInputElement
import org.w3c.dom.HTMLTextAreaElement
import kotlin.test.Test
import kotlin.test.Test
import kotlin.test.assertEquals
import kotlin.test.assertEquals
@ -437,4 +439,68 @@ class InputsGenerateCorrectHtmlTests {
}
}
assertEquals ( """ <select autocomplete="tel"></select> """ , root . innerHTML )
assertEquals ( """ <select autocomplete="tel"></select> """ , root . innerHTML )
}
}
@Test
fun textInputChangesItsValueFromTextToEmpty ( ) = runTest {
var state by mutableStateOf ( " text " )
composition {
TextInput ( value = state )
}
assertEquals ( " text " , ( root . firstChild as HTMLInputElement ) . value )
state = " "
waitForAnimationFrame ( )
assertEquals ( " " , ( root . firstChild as HTMLInputElement ) . value )
}
@Test
fun textInputChangesItsValueFromEmptyToText ( ) = runTest {
var state by mutableStateOf ( " " )
composition {
TextInput ( value = state )
}
assertEquals ( " " , ( root . firstChild as HTMLInputElement ) . value )
state = " text "
waitForAnimationFrame ( )
assertEquals ( " text " , ( root . firstChild as HTMLInputElement ) . value )
}
@Test
fun textAreaChangesItsValueFromTextToEmpty ( ) = runTest {
var state by mutableStateOf ( " text " )
composition {
TextArea ( value = state )
}
assertEquals ( " text " , ( root . firstChild as HTMLTextAreaElement ) . value )
state = " "
waitForAnimationFrame ( )
assertEquals ( " " , ( root . firstChild as HTMLTextAreaElement ) . value )
}
@Test
fun textAreaChangesItsValueFromEmptyToText ( ) = runTest {
var state by mutableStateOf ( " " )
composition {
TextArea ( value = state )
}
assertEquals ( " " , ( root . firstChild as HTMLTextAreaElement ) . value )
state = " text "
waitForAnimationFrame ( )
assertEquals ( " text " , ( root . firstChild as HTMLTextAreaElement ) . value )
}
}
}