blob: 5712ca775d656730c6690d8277c5707bfe082d7d [file] [log] [blame]
/*
* Copyright (C) 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 android.hardware.input.cts.tests;
import static org.junit.Assert.assertEquals;
import android.hardware.cts.R;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import androidx.test.filters.SmallTest;
import org.junit.Test;
import org.junit.runner.RunWith;
@SmallTest
@RunWith(AndroidJUnit4.class)
public class MicrosoftDesignerKeyboardTest extends InputTestCase {
public MicrosoftDesignerKeyboardTest() {
super(R.raw.microsoft_designer_keyboard_register);
}
@Test
public void testAllKeys() {
testInputEvents(R.raw.microsoft_designer_keyboard_keyeventtests);
}
/**
* Relax the source check on this test because we encountered a Linux kernel behavior change in
* 4.18 or later that splits the device into multiple devices according to its applications in
* HID descriptor. That change further lets Android framework split the KeyboardInputMapper
* because it thinks they are different devices which in turn split the source flags. Therefore
* we relax the test so that it can pass with both behaviors until we reach a consensus with
* upstream Linux on the desired behavior.
*/
@Override
void assertSource(String testCase, int expectedSource, int actualSource) {
assertEquals(testCase + " (source)", expectedSource & actualSource, actualSource);
}
}