Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a1a7831d authored by Prabir Pradhan's avatar Prabir Pradhan Committed by Android (Google) Code Review
Browse files

Merge "Add unit tests for InputManager#getHostUsiVersion"

parents dac8fc7c 272921dd
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -561,6 +561,7 @@ public final class InputDevice implements Parcelable {
        private String mKeyboardLayoutType = null;
        private int mUsiVersionMajor = -1;
        private int mUsiVersionMinor = -1;
        private int mAssociatedDisplayId = Display.INVALID_DISPLAY;
        private List<MotionRange> mMotionRanges = new ArrayList<>();

        /** @see InputDevice#getId() */
@@ -678,6 +679,12 @@ public final class InputDevice implements Parcelable {
            return this;
        }

        /** @see InputDevice#getAssociatedDisplayId() */
        public Builder setAssociatedDisplayId(int displayId) {
            mAssociatedDisplayId = displayId;
            return this;
        }

        /** @see InputDevice#getMotionRanges() */
        public Builder addMotionRange(int axis, int source,
                float min, float max, float flat, float fuzz, float resolution) {
@@ -708,7 +715,7 @@ public final class InputDevice implements Parcelable {
                    mHasBattery,
                    mUsiVersionMajor,
                    mUsiVersionMinor,
                    Display.INVALID_DISPLAY);
                    mAssociatedDisplayId);

            final int numRanges = mMotionRanges.size();
            for (int i = 0; i < numRanges; i++) {
+143 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2023 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 android.hardware.input

import android.content.res.Resources
import android.platform.test.annotations.Presubmit
import android.view.Display
import android.view.DisplayInfo
import android.view.InputDevice
import org.junit.After
import org.junit.Assert.assertNotNull
import org.junit.Assert.assertEquals
import org.junit.Before
import org.junit.Rule
import org.junit.Test
import org.junit.runner.RunWith
import org.mockito.Mock
import org.mockito.Mockito.eq
import org.mockito.Mockito.`when`
import org.mockito.junit.MockitoJUnit
import org.mockito.junit.MockitoJUnitRunner

/**
 * Tests for [InputManager].
 *
 * Build/Install/Run:
 * atest FrameworksCoreTests:InputManagerTest
 */
@Presubmit
@RunWith(MockitoJUnitRunner::class)
class InputManagerTest {

    companion object {
        const val DEVICE_ID = 42
        const val SECOND_DEVICE_ID = 96
        const val THIRD_DEVICE_ID = 99
    }

    @get:Rule
    val rule = MockitoJUnit.rule()!!

    private lateinit var inputManager: InputManager

    private lateinit var devicesChangedListener: IInputDevicesChangedListener
    private val deviceGenerationMap = mutableMapOf<Int /*deviceId*/, Int /*generation*/>()

    @Mock
    private lateinit var iInputManager: IInputManager

    @Before
    fun setUp() {
        inputManager = InputManager.resetInstance(iInputManager)
        `when`(iInputManager.inputDeviceIds).then {
            deviceGenerationMap.keys.toIntArray()
        }
    }

    @After
    fun tearDown() {
        InputManager.clearInstance()
    }

    private fun notifyDeviceChanged(
        deviceId: Int,
        associatedDisplayId: Int,
        usiVersion: HostUsiVersion?,
    ) {
        val generation = deviceGenerationMap[deviceId]?.plus(1)
            ?: throw IllegalArgumentException("Device $deviceId was never added!")
        deviceGenerationMap[deviceId] = generation

        `when`(iInputManager.getInputDevice(deviceId))
            .thenReturn(createInputDevice(deviceId, associatedDisplayId, usiVersion, generation))
        val list = deviceGenerationMap.flatMap { listOf(it.key, it.value) }
        if (::devicesChangedListener.isInitialized) {
            devicesChangedListener.onInputDevicesChanged(list.toIntArray())
        }
    }

    private fun addInputDevice(
        deviceId: Int,
        associatedDisplayId: Int,
        usiVersion: HostUsiVersion?,
    ) {
        deviceGenerationMap[deviceId] = 0
        notifyDeviceChanged(deviceId, associatedDisplayId, usiVersion)
    }

    @Test
    fun testUsiVersionDisplayAssociation() {
        addInputDevice(DEVICE_ID, Display.DEFAULT_DISPLAY, null)
        addInputDevice(SECOND_DEVICE_ID, Display.INVALID_DISPLAY, HostUsiVersion(9, 8))
        addInputDevice(THIRD_DEVICE_ID, 42, HostUsiVersion(3, 1))

        val usiVersion = inputManager.getHostUsiVersion(createDisplay(42))
        assertNotNull(usiVersion)
        assertEquals(3, usiVersion!!.majorVersion)
        assertEquals(1, usiVersion.minorVersion)
    }

    @Test
    fun testUsiVersionFallBackToDisplayConfig() {
        addInputDevice(DEVICE_ID, Display.DEFAULT_DISPLAY, null)

        `when`(iInputManager.getHostUsiVersionFromDisplayConfig(eq(42)))
            .thenReturn(HostUsiVersion(9, 8))
        val usiVersion = inputManager.getHostUsiVersion(createDisplay(42))
        assertEquals(HostUsiVersion(9, 8), usiVersion)
    }
}

private fun createInputDevice(
    deviceId: Int,
    associatedDisplayId: Int,
    usiVersion: HostUsiVersion? = null,
    generation: Int = -1,
): InputDevice =
    InputDevice.Builder()
        .setId(deviceId)
        .setName("Device $deviceId")
        .setDescriptor("descriptor $deviceId")
        .setAssociatedDisplayId(associatedDisplayId)
        .setUsiVersion(usiVersion)
        .setGeneration(generation)
        .build()

private fun createDisplay(displayId: Int): Display {
    val res: Resources? = null
    return Display(null /* global */, displayId, DisplayInfo(), res)
}