| Robert Carr | 3720ed0 | 2018-08-08 16:08:27 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright 2018 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 <gtest/gtest.h> | 
|  | 18 |  | 
| Robert Carr | 5c8a026 | 2018-10-03 16:30:44 -0700 | [diff] [blame] | 19 | #include <binder/Binder.h> | 
| Robert Carr | 3720ed0 | 2018-08-08 16:08:27 -0700 | [diff] [blame] | 20 | #include <binder/Parcel.h> | 
|  | 21 |  | 
|  | 22 | #include <input/InputWindow.h> | 
|  | 23 | #include <input/InputTransport.h> | 
|  | 24 |  | 
|  | 25 | namespace android { | 
|  | 26 | namespace test { | 
|  | 27 |  | 
| Robert Carr | 5c8a026 | 2018-10-03 16:30:44 -0700 | [diff] [blame] | 28 | TEST(InputWindowInfo, ParcellingWithoutToken) { | 
| Robert Carr | 3720ed0 | 2018-08-08 16:08:27 -0700 | [diff] [blame] | 29 | InputWindowInfo i; | 
| Robert Carr | 5c8a026 | 2018-10-03 16:30:44 -0700 | [diff] [blame] | 30 | i.token = nullptr; | 
| Robert Carr | 3720ed0 | 2018-08-08 16:08:27 -0700 | [diff] [blame] | 31 |  | 
|  | 32 | Parcel p; | 
|  | 33 | ASSERT_EQ(OK, i.write(p)); | 
|  | 34 | p.setDataPosition(0); | 
|  | 35 | InputWindowInfo i2 = InputWindowInfo::read(p); | 
| Robert Carr | 5c8a026 | 2018-10-03 16:30:44 -0700 | [diff] [blame] | 36 | ASSERT_TRUE(i2.token == nullptr); | 
| Robert Carr | 3720ed0 | 2018-08-08 16:08:27 -0700 | [diff] [blame] | 37 | } | 
|  | 38 |  | 
|  | 39 | TEST(InputWindowInfo, Parcelling) { | 
| Vishnu Nair | 6fabeec | 2019-03-12 13:42:49 -0700 | [diff] [blame] | 40 | sp<IBinder> touchableRegionCropHandle = new BBinder(); | 
| Robert Carr | 3720ed0 | 2018-08-08 16:08:27 -0700 | [diff] [blame] | 41 | InputWindowInfo i; | 
| Robert Carr | 5c8a026 | 2018-10-03 16:30:44 -0700 | [diff] [blame] | 42 | i.token = new BBinder(); | 
| chaviw | af87b3e | 2019-10-01 16:59:28 -0700 | [diff] [blame] | 43 | i.id = 1; | 
| Robert Carr | 3720ed0 | 2018-08-08 16:08:27 -0700 | [diff] [blame] | 44 | i.name = "Foobar"; | 
|  | 45 | i.layoutParamsFlags = 7; | 
|  | 46 | i.layoutParamsType = 39; | 
|  | 47 | i.dispatchingTimeout = 12; | 
|  | 48 | i.frameLeft = 93; | 
|  | 49 | i.frameTop = 34; | 
|  | 50 | i.frameRight = 16; | 
|  | 51 | i.frameBottom = 19; | 
| Robert Carr | 5cb2578 | 2018-11-14 14:01:42 -0800 | [diff] [blame] | 52 | i.surfaceInset = 17; | 
| Robert Carr | e07e103 | 2018-11-26 12:55:53 -0800 | [diff] [blame] | 53 | i.globalScaleFactor = 0.3; | 
|  | 54 | i.windowXScale = 0.4; | 
|  | 55 | i.windowYScale = 0.5; | 
| Robert Carr | 3720ed0 | 2018-08-08 16:08:27 -0700 | [diff] [blame] | 56 | i.visible = false; | 
|  | 57 | i.canReceiveKeys = false; | 
|  | 58 | i.hasFocus = false; | 
|  | 59 | i.hasWallpaper = false; | 
|  | 60 | i.paused = false; | 
| Robert Carr | 3720ed0 | 2018-08-08 16:08:27 -0700 | [diff] [blame] | 61 | i.ownerPid = 19; | 
|  | 62 | i.ownerUid = 24; | 
|  | 63 | i.inputFeatures = 29; | 
|  | 64 | i.displayId = 34; | 
| Tiger Huang | 85b8c5e | 2019-01-17 18:34:54 +0800 | [diff] [blame] | 65 | i.portalToDisplayId = 2; | 
| Vishnu Nair | 6fabeec | 2019-03-12 13:42:49 -0700 | [diff] [blame] | 66 | i.replaceTouchableRegionWithCrop = true; | 
|  | 67 | i.touchableRegionCropHandle = touchableRegionCropHandle; | 
| Robert Carr | 3720ed0 | 2018-08-08 16:08:27 -0700 | [diff] [blame] | 68 |  | 
|  | 69 | Parcel p; | 
|  | 70 | i.write(p); | 
|  | 71 |  | 
|  | 72 | p.setDataPosition(0); | 
|  | 73 | InputWindowInfo i2 = InputWindowInfo::read(p); | 
| Robert Carr | 5c8a026 | 2018-10-03 16:30:44 -0700 | [diff] [blame] | 74 | ASSERT_EQ(i.token, i2.token); | 
| chaviw | af87b3e | 2019-10-01 16:59:28 -0700 | [diff] [blame] | 75 | ASSERT_EQ(i.id, i2.id); | 
| Robert Carr | 3720ed0 | 2018-08-08 16:08:27 -0700 | [diff] [blame] | 76 | ASSERT_EQ(i.name, i2.name); | 
|  | 77 | ASSERT_EQ(i.layoutParamsFlags, i2.layoutParamsFlags); | 
|  | 78 | ASSERT_EQ(i.layoutParamsType, i2.layoutParamsType); | 
|  | 79 | ASSERT_EQ(i.dispatchingTimeout, i2.dispatchingTimeout); | 
|  | 80 | ASSERT_EQ(i.frameLeft, i2.frameLeft); | 
|  | 81 | ASSERT_EQ(i.frameTop, i2.frameTop); | 
|  | 82 | ASSERT_EQ(i.frameRight, i2.frameRight); | 
|  | 83 | ASSERT_EQ(i.frameBottom, i2.frameBottom); | 
| Robert Carr | 5cb2578 | 2018-11-14 14:01:42 -0800 | [diff] [blame] | 84 | ASSERT_EQ(i.surfaceInset, i2.surfaceInset); | 
| Robert Carr | e07e103 | 2018-11-26 12:55:53 -0800 | [diff] [blame] | 85 | ASSERT_EQ(i.globalScaleFactor, i2.globalScaleFactor); | 
|  | 86 | ASSERT_EQ(i.windowXScale, i2.windowXScale); | 
|  | 87 | ASSERT_EQ(i.windowYScale, i2.windowYScale); | 
| Robert Carr | 3720ed0 | 2018-08-08 16:08:27 -0700 | [diff] [blame] | 88 | ASSERT_EQ(i.visible, i2.visible); | 
|  | 89 | ASSERT_EQ(i.canReceiveKeys, i2.canReceiveKeys); | 
|  | 90 | ASSERT_EQ(i.hasFocus, i2.hasFocus); | 
|  | 91 | ASSERT_EQ(i.hasWallpaper, i2.hasWallpaper); | 
|  | 92 | ASSERT_EQ(i.paused, i2.paused); | 
| Robert Carr | 3720ed0 | 2018-08-08 16:08:27 -0700 | [diff] [blame] | 93 | ASSERT_EQ(i.ownerPid, i2.ownerPid); | 
|  | 94 | ASSERT_EQ(i.ownerUid, i2.ownerUid); | 
|  | 95 | ASSERT_EQ(i.inputFeatures, i2.inputFeatures); | 
|  | 96 | ASSERT_EQ(i.displayId, i2.displayId); | 
| Tiger Huang | 85b8c5e | 2019-01-17 18:34:54 +0800 | [diff] [blame] | 97 | ASSERT_EQ(i.portalToDisplayId, i2.portalToDisplayId); | 
| Vishnu Nair | 6fabeec | 2019-03-12 13:42:49 -0700 | [diff] [blame] | 98 | ASSERT_EQ(i.replaceTouchableRegionWithCrop, i2.replaceTouchableRegionWithCrop); | 
|  | 99 | ASSERT_EQ(i.touchableRegionCropHandle, i2.touchableRegionCropHandle); | 
| Robert Carr | 3720ed0 | 2018-08-08 16:08:27 -0700 | [diff] [blame] | 100 | } | 
|  | 101 |  | 
|  | 102 | } // namespace test | 
|  | 103 | } // namespace android |