1 /*
2 * Copyright (C) 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include <attestation/HmacKeyManager.h>
18 #include <gtest/gtest.h>
19 #include <gui/constants.h>
20 #include <input/Input.h>
21
22 namespace android {
23
getKeyEventWithFlags(int32_t flags)24 static KeyEvent getKeyEventWithFlags(int32_t flags) {
25 KeyEvent event;
26 event.initialize(InputEvent::nextId(), 2 /*deviceId*/, AINPUT_SOURCE_GAMEPAD,
27 ADISPLAY_ID_DEFAULT, INVALID_HMAC, AKEY_EVENT_ACTION_DOWN, flags,
28 AKEYCODE_BUTTON_X, 121 /*scanCode*/, AMETA_ALT_ON, 1 /*repeatCount*/,
29 1000 /*downTime*/, 2000 /*eventTime*/);
30 return event;
31 }
32
getMotionEventWithFlags(int32_t flags)33 static MotionEvent getMotionEventWithFlags(int32_t flags) {
34 MotionEvent event;
35 constexpr size_t pointerCount = 1;
36 PointerProperties pointerProperties[pointerCount];
37 PointerCoords pointerCoords[pointerCount];
38 for (size_t i = 0; i < pointerCount; i++) {
39 pointerProperties[i].clear();
40 pointerProperties[i].id = i;
41 pointerCoords[i].clear();
42 }
43
44 ui::Transform transform;
45 transform.set({2, 0, 4, 0, 3, 5, 0, 0, 1});
46 event.initialize(InputEvent::nextId(), 0 /*deviceId*/, AINPUT_SOURCE_MOUSE, ADISPLAY_ID_DEFAULT,
47 INVALID_HMAC, AMOTION_EVENT_ACTION_DOWN, 0 /*actionButton*/, flags,
48 AMOTION_EVENT_EDGE_FLAG_NONE, AMETA_NONE, 0 /*buttonState*/,
49 MotionClassification::NONE, transform, 0.1 /*xPrecision*/, 0.2 /*yPrecision*/,
50 280 /*xCursorPosition*/, 540 /*yCursorPosition*/, ui::Transform::ROT_0,
51 INVALID_DISPLAY_SIZE, INVALID_DISPLAY_SIZE, 100 /*downTime*/,
52 200 /*eventTime*/, pointerCount, pointerProperties, pointerCoords);
53 return event;
54 }
55
TEST(VerifiedKeyEventTest,ConvertKeyEventToVerifiedKeyEvent)56 TEST(VerifiedKeyEventTest, ConvertKeyEventToVerifiedKeyEvent) {
57 KeyEvent event = getKeyEventWithFlags(0);
58 VerifiedKeyEvent verified = verifiedKeyEventFromKeyEvent(event);
59
60 ASSERT_EQ(VerifiedInputEvent::Type::KEY, verified.type);
61
62 ASSERT_EQ(event.getDeviceId(), verified.deviceId);
63 ASSERT_EQ(event.getEventTime(), verified.eventTimeNanos);
64 ASSERT_EQ(event.getSource(), verified.source);
65 ASSERT_EQ(event.getDisplayId(), verified.displayId);
66
67 ASSERT_EQ(event.getAction(), verified.action);
68 ASSERT_EQ(event.getDownTime(), verified.downTimeNanos);
69 ASSERT_EQ(event.getFlags() & VERIFIED_KEY_EVENT_FLAGS, verified.flags);
70 ASSERT_EQ(event.getKeyCode(), verified.keyCode);
71 ASSERT_EQ(event.getScanCode(), verified.scanCode);
72 ASSERT_EQ(event.getMetaState(), verified.metaState);
73 ASSERT_EQ(event.getRepeatCount(), verified.repeatCount);
74 }
75
TEST(VerifiedKeyEventTest,VerifiedKeyEventContainsOnlyVerifiedFlags)76 TEST(VerifiedKeyEventTest, VerifiedKeyEventContainsOnlyVerifiedFlags) {
77 KeyEvent event = getKeyEventWithFlags(AKEY_EVENT_FLAG_CANCELED | AKEY_EVENT_FLAG_FALLBACK);
78 VerifiedKeyEvent verified = verifiedKeyEventFromKeyEvent(event);
79 ASSERT_EQ(AKEY_EVENT_FLAG_CANCELED, verified.flags);
80 }
81
TEST(VerifiedKeyEventTest,VerifiedKeyEventDoesNotContainUnverifiedFlags)82 TEST(VerifiedKeyEventTest, VerifiedKeyEventDoesNotContainUnverifiedFlags) {
83 KeyEvent event = getKeyEventWithFlags(AKEY_EVENT_FLAG_EDITOR_ACTION);
84 VerifiedKeyEvent verified = verifiedKeyEventFromKeyEvent(event);
85 ASSERT_EQ(0, verified.flags);
86 }
87
TEST(VerifiedMotionEventTest,ConvertMotionEventToVerifiedMotionEvent)88 TEST(VerifiedMotionEventTest, ConvertMotionEventToVerifiedMotionEvent) {
89 MotionEvent event = getMotionEventWithFlags(0);
90 VerifiedMotionEvent verified = verifiedMotionEventFromMotionEvent(event);
91
92 ASSERT_EQ(VerifiedInputEvent::Type::MOTION, verified.type);
93
94 ASSERT_EQ(event.getDeviceId(), verified.deviceId);
95 ASSERT_EQ(event.getEventTime(), verified.eventTimeNanos);
96 ASSERT_EQ(event.getSource(), verified.source);
97 ASSERT_EQ(event.getDisplayId(), verified.displayId);
98
99 ASSERT_EQ(event.getRawX(0), verified.rawX);
100 ASSERT_EQ(event.getRawY(0), verified.rawY);
101 ASSERT_EQ(event.getAction(), verified.actionMasked);
102 ASSERT_EQ(event.getDownTime(), verified.downTimeNanos);
103 ASSERT_EQ(event.getFlags() & VERIFIED_MOTION_EVENT_FLAGS, verified.flags);
104 ASSERT_EQ(event.getMetaState(), verified.metaState);
105 ASSERT_EQ(event.getButtonState(), verified.buttonState);
106 }
107
TEST(VerifiedMotionEventTest,VerifiedMotionEventContainsOnlyVerifiedFlags)108 TEST(VerifiedMotionEventTest, VerifiedMotionEventContainsOnlyVerifiedFlags) {
109 MotionEvent event = getMotionEventWithFlags(AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED |
110 AMOTION_EVENT_FLAG_IS_GENERATED_GESTURE);
111 VerifiedMotionEvent verified = verifiedMotionEventFromMotionEvent(event);
112 ASSERT_EQ(AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED, verified.flags);
113 }
114
TEST(VerifiedMotionEventTest,VerifiedMotionEventDoesNotContainUnverifiedFlags)115 TEST(VerifiedMotionEventTest, VerifiedMotionEventDoesNotContainUnverifiedFlags) {
116 MotionEvent event = getMotionEventWithFlags(AMOTION_EVENT_FLAG_TAINTED);
117 VerifiedMotionEvent verified = verifiedMotionEventFromMotionEvent(event);
118 ASSERT_EQ(0, verified.flags);
119 }
120
121 } // namespace android
122