
androidAndroidTest.androidx.compose.ui.text.input.BackspaceCommandTest.kt Maven / Gradle / Ivy
/*
* Copyright 2019 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.ui.text.input
import androidx.compose.ui.text.TextRange
import androidx.test.filters.SdkSuppress
import androidx.test.filters.SmallTest
import com.google.common.truth.Truth.assertThat
import org.junit.Test
import org.junit.runner.RunWith
import androidx.test.ext.junit.runners.AndroidJUnit4
@SmallTest
@RunWith(AndroidJUnit4::class)
class BackspaceCommandTest {
// Test sample surrogate pair characters.
private val SP1 = "\uD83D\uDE00" // U+1F600: GRINNING FACE
private val SP2 = "\uD83D\uDE01" // U+1F601: GRINNING FACE WITH SMILING EYES
private val SP3 = "\uD83D\uDE02" // U+1F602: FACE WITH TEARS OF JOY
private val SP4 = "\uD83D\uDE03" // U+1F603: SMILING FACE WITH OPEN MOUTH
private val SP5 = "\uD83D\uDE04" // U+1F604: SMILING FACE WITH OPEN MOUTH AND SMILING EYES
// Family ZWJ Emoji: U+1F468 U+200D U+1F469 U+200D U+1F467 U+200D U+1F466
private val ZWJ_EMOJI = "\uD83D\uDC68\u200D\uD83D\uDC69\u200D\uD83D\uDC67\u200D\uD83D\uDC66"
@Test
fun test_delete() {
val eb = EditingBuffer("ABCDE", TextRange(1))
BackspaceCommand().applyTo(eb)
assertThat(eb.toString()).isEqualTo("BCDE")
assertThat(eb.cursor).isEqualTo(0)
assertThat(eb.hasComposition()).isFalse()
}
@Test
fun test_delete_from_offset0() {
val eb = EditingBuffer("ABCDE", TextRange.Zero)
BackspaceCommand().applyTo(eb)
assertThat(eb.toString()).isEqualTo("ABCDE")
assertThat(eb.cursor).isEqualTo(0)
assertThat(eb.hasComposition()).isFalse()
}
@Test
fun test_delete_with_selection() {
val eb = EditingBuffer("ABCDE", TextRange(2, 3))
BackspaceCommand().applyTo(eb)
assertThat(eb.toString()).isEqualTo("ABDE")
assertThat(eb.cursor).isEqualTo(2)
assertThat(eb.hasComposition()).isFalse()
}
@Test
fun test_delete_with_composition() {
val eb = EditingBuffer("ABCDE", TextRange(1))
eb.setComposition(2, 3)
BackspaceCommand().applyTo(eb)
assertThat(eb.toString()).isEqualTo("ABDE")
assertThat(eb.cursor).isEqualTo(1)
assertThat(eb.hasComposition()).isFalse()
}
@Test
fun test_delete_surrogate_pair() {
val eb = EditingBuffer("$SP1$SP2$SP3$SP4$SP5", TextRange(2))
BackspaceCommand().applyTo(eb)
assertThat(eb.toString()).isEqualTo("$SP2$SP3$SP4$SP5")
assertThat(eb.cursor).isEqualTo(0)
assertThat(eb.hasComposition()).isFalse()
}
@Test
fun test_delete_with_selection_surrogate_pair() {
val eb = EditingBuffer("$SP1$SP2$SP3$SP4$SP5", TextRange(4, 6))
BackspaceCommand().applyTo(eb)
assertThat(eb.toString()).isEqualTo("$SP1$SP2$SP4$SP5")
assertThat(eb.cursor).isEqualTo(4)
assertThat(eb.hasComposition()).isFalse()
}
@Test
fun test_delete_with_composition_surrogate_pair() {
val eb = EditingBuffer("$SP1$SP2$SP3$SP4$SP5", TextRange(2))
eb.setComposition(4, 6)
BackspaceCommand().applyTo(eb)
assertThat(eb.toString()).isEqualTo("$SP1$SP2$SP4$SP5")
assertThat(eb.cursor).isEqualTo(2)
assertThat(eb.hasComposition()).isFalse()
}
@Test
@SdkSuppress(minSdkVersion = 26)
fun test_delete_with_composition_zwj_emoji() {
val eb = EditingBuffer(
"$ZWJ_EMOJI$ZWJ_EMOJI",
TextRange(ZWJ_EMOJI.length)
)
BackspaceCommand().applyTo(eb)
assertThat(eb.toString()).isEqualTo(ZWJ_EMOJI)
assertThat(eb.cursor).isEqualTo(0)
assertThat(eb.hasComposition()).isFalse()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy