[go: nahoru, domu]

blob: 48388d0a9eaf57f3cab49d6bcb6aa1db2f4b389f [file] [log] [blame]
/*
* Copyright 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.compose.animation
import androidx.compose.animation.core.AnimationConstants.DefaultDurationMillis
import androidx.compose.animation.core.TweenSpec
import androidx.compose.foundation.text.BasicText
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.onDispose
import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.ui.test.junit4.createComposeRule
import androidx.compose.ui.test.onNodeWithText
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.filters.MediumTest
import org.junit.Assert.assertTrue
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
@RunWith(AndroidJUnit4::class)
@MediumTest
class CrossfadeTest {
@get:Rule
val rule = createComposeRule()
@Test
fun crossfadeTest_showsContent() {
rule.clockTestRule.pauseClock()
rule.setContent {
val showFirst by remember { mutableStateOf(true) }
Crossfade(showFirst) {
BasicText(if (it) First else Second)
}
}
rule.clockTestRule.advanceClock(DefaultDurationMillis.toLong())
rule.onNodeWithText(First).assertExists()
}
@Test
fun crossfadeTest_disposesContentOnChange() {
rule.clockTestRule.pauseClock()
var showFirst by mutableStateOf(true)
var disposed = false
rule.setContent {
Crossfade(showFirst) {
BasicText(if (it) First else Second)
onDispose {
disposed = true
}
}
}
rule.clockTestRule.advanceClock(DefaultDurationMillis.toLong())
rule.runOnIdle {
showFirst = false
}
rule.waitForIdle()
rule.clockTestRule.advanceClock(DefaultDurationMillis.toLong())
rule.runOnIdle {
assertTrue(disposed)
}
rule.onNodeWithText(First).assertDoesNotExist()
rule.onNodeWithText(Second).assertExists()
}
@Test
fun crossfadeTest_durationCanBeModifierUsingAnimationSpec() {
rule.clockTestRule.pauseClock()
val duration = 100 // smaller than default 300
var showFirst by mutableStateOf(true)
var disposed = false
rule.setContent {
Crossfade(
showFirst,
animation = TweenSpec(durationMillis = duration)
) {
BasicText(if (it) First else Second)
onDispose {
disposed = true
}
}
}
rule.clockTestRule.advanceClock(duration.toLong())
rule.runOnIdle {
showFirst = false
}
rule.waitForIdle()
rule.clockTestRule.advanceClock(duration.toLong())
rule.runOnIdle {
assertTrue(disposed)
}
}
@Test
fun nullInitialValue() {
rule.clockTestRule.pauseClock()
var current by mutableStateOf<String?>(null)
rule.setContent {
Crossfade(current) { value ->
BasicText(if (value == null) First else Second)
}
}
rule.clockTestRule.advanceClock(DefaultDurationMillis.toLong())
rule.onNodeWithText(First).assertExists()
rule.onNodeWithText(Second).assertDoesNotExist()
rule.runOnIdle {
current = "other"
}
rule.waitForIdle()
rule.clockTestRule.advanceClock(DefaultDurationMillis.toLong())
rule.onNodeWithText(First).assertDoesNotExist()
rule.onNodeWithText(Second).assertExists()
}
companion object {
private const val First = "first"
private const val Second = "second"
}
}