[go: nahoru, domu]

blob: de55f5787a7ebbb537ec8dedc9598cf945d2b395 [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.ui.test.partialgesturescope
import android.os.SystemClock.sleep
import androidx.test.filters.MediumTest
import androidx.ui.geometry.Offset
import androidx.ui.test.InputDispatcher.InputDispatcherTestRule
import androidx.ui.test.createComposeRule
import androidx.ui.test.partialgesturescope.Common.partialGesture
import androidx.ui.test.runOnIdle
import androidx.ui.test.down
import androidx.ui.test.util.ClickableTestBox
import androidx.ui.test.util.MultiPointerInputRecorder
import androidx.ui.test.util.assertTimestampsAreIncreasing
import androidx.ui.test.util.expectError
import androidx.ui.test.util.verify
import com.google.common.truth.Truth.assertThat
import org.junit.Before
import org.junit.Rule
import org.junit.Test
import org.junit.rules.TestRule
/**
* Tests if [down] works
*/
@MediumTest
class SendDownTest {
companion object {
private val position1 = Offset(5f, 5f)
private val position2 = Offset(7f, 7f)
}
@get:Rule
val composeTestRule = createComposeRule()
@get:Rule
val inputDispatcherRule: TestRule = InputDispatcherTestRule(disableDispatchInRealTime = true)
private val recorder = MultiPointerInputRecorder()
@Before
fun setUp() {
// Given some content
composeTestRule.setContent {
ClickableTestBox(recorder)
}
}
@Test
fun onePointer() {
// When we put a pointer down
partialGesture { down(position1) }
runOnIdle {
recorder.run {
// Then we have recorded 1 down event
assertTimestampsAreIncreasing()
assertThat(events).hasSize(1)
assertThat(events[0].pointerCount).isEqualTo(1)
events[0].getPointer(0).verify(null, null, true, position1)
}
}
}
@Test
fun twoPointers() {
// When we put two pointers down
partialGesture { down(1, position1) }
sleep(20) // (with some time in between)
partialGesture { down(2, position2) }
runOnIdle {
recorder.run {
// Then we have recorded 2 down events with the same timestamp
assertTimestampsAreIncreasing()
assertThat(events).hasSize(2)
assertThat(events[0].pointerCount).isEqualTo(1)
events[0].getPointer(0).verify(null, null, true, position1)
val t = events[0].getPointer(0).timestamp
val pointerId1 = events[0].getPointer(0).id
assertThat(events[1].pointerCount).isEqualTo(2)
events[1].getPointer(0).verify(t, pointerId1, true, position1)
events[1].getPointer(1).verify(t, null, true, position2)
val pointerId2 = events[1].getPointer(1).id
assertThat(pointerId2).isNotEqualTo(pointerId1)
}
}
}
@Test
fun duplicatePointers() {
// When we inject two down events with the same pointer id
partialGesture { down(1, position1) }
// Then the second throws an exception
expectError<IllegalArgumentException> {
partialGesture { down(1, position1) }
}
}
}