| Siarhei Vishniakou | 54d3e18 | 2020-01-15 17:38:38 -0800 | [diff] [blame] | 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 |  | 
| chaviw | 09c8d2d | 2020-08-24 15:48:26 -0700 | [diff] [blame] | 17 | #include <attestation/HmacKeyManager.h> | 
| Siarhei Vishniakou | 54d3e18 | 2020-01-15 17:38:38 -0800 | [diff] [blame] | 18 | #include <gtest/gtest.h> | 
|  | 19 | #include <input/Input.h> | 
|  | 20 |  | 
|  | 21 | namespace android { | 
|  | 22 |  | 
|  | 23 | static KeyEvent getKeyEventWithFlags(int32_t flags) { | 
|  | 24 | KeyEvent event; | 
| Garfield Tan | 4cc839f | 2020-01-24 11:26:14 -0800 | [diff] [blame] | 25 | event.initialize(InputEvent::nextId(), 2 /*deviceId*/, AINPUT_SOURCE_GAMEPAD, | 
|  | 26 | ADISPLAY_ID_DEFAULT, INVALID_HMAC, AKEY_EVENT_ACTION_DOWN, flags, | 
|  | 27 | AKEYCODE_BUTTON_X, 121 /*scanCode*/, AMETA_ALT_ON, 1 /*repeatCount*/, | 
|  | 28 | 1000 /*downTime*/, 2000 /*eventTime*/); | 
| Siarhei Vishniakou | 54d3e18 | 2020-01-15 17:38:38 -0800 | [diff] [blame] | 29 | return event; | 
|  | 30 | } | 
|  | 31 |  | 
|  | 32 | static MotionEvent getMotionEventWithFlags(int32_t flags) { | 
|  | 33 | MotionEvent event; | 
|  | 34 | constexpr size_t pointerCount = 1; | 
|  | 35 | PointerProperties pointerProperties[pointerCount]; | 
|  | 36 | PointerCoords pointerCoords[pointerCount]; | 
|  | 37 | for (size_t i = 0; i < pointerCount; i++) { | 
|  | 38 | pointerProperties[i].clear(); | 
|  | 39 | pointerProperties[i].id = i; | 
|  | 40 | pointerCoords[i].clear(); | 
|  | 41 | } | 
|  | 42 |  | 
| chaviw | 9eaa22c | 2020-07-01 16:21:27 -0700 | [diff] [blame] | 43 | ui::Transform transform; | 
|  | 44 | transform.set({2, 0, 4, 0, 3, 5, 0, 0, 1}); | 
| Garfield Tan | 4cc839f | 2020-01-24 11:26:14 -0800 | [diff] [blame] | 45 | event.initialize(InputEvent::nextId(), 0 /*deviceId*/, AINPUT_SOURCE_MOUSE, ADISPLAY_ID_DEFAULT, | 
|  | 46 | INVALID_HMAC, AMOTION_EVENT_ACTION_DOWN, 0 /*actionButton*/, flags, | 
| Siarhei Vishniakou | 54d3e18 | 2020-01-15 17:38:38 -0800 | [diff] [blame] | 47 | AMOTION_EVENT_EDGE_FLAG_NONE, AMETA_NONE, 0 /*buttonState*/, | 
| chaviw | 9eaa22c | 2020-07-01 16:21:27 -0700 | [diff] [blame] | 48 | MotionClassification::NONE, transform, 0.1 /*xPrecision*/, 0.2 /*yPrecision*/, | 
| Evan Rosky | 84f07f0 | 2021-04-16 10:42:42 -0700 | [diff] [blame] | 49 | 280 /*xCursorPosition*/, 540 /*yCursorPosition*/, | 
|  | 50 | AMOTION_EVENT_INVALID_DISPLAY_SIZE, AMOTION_EVENT_INVALID_DISPLAY_SIZE, | 
|  | 51 | 100 /*downTime*/, 200 /*eventTime*/, pointerCount, pointerProperties, | 
|  | 52 | pointerCoords); | 
| Siarhei Vishniakou | 54d3e18 | 2020-01-15 17:38:38 -0800 | [diff] [blame] | 53 | return event; | 
|  | 54 | } | 
|  | 55 |  | 
|  | 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 |  | 
|  | 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 |  | 
|  | 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 |  | 
|  | 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 |  | 
|  | 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 |  | 
|  | 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 |