blob: 2637f59b5e76115d687901a3bbb67bf9a4c462cd [file] [log] [blame]
Robert Carr1c4c5592018-09-24 13:18:43 -07001/*
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#include <stdlib.h>
19#include <unistd.h>
20#include <sys/time.h>
21#include <sys/types.h>
22#include <stdio.h>
23#include <poll.h>
24
25#include <memory>
26
Vishnu Naira066d902021-09-13 18:40:17 -070027#include <android/keycodes.h>
Vishnu Nairde19f852018-12-18 16:11:53 -080028#include <android/native_window.h>
29
Robert Carr1c4c5592018-09-24 13:18:43 -070030#include <binder/Binder.h>
31#include <binder/IServiceManager.h>
32#include <binder/Parcel.h>
33#include <binder/ProcessState.h>
34
Vishnu Nairde19f852018-12-18 16:11:53 -080035#include <gui/ISurfaceComposer.h>
36#include <gui/Surface.h>
Robert Carr1c4c5592018-09-24 13:18:43 -070037#include <gui/SurfaceComposerClient.h>
38#include <gui/SurfaceControl.h>
39
Chris Ye0783e992020-06-02 21:34:49 -070040#include <android/os/IInputFlinger.h>
chaviw98318de2021-05-19 16:45:23 -050041#include <gui/WindowInfo.h>
Robert Carr1c4c5592018-09-24 13:18:43 -070042#include <input/Input.h>
Chris Ye0783e992020-06-02 21:34:49 -070043#include <input/InputTransport.h>
Robert Carr1c4c5592018-09-24 13:18:43 -070044
Marin Shalamanova7fe3042021-01-29 21:02:08 +010045#include <ui/DisplayMode.h>
Robert Carr1c4c5592018-09-24 13:18:43 -070046#include <ui/Rect.h>
47#include <ui/Region.h>
48
Prabir Pradhand0aba782021-12-14 00:44:21 -080049#include <private/android_filesystem_config.h>
50
Chris Ye0783e992020-06-02 21:34:49 -070051using android::os::IInputFlinger;
Robert Carr1c4c5592018-09-24 13:18:43 -070052
chaviw39d01472021-04-08 14:26:24 -050053using android::hardware::graphics::common::V1_1::BufferUsage;
54
chaviw98318de2021-05-19 16:45:23 -050055using android::gui::FocusRequest;
56using android::gui::InputApplicationInfo;
57using android::gui::TouchOcclusionMode;
58using android::gui::WindowInfo;
59
Vishnu Nair958da932020-08-21 17:12:37 -070060namespace android::test {
Robert Carr1c4c5592018-09-24 13:18:43 -070061
Vishnu Nairde19f852018-12-18 16:11:53 -080062using Transaction = SurfaceComposerClient::Transaction;
63
Robert Carr1c4c5592018-09-24 13:18:43 -070064sp<IInputFlinger> getInputFlinger() {
65 sp<IBinder> input(defaultServiceManager()->getService(
66 String16("inputflinger")));
67 if (input == nullptr) {
68 ALOGE("Failed to link to input service");
69 } else { ALOGE("Linked to input"); }
70 return interface_cast<IInputFlinger>(input);
71}
72
73// We use the top 10 layers as a way to haphazardly place ourselves above anything else.
74static const int LAYER_BASE = INT32_MAX - 10;
Chris Ye6c4243b2020-07-22 12:07:12 -070075static constexpr std::chrono::nanoseconds DISPATCHING_TIMEOUT = 5s;
Robert Carr1c4c5592018-09-24 13:18:43 -070076
77class InputSurface {
78public:
Linus Tufvessona1858822022-03-04 09:32:07 +000079 InputSurface(const sp<SurfaceControl> &sc, int width, int height, bool noInputChannel = false) {
Vishnu Nairde19f852018-12-18 16:11:53 -080080 mSurfaceControl = sc;
Robert Carr1c4c5592018-09-24 13:18:43 -070081
82 mInputFlinger = getInputFlinger();
Linus Tufvessona1858822022-03-04 09:32:07 +000083 if (noInputChannel) {
84 mInputInfo.setInputConfig(WindowInfo::InputConfig::NO_INPUT_CHANNEL, true);
85 } else {
86 mClientChannel = std::make_shared<InputChannel>();
87 mInputFlinger->createInputChannel("testchannels", mClientChannel.get());
88 mInputInfo.token = mClientChannel->getConnectionToken();
89 mInputConsumer = new InputConsumer(mClientChannel);
90 }
Robert Carr1c4c5592018-09-24 13:18:43 -070091
Linus Tufvessona1858822022-03-04 09:32:07 +000092 mInputInfo.name = "Test info";
93 mInputInfo.dispatchingTimeout = 5s;
94 mInputInfo.globalScaleFactor = 1.0;
95 mInputInfo.touchableRegion.orSelf(Rect(0, 0, width, height));
Robert Carr1c4c5592018-09-24 13:18:43 -070096
Linus Tufvessona1858822022-03-04 09:32:07 +000097 InputApplicationInfo aInfo;
98 aInfo.token = new BBinder();
99 aInfo.name = "Test app info";
100 aInfo.dispatchingTimeoutMillis =
101 std::chrono::duration_cast<std::chrono::milliseconds>(DISPATCHING_TIMEOUT).count();
102 mInputInfo.applicationInfo = aInfo;
Robert Carr1c4c5592018-09-24 13:18:43 -0700103 }
104
Vishnu Nairde19f852018-12-18 16:11:53 -0800105 static std::unique_ptr<InputSurface> makeColorInputSurface(const sp<SurfaceComposerClient> &scc,
106 int width, int height) {
107 sp<SurfaceControl> surfaceControl =
108 scc->createSurface(String8("Test Surface"), 0 /* bufHeight */, 0 /* bufWidth */,
Vishnu Nairfa247b12020-02-11 08:58:26 -0800109 PIXEL_FORMAT_RGBA_8888,
110 ISurfaceComposerClient::eFXSurfaceEffect);
Vishnu Nairde19f852018-12-18 16:11:53 -0800111 return std::make_unique<InputSurface>(surfaceControl, width, height);
112 }
113
114 static std::unique_ptr<InputSurface> makeBufferInputSurface(
115 const sp<SurfaceComposerClient> &scc, int width, int height) {
116 sp<SurfaceControl> surfaceControl =
117 scc->createSurface(String8("Test Buffer Surface"), width, height,
118 PIXEL_FORMAT_RGBA_8888, 0 /* flags */);
119 return std::make_unique<InputSurface>(surfaceControl, width, height);
120 }
121
122 static std::unique_ptr<InputSurface> makeContainerInputSurface(
123 const sp<SurfaceComposerClient> &scc, int width, int height) {
124 sp<SurfaceControl> surfaceControl =
125 scc->createSurface(String8("Test Container Surface"), 0 /* bufHeight */,
126 0 /* bufWidth */, PIXEL_FORMAT_RGBA_8888,
127 ISurfaceComposerClient::eFXSurfaceContainer);
128 return std::make_unique<InputSurface>(surfaceControl, width, height);
129 }
130
Linus Tufvessona1858822022-03-04 09:32:07 +0000131 static std::unique_ptr<InputSurface> makeContainerInputSurfaceNoInputChannel(
132 const sp<SurfaceComposerClient> &scc, int width, int height) {
133 sp<SurfaceControl> surfaceControl =
134 scc->createSurface(String8("Test Container Surface"), 100 /* height */,
135 100 /* width */, PIXEL_FORMAT_RGBA_8888,
136 ISurfaceComposerClient::eFXSurfaceContainer);
137 return std::make_unique<InputSurface>(surfaceControl, width, height,
138 true /* noInputChannel */);
139 }
140
arthurhungb4a0f852020-06-16 11:02:50 +0800141 static std::unique_ptr<InputSurface> makeCursorInputSurface(
142 const sp<SurfaceComposerClient> &scc, int width, int height) {
143 sp<SurfaceControl> surfaceControl =
144 scc->createSurface(String8("Test Cursor Surface"), 0 /* bufHeight */,
145 0 /* bufWidth */, PIXEL_FORMAT_RGBA_8888,
146 ISurfaceComposerClient::eCursorWindow);
147 return std::make_unique<InputSurface>(surfaceControl, width, height);
148 }
149
Vishnu Naira066d902021-09-13 18:40:17 -0700150 InputEvent *consumeEvent(int timeoutMs = 3000) {
151 waitForEventAvailable(timeoutMs);
Robert Carr1c4c5592018-09-24 13:18:43 -0700152
153 InputEvent *ev;
154 uint32_t seqId;
155 status_t consumed = mInputConsumer->consume(&mInputEventFactory, true, -1, &seqId, &ev);
156 if (consumed != OK) {
157 return nullptr;
158 }
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100159 status_t status = mInputConsumer->sendFinishedSignal(seqId, true);
160 EXPECT_EQ(OK, status) << "Could not send finished signal";
Robert Carr1c4c5592018-09-24 13:18:43 -0700161 return ev;
162 }
163
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100164 void assertFocusChange(bool hasFocus) {
165 InputEvent *ev = consumeEvent();
166 ASSERT_NE(ev, nullptr);
167 ASSERT_EQ(AINPUT_EVENT_TYPE_FOCUS, ev->getType());
168 FocusEvent *focusEvent = static_cast<FocusEvent *>(ev);
169 EXPECT_EQ(hasFocus, focusEvent->getHasFocus());
170 }
171
Robert Carr1c4c5592018-09-24 13:18:43 -0700172 void expectTap(int x, int y) {
173 InputEvent* ev = consumeEvent();
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100174 ASSERT_NE(ev, nullptr);
175 ASSERT_EQ(AINPUT_EVENT_TYPE_MOTION, ev->getType());
Robert Carr1c4c5592018-09-24 13:18:43 -0700176 MotionEvent* mev = static_cast<MotionEvent*>(ev);
177 EXPECT_EQ(AMOTION_EVENT_ACTION_DOWN, mev->getAction());
178 EXPECT_EQ(x, mev->getX(0));
179 EXPECT_EQ(y, mev->getY(0));
arthurhungb4a0f852020-06-16 11:02:50 +0800180 EXPECT_EQ(0, mev->getFlags() & VERIFIED_MOTION_EVENT_FLAGS);
Robert Carr1c4c5592018-09-24 13:18:43 -0700181
182 ev = consumeEvent();
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100183 ASSERT_NE(ev, nullptr);
184 ASSERT_EQ(AINPUT_EVENT_TYPE_MOTION, ev->getType());
Robert Carr1c4c5592018-09-24 13:18:43 -0700185 mev = static_cast<MotionEvent*>(ev);
186 EXPECT_EQ(AMOTION_EVENT_ACTION_UP, mev->getAction());
arthurhungb4a0f852020-06-16 11:02:50 +0800187 EXPECT_EQ(0, mev->getFlags() & VERIFIED_MOTION_EVENT_FLAGS);
Robert Carr1c4c5592018-09-24 13:18:43 -0700188 }
189
chaviw39cfa2e2020-11-04 14:19:02 -0800190 void expectTapWithFlag(int x, int y, int32_t flags) {
191 InputEvent *ev = consumeEvent();
192 ASSERT_NE(ev, nullptr);
193 ASSERT_EQ(AINPUT_EVENT_TYPE_MOTION, ev->getType());
194 MotionEvent *mev = static_cast<MotionEvent *>(ev);
195 EXPECT_EQ(AMOTION_EVENT_ACTION_DOWN, mev->getAction());
196 EXPECT_EQ(x, mev->getX(0));
197 EXPECT_EQ(y, mev->getY(0));
198 EXPECT_EQ(flags, mev->getFlags() & flags);
199
200 ev = consumeEvent();
201 ASSERT_NE(ev, nullptr);
202 ASSERT_EQ(AINPUT_EVENT_TYPE_MOTION, ev->getType());
203 mev = static_cast<MotionEvent *>(ev);
204 EXPECT_EQ(AMOTION_EVENT_ACTION_UP, mev->getAction());
205 EXPECT_EQ(flags, mev->getFlags() & flags);
206 }
207
Prabir Pradhand0aba782021-12-14 00:44:21 -0800208 void expectTapInDisplayCoordinates(int displayX, int displayY) {
209 InputEvent *ev = consumeEvent();
210 ASSERT_NE(ev, nullptr);
211 ASSERT_EQ(AINPUT_EVENT_TYPE_MOTION, ev->getType());
212 MotionEvent *mev = static_cast<MotionEvent *>(ev);
213 EXPECT_EQ(AMOTION_EVENT_ACTION_DOWN, mev->getAction());
214 const PointerCoords &coords = *mev->getRawPointerCoords(0 /*pointerIndex*/);
215 EXPECT_EQ(displayX, coords.getX());
216 EXPECT_EQ(displayY, coords.getY());
217 EXPECT_EQ(0, mev->getFlags() & VERIFIED_MOTION_EVENT_FLAGS);
218
219 ev = consumeEvent();
220 ASSERT_NE(ev, nullptr);
221 ASSERT_EQ(AINPUT_EVENT_TYPE_MOTION, ev->getType());
222 mev = static_cast<MotionEvent *>(ev);
223 EXPECT_EQ(AMOTION_EVENT_ACTION_UP, mev->getAction());
224 EXPECT_EQ(0, mev->getFlags() & VERIFIED_MOTION_EVENT_FLAGS);
225 }
226
Vishnu Naira066d902021-09-13 18:40:17 -0700227 void expectKey(uint32_t keycode) {
228 InputEvent *ev = consumeEvent();
229 ASSERT_NE(ev, nullptr);
230 ASSERT_EQ(AINPUT_EVENT_TYPE_KEY, ev->getType());
231 KeyEvent *keyEvent = static_cast<KeyEvent *>(ev);
232 EXPECT_EQ(AMOTION_EVENT_ACTION_DOWN, keyEvent->getAction());
233 EXPECT_EQ(keycode, keyEvent->getKeyCode());
234 EXPECT_EQ(0, keyEvent->getFlags() & VERIFIED_KEY_EVENT_FLAGS);
235
236 ev = consumeEvent();
237 ASSERT_NE(ev, nullptr);
238 ASSERT_EQ(AINPUT_EVENT_TYPE_KEY, ev->getType());
239 keyEvent = static_cast<KeyEvent *>(ev);
240 EXPECT_EQ(AMOTION_EVENT_ACTION_UP, keyEvent->getAction());
241 EXPECT_EQ(keycode, keyEvent->getKeyCode());
242 EXPECT_EQ(0, keyEvent->getFlags() & VERIFIED_KEY_EVENT_FLAGS);
243 }
244
chaviw39d01472021-04-08 14:26:24 -0500245 virtual ~InputSurface() {
Linus Tufvessona1858822022-03-04 09:32:07 +0000246 if (mClientChannel) {
247 mInputFlinger->removeInputChannel(mClientChannel->getConnectionToken());
248 }
chaviw39d01472021-04-08 14:26:24 -0500249 }
Robert Carr1c4c5592018-09-24 13:18:43 -0700250
chaviw39d01472021-04-08 14:26:24 -0500251 virtual void doTransaction(
252 std::function<void(SurfaceComposerClient::Transaction &, const sp<SurfaceControl> &)>
253 transactionBody) {
Robert Carr1c4c5592018-09-24 13:18:43 -0700254 SurfaceComposerClient::Transaction t;
255 transactionBody(t, mSurfaceControl);
256 t.apply(true);
257 }
258
chaviw39d01472021-04-08 14:26:24 -0500259 virtual void showAt(int x, int y, Rect crop = Rect(0, 0, 100, 100)) {
Robert Carr1c4c5592018-09-24 13:18:43 -0700260 SurfaceComposerClient::Transaction t;
261 t.show(mSurfaceControl);
262 t.setInputWindowInfo(mSurfaceControl, mInputInfo);
263 t.setLayer(mSurfaceControl, LAYER_BASE);
264 t.setPosition(mSurfaceControl, x, y);
chaviw25714502021-02-11 10:01:08 -0800265 t.setCrop(mSurfaceControl, crop);
Robert Carr1c4c5592018-09-24 13:18:43 -0700266 t.setAlpha(mSurfaceControl, 1);
267 t.apply(true);
268 }
269
Vishnu Nair16a938f2021-09-24 07:14:54 -0700270 void requestFocus(int displayId = ADISPLAY_ID_DEFAULT) {
Vishnu Nair958da932020-08-21 17:12:37 -0700271 SurfaceComposerClient::Transaction t;
Vishnu Nair9ad01462021-01-15 12:55:14 -0800272 FocusRequest request;
273 request.token = mInputInfo.token;
274 request.windowName = mInputInfo.name;
275 request.focusedToken = nullptr;
276 request.focusedWindowName = "";
277 request.timestamp = systemTime(SYSTEM_TIME_MONOTONIC);
Vishnu Nair16a938f2021-09-24 07:14:54 -0700278 request.displayId = displayId;
Vishnu Nair9ad01462021-01-15 12:55:14 -0800279 t.setFocusedWindow(request);
Vishnu Nair958da932020-08-21 17:12:37 -0700280 t.apply(true);
281 }
282
Robert Carr1c4c5592018-09-24 13:18:43 -0700283private:
Vishnu Naira066d902021-09-13 18:40:17 -0700284 void waitForEventAvailable(int timeoutMs) {
Robert Carr1c4c5592018-09-24 13:18:43 -0700285 struct pollfd fd;
286
287 fd.fd = mClientChannel->getFd();
288 fd.events = POLLIN;
Vishnu Naira066d902021-09-13 18:40:17 -0700289 poll(&fd, 1, timeoutMs);
Robert Carr1c4c5592018-09-24 13:18:43 -0700290 }
291
Robert Carr1c4c5592018-09-24 13:18:43 -0700292public:
293 sp<SurfaceControl> mSurfaceControl;
Siarhei Vishniakouce5ab082020-07-09 17:03:21 -0500294 std::shared_ptr<InputChannel> mClientChannel;
Robert Carr1c4c5592018-09-24 13:18:43 -0700295 sp<IInputFlinger> mInputFlinger;
296
chaviw98318de2021-05-19 16:45:23 -0500297 WindowInfo mInputInfo;
Robert Carr1c4c5592018-09-24 13:18:43 -0700298
299 PreallocatedInputEventFactory mInputEventFactory;
300 InputConsumer* mInputConsumer;
301};
302
chaviw39d01472021-04-08 14:26:24 -0500303class BlastInputSurface : public InputSurface {
304public:
305 BlastInputSurface(const sp<SurfaceControl> &sc, const sp<SurfaceControl> &parentSc, int width,
306 int height)
307 : InputSurface(sc, width, height) {
308 mParentSurfaceControl = parentSc;
309 }
310
311 ~BlastInputSurface() = default;
312
313 static std::unique_ptr<BlastInputSurface> makeBlastInputSurface(
314 const sp<SurfaceComposerClient> &scc, int width, int height) {
315 sp<SurfaceControl> parentSc =
316 scc->createSurface(String8("Test Parent Surface"), 0 /* bufHeight */,
317 0 /* bufWidth */, PIXEL_FORMAT_RGBA_8888,
318 ISurfaceComposerClient::eFXSurfaceContainer);
319
320 sp<SurfaceControl> surfaceControl =
321 scc->createSurface(String8("Test Buffer Surface"), width, height,
322 PIXEL_FORMAT_RGBA_8888,
323 ISurfaceComposerClient::eFXSurfaceBufferState,
324 parentSc->getHandle());
325 return std::make_unique<BlastInputSurface>(surfaceControl, parentSc, width, height);
326 }
327
328 void doTransaction(
329 std::function<void(SurfaceComposerClient::Transaction &, const sp<SurfaceControl> &)>
330 transactionBody) override {
331 SurfaceComposerClient::Transaction t;
332 transactionBody(t, mParentSurfaceControl);
333 t.apply(true);
334 }
335
336 void showAt(int x, int y, Rect crop = Rect(0, 0, 100, 100)) override {
337 SurfaceComposerClient::Transaction t;
338 t.show(mParentSurfaceControl);
339 t.setLayer(mParentSurfaceControl, LAYER_BASE);
340 t.setPosition(mParentSurfaceControl, x, y);
341 t.setCrop(mParentSurfaceControl, crop);
342
343 t.show(mSurfaceControl);
344 t.setInputWindowInfo(mSurfaceControl, mInputInfo);
345 t.setCrop(mSurfaceControl, crop);
346 t.setAlpha(mSurfaceControl, 1);
347 t.apply(true);
348 }
349
350private:
351 sp<SurfaceControl> mParentSurfaceControl;
352};
353
Robert Carr1c4c5592018-09-24 13:18:43 -0700354class InputSurfacesTest : public ::testing::Test {
355public:
356 InputSurfacesTest() {
357 ProcessState::self()->startThreadPool();
358 }
359
360 void SetUp() {
361 mComposerClient = new SurfaceComposerClient;
362 ASSERT_EQ(NO_ERROR, mComposerClient->initCheck());
Vishnu Nairde19f852018-12-18 16:11:53 -0800363
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800364 const auto display = mComposerClient->getInternalDisplayToken();
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100365 ASSERT_NE(display, nullptr);
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800366
Marin Shalamanova7fe3042021-01-29 21:02:08 +0100367 ui::DisplayMode mode;
368 ASSERT_EQ(NO_ERROR, mComposerClient->getActiveDisplayMode(display, &mode));
Vishnu Nairde19f852018-12-18 16:11:53 -0800369
370 // After a new buffer is queued, SurfaceFlinger is notified and will
371 // latch the new buffer on next vsync. Let's heuristically wait for 3
372 // vsyncs.
Marin Shalamanova7fe3042021-01-29 21:02:08 +0100373 mBufferPostDelay = static_cast<int32_t>(1e6 / mode.refreshRate) * 3;
Robert Carr1c4c5592018-09-24 13:18:43 -0700374 }
375
376 void TearDown() {
377 mComposerClient->dispose();
378 }
379
380 std::unique_ptr<InputSurface> makeSurface(int width, int height) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800381 return InputSurface::makeColorInputSurface(mComposerClient, width, height);
382 }
383
chaviw39d01472021-04-08 14:26:24 -0500384 void postBuffer(const sp<SurfaceControl> &layer, int32_t w, int32_t h) {
385 int64_t usageFlags = BufferUsage::CPU_READ_OFTEN | BufferUsage::CPU_WRITE_OFTEN |
386 BufferUsage::COMPOSER_OVERLAY | BufferUsage::GPU_TEXTURE;
387 sp<GraphicBuffer> buffer =
388 new GraphicBuffer(w, h, PIXEL_FORMAT_RGBA_8888, 1, usageFlags, "test");
389 Transaction().setBuffer(layer, buffer).apply(true);
Vishnu Nairde19f852018-12-18 16:11:53 -0800390 usleep(mBufferPostDelay);
Robert Carr1c4c5592018-09-24 13:18:43 -0700391 }
392
393 sp<SurfaceComposerClient> mComposerClient;
Vishnu Nairde19f852018-12-18 16:11:53 -0800394 int32_t mBufferPostDelay;
Robert Carr1c4c5592018-09-24 13:18:43 -0700395};
396
Vishnu Nair16a938f2021-09-24 07:14:54 -0700397void injectTapOnDisplay(int x, int y, int displayId) {
398 char *buf1, *buf2, *bufDisplayId;
Robert Carr1c4c5592018-09-24 13:18:43 -0700399 asprintf(&buf1, "%d", x);
400 asprintf(&buf2, "%d", y);
Vishnu Nair16a938f2021-09-24 07:14:54 -0700401 asprintf(&bufDisplayId, "%d", displayId);
Robert Carr1c4c5592018-09-24 13:18:43 -0700402 if (fork() == 0) {
Vishnu Nair16a938f2021-09-24 07:14:54 -0700403 execlp("input", "input", "-d", bufDisplayId, "tap", buf1, buf2, NULL);
404 }
405}
406
407void injectTap(int x, int y) {
408 injectTapOnDisplay(x, y, ADISPLAY_ID_DEFAULT);
409}
410
411void injectKeyOnDisplay(uint32_t keycode, int displayId) {
412 char *buf1, *bufDisplayId;
413 asprintf(&buf1, "%d", keycode);
414 asprintf(&bufDisplayId, "%d", displayId);
415 if (fork() == 0) {
416 execlp("input", "input", "-d", bufDisplayId, "keyevent", buf1, NULL);
Robert Carr1c4c5592018-09-24 13:18:43 -0700417 }
418}
419
Vishnu Naira066d902021-09-13 18:40:17 -0700420void injectKey(uint32_t keycode) {
Vishnu Nair16a938f2021-09-24 07:14:54 -0700421 injectKeyOnDisplay(keycode, ADISPLAY_ID_NONE);
Vishnu Naira066d902021-09-13 18:40:17 -0700422}
423
Robert Carr1c4c5592018-09-24 13:18:43 -0700424TEST_F(InputSurfacesTest, can_receive_input) {
425 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
426 surface->showAt(100, 100);
427
428 injectTap(101, 101);
429
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100430 EXPECT_NE(surface->consumeEvent(), nullptr);
Robert Carr1c4c5592018-09-24 13:18:43 -0700431}
432
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100433/**
434 * Set up two surfaces side-by-side. Tap each surface.
435 * Next, swap the positions of the two surfaces. Inject tap into the two
436 * original locations. Ensure that the tap is received by the surfaces in the
437 * reverse order.
438 */
Robert Carr1c4c5592018-09-24 13:18:43 -0700439TEST_F(InputSurfacesTest, input_respects_positioning) {
440 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
441 surface->showAt(100, 100);
442
443 std::unique_ptr<InputSurface> surface2 = makeSurface(100, 100);
444 surface2->showAt(200, 200);
445
446 injectTap(201, 201);
447 surface2->expectTap(1, 1);
448
449 injectTap(101, 101);
450 surface->expectTap(1, 1);
451
452 surface2->doTransaction([](auto &t, auto &sc) {
453 t.setPosition(sc, 100, 100);
454 });
455 surface->doTransaction([](auto &t, auto &sc) {
456 t.setPosition(sc, 200, 200);
457 });
458
459 injectTap(101, 101);
460 surface2->expectTap(1, 1);
461
462 injectTap(201, 201);
463 surface->expectTap(1, 1);
464}
465
466TEST_F(InputSurfacesTest, input_respects_layering) {
467 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
468 std::unique_ptr<InputSurface> surface2 = makeSurface(100, 100);
469
470 surface->showAt(10, 10);
471 surface2->showAt(10, 10);
472
473 surface->doTransaction([](auto &t, auto &sc) {
474 t.setLayer(sc, LAYER_BASE + 1);
475 });
476
477 injectTap(11, 11);
478 surface->expectTap(1, 1);
479
480 surface2->doTransaction([](auto &t, auto &sc) {
481 t.setLayer(sc, LAYER_BASE + 1);
482 });
483
484 injectTap(11, 11);
485 surface2->expectTap(1, 1);
486
487 surface2->doTransaction([](auto &t, auto &sc) {
488 t.hide(sc);
489 });
490
491 injectTap(11, 11);
492 surface->expectTap(1, 1);
493}
494
Vishnu Nairde19f852018-12-18 16:11:53 -0800495// Surface Insets are set to offset the client content and draw a border around the client surface
496// (such as shadows in dialogs). Inputs sent to the client are offset such that 0,0 is the start
497// of the client content.
498TEST_F(InputSurfacesTest, input_respects_surface_insets) {
499 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
500 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
501 bgSurface->showAt(100, 100);
502
503 fgSurface->mInputInfo.surfaceInset = 5;
504 fgSurface->showAt(100, 100);
505
506 injectTap(106, 106);
507 fgSurface->expectTap(1, 1);
508
509 injectTap(101, 101);
510 bgSurface->expectTap(1, 1);
511}
512
513// Ensure a surface whose insets are cropped, handles the touch offset correctly. ref:b/120413463
514TEST_F(InputSurfacesTest, input_respects_cropped_surface_insets) {
515 std::unique_ptr<InputSurface> parentSurface = makeSurface(100, 100);
516 std::unique_ptr<InputSurface> childSurface = makeSurface(100, 100);
517 parentSurface->showAt(100, 100);
518
519 childSurface->mInputInfo.surfaceInset = 10;
520 childSurface->showAt(100, 100);
521
522 childSurface->doTransaction([&](auto &t, auto &sc) {
523 t.setPosition(sc, -5, -5);
Pablo Gamito11dcc222020-09-12 15:49:39 +0000524 t.reparent(sc, parentSurface->mSurfaceControl);
Vishnu Nairde19f852018-12-18 16:11:53 -0800525 });
526
527 injectTap(106, 106);
528 childSurface->expectTap(1, 1);
529
530 injectTap(101, 101);
531 parentSurface->expectTap(1, 1);
532}
533
Arthur Hung118b1142019-05-08 21:25:59 +0800534// Ensure a surface whose insets are scaled, handles the touch offset correctly.
535TEST_F(InputSurfacesTest, input_respects_scaled_surface_insets) {
536 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
537 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
538 bgSurface->showAt(100, 100);
539
540 fgSurface->mInputInfo.surfaceInset = 5;
541 fgSurface->showAt(100, 100);
542
543 fgSurface->doTransaction([&](auto &t, auto &sc) { t.setMatrix(sc, 2.0, 0, 0, 4.0); });
544
545 // expect = touch / scale - inset
546 injectTap(112, 124);
547 fgSurface->expectTap(1, 1);
548
549 injectTap(101, 101);
550 bgSurface->expectTap(1, 1);
551}
552
Ady Abraham282f1d72019-07-24 18:05:56 -0700553TEST_F(InputSurfacesTest, input_respects_scaled_surface_insets_overflow) {
Prabir Pradhanc9589c12021-09-22 06:11:43 -0700554 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
Ady Abraham282f1d72019-07-24 18:05:56 -0700555 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
Prabir Pradhanc9589c12021-09-22 06:11:43 -0700556 bgSurface->showAt(100, 100);
557
Ady Abraham282f1d72019-07-24 18:05:56 -0700558 // In case we pass the very big inset without any checking.
559 fgSurface->mInputInfo.surfaceInset = INT32_MAX;
560 fgSurface->showAt(100, 100);
561
562 fgSurface->doTransaction([&](auto &t, auto &sc) { t.setMatrix(sc, 2.0, 0, 0, 2.0); });
563
564 // expect no crash for overflow, and inset size to be clamped to surface size
Prabir Pradhanc9589c12021-09-22 06:11:43 -0700565 injectTap(112, 124);
566 bgSurface->expectTap(12, 24);
Ady Abraham282f1d72019-07-24 18:05:56 -0700567}
568
Prabir Pradhan33da9462022-06-14 14:55:57 +0000569TEST_F(InputSurfacesTest, touchable_region) {
570 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
571
572 surface->mInputInfo.touchableRegion.set(Rect{19, 29, 21, 31});
573
574 surface->showAt(11, 22);
575
576 // A tap within the surface but outside the touchable region should not be sent to the surface.
577 injectTap(20, 30);
578 EXPECT_EQ(surface->consumeEvent(200 /*timeoutMs*/), nullptr);
579
580 injectTap(31, 52);
581 surface->expectTap(20, 30);
582}
583
584TEST_F(InputSurfacesTest, input_respects_touchable_region_offset_overflow) {
585 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
586 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
587 bgSurface->showAt(100, 100);
588
589 // Set the touchable region to the values at the limit of its corresponding type.
590 // Since the surface is offset from the origin, the touchable region will be transformed into
591 // display space, which would trigger an overflow or an underflow. Ensure that we are protected
592 // against such a situation.
593 fgSurface->mInputInfo.touchableRegion.orSelf(Rect{INT32_MIN, INT32_MIN, INT32_MAX, INT32_MAX});
594
595 fgSurface->showAt(100, 100);
596
597 // Expect no crash for overflow. The overflowed touchable region is ignored, so the background
598 // surface receives touch.
599 injectTap(112, 124);
600 bgSurface->expectTap(12, 24);
601}
602
603TEST_F(InputSurfacesTest, input_respects_scaled_touchable_region_overflow) {
604 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
605 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
606 bgSurface->showAt(0, 0);
607
608 fgSurface->mInputInfo.touchableRegion.orSelf(Rect{INT32_MIN, INT32_MIN, INT32_MAX, INT32_MAX});
609 fgSurface->showAt(0, 0);
610
611 fgSurface->doTransaction([&](auto &t, auto &sc) { t.setMatrix(sc, 2.0, 0, 0, 2.0); });
612
613 // Expect no crash for overflow.
614 injectTap(12, 24);
615 fgSurface->expectTap(6, 12);
616}
617
Vishnu Nairde19f852018-12-18 16:11:53 -0800618// Ensure we ignore transparent region when getting screen bounds when positioning input frame.
619TEST_F(InputSurfacesTest, input_ignores_transparent_region) {
620 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
621 surface->doTransaction([](auto &t, auto &sc) {
622 Region transparentRegion(Rect(0, 0, 10, 10));
623 t.setTransparentRegionHint(sc, transparentRegion);
624 });
625 surface->showAt(100, 100);
626 injectTap(101, 101);
627 surface->expectTap(1, 1);
628}
629
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700630// TODO(b/139494112) update tests once we define expected behavior
631// Ensure we still send input to the surface regardless of surface visibility changes due to the
632// first buffer being submitted or alpha changes.
633// Original bug ref: b/120839715
634TEST_F(InputSurfacesTest, input_ignores_buffer_layer_buffer) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800635 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
chaviw39d01472021-04-08 14:26:24 -0500636 std::unique_ptr<BlastInputSurface> bufferSurface =
637 BlastInputSurface::makeBlastInputSurface(mComposerClient, 100, 100);
Vishnu Nairde19f852018-12-18 16:11:53 -0800638
639 bgSurface->showAt(10, 10);
640 bufferSurface->showAt(10, 10);
641
642 injectTap(11, 11);
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700643 bufferSurface->expectTap(1, 1);
Vishnu Nairde19f852018-12-18 16:11:53 -0800644
chaviw39d01472021-04-08 14:26:24 -0500645 postBuffer(bufferSurface->mSurfaceControl, 100, 100);
Vishnu Nairde19f852018-12-18 16:11:53 -0800646 injectTap(11, 11);
647 bufferSurface->expectTap(1, 1);
648}
649
Arthur Hungfb2ebce2021-10-04 14:08:48 +0000650TEST_F(InputSurfacesTest, input_respects_buffer_layer_alpha) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800651 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
chaviw39d01472021-04-08 14:26:24 -0500652 std::unique_ptr<BlastInputSurface> bufferSurface =
653 BlastInputSurface::makeBlastInputSurface(mComposerClient, 100, 100);
654 postBuffer(bufferSurface->mSurfaceControl, 100, 100);
Vishnu Nairde19f852018-12-18 16:11:53 -0800655
656 bgSurface->showAt(10, 10);
657 bufferSurface->showAt(10, 10);
658
659 injectTap(11, 11);
660 bufferSurface->expectTap(1, 1);
661
662 bufferSurface->doTransaction([](auto &t, auto &sc) { t.setAlpha(sc, 0.0); });
663
664 injectTap(11, 11);
Arthur Hungfb2ebce2021-10-04 14:08:48 +0000665 bgSurface->expectTap(1, 1);
Vishnu Nairde19f852018-12-18 16:11:53 -0800666}
667
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700668TEST_F(InputSurfacesTest, input_ignores_color_layer_alpha) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800669 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
670 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
671
672 bgSurface->showAt(10, 10);
673 fgSurface->showAt(10, 10);
674
675 injectTap(11, 11);
676 fgSurface->expectTap(1, 1);
677
678 fgSurface->doTransaction([](auto &t, auto &sc) { t.setAlpha(sc, 0.0); });
679
680 injectTap(11, 11);
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700681 fgSurface->expectTap(1, 1);
Vishnu Nairde19f852018-12-18 16:11:53 -0800682}
683
684TEST_F(InputSurfacesTest, input_respects_container_layer_visiblity) {
685 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
686 std::unique_ptr<InputSurface> containerSurface =
687 InputSurface::makeContainerInputSurface(mComposerClient, 100, 100);
688
689 bgSurface->showAt(10, 10);
690 containerSurface->showAt(10, 10);
691
692 injectTap(11, 11);
693 containerSurface->expectTap(1, 1);
694
695 containerSurface->doTransaction([](auto &t, auto &sc) { t.hide(sc); });
696
697 injectTap(11, 11);
698 bgSurface->expectTap(1, 1);
699}
chaviwfbe5d9c2018-12-26 12:23:37 -0800700
Arthur Hungd20b2702019-01-14 18:16:16 +0800701TEST_F(InputSurfacesTest, input_respects_outscreen) {
702 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
703 surface->showAt(-1, -1);
704
705 injectTap(0, 0);
706 surface->expectTap(1, 1);
707}
arthurhungb4a0f852020-06-16 11:02:50 +0800708
709TEST_F(InputSurfacesTest, input_ignores_cursor_layer) {
710 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
711 std::unique_ptr<InputSurface> cursorSurface =
712 InputSurface::makeCursorInputSurface(mComposerClient, 10, 10);
713
714 surface->showAt(10, 10);
arthurhungb4a0f852020-06-16 11:02:50 +0800715 cursorSurface->showAt(10, 10);
716
717 injectTap(11, 11);
718 surface->expectTap(1, 1);
719}
Vishnu Nair958da932020-08-21 17:12:37 -0700720
721TEST_F(InputSurfacesTest, can_be_focused) {
722 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
723 surface->showAt(100, 100);
724 surface->requestFocus();
725
726 surface->assertFocusChange(true);
Vishnu Naira066d902021-09-13 18:40:17 -0700727
728 injectKey(AKEYCODE_V);
729 surface->expectKey(AKEYCODE_V);
Robert Carr1c4c5592018-09-24 13:18:43 -0700730}
chaviw44a6d2b2020-09-08 17:14:16 -0700731
732TEST_F(InputSurfacesTest, rotate_surface) {
733 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
734 surface->showAt(10, 10);
735 surface->doTransaction([](auto &t, auto &sc) {
736 t.setMatrix(sc, 0, 1, -1, 0); // 90 degrees
737 });
738 injectTap(8, 11);
739 surface->expectTap(1, 2);
740
741 surface->doTransaction([](auto &t, auto &sc) {
742 t.setMatrix(sc, -1, 0, 0, -1); // 180 degrees
743 });
744 injectTap(9, 8);
745 surface->expectTap(1, 2);
746
747 surface->doTransaction([](auto &t, auto &sc) {
748 t.setMatrix(sc, 0, -1, 1, 0); // 270 degrees
749 });
750 injectTap(12, 9);
751 surface->expectTap(1, 2);
752}
753
754TEST_F(InputSurfacesTest, rotate_surface_with_scale) {
755 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
756 surface->showAt(10, 10);
757 surface->doTransaction([](auto &t, auto &sc) {
758 t.setMatrix(sc, 0, 2, -4, 0); // 90 degrees
759 });
760 injectTap(2, 12);
761 surface->expectTap(1, 2);
762
763 surface->doTransaction([](auto &t, auto &sc) {
764 t.setMatrix(sc, -2, 0, 0, -4); // 180 degrees
765 });
766 injectTap(8, 2);
767 surface->expectTap(1, 2);
768
769 surface->doTransaction([](auto &t, auto &sc) {
770 t.setMatrix(sc, 0, -2, 4, 0); // 270 degrees
771 });
772 injectTap(18, 8);
773 surface->expectTap(1, 2);
774}
775
776TEST_F(InputSurfacesTest, rotate_surface_with_scale_and_insets) {
777 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
778 surface->mInputInfo.surfaceInset = 5;
779 surface->showAt(100, 100);
780
781 surface->doTransaction([](auto &t, auto &sc) {
782 t.setMatrix(sc, 0, 2, -4, 0); // 90 degrees
783 });
784 injectTap(40, 120);
785 surface->expectTap(5, 10);
786
787 surface->doTransaction([](auto &t, auto &sc) {
788 t.setMatrix(sc, -2, 0, 0, -4); // 180 degrees
789 });
790 injectTap(80, 40);
791 surface->expectTap(5, 10);
792
793 surface->doTransaction([](auto &t, auto &sc) {
794 t.setMatrix(sc, 0, -2, 4, 0); // 270 degrees
795 });
796 injectTap(160, 80);
797 surface->expectTap(5, 10);
798}
799
chaviw39cfa2e2020-11-04 14:19:02 -0800800TEST_F(InputSurfacesTest, touch_flag_obscured) {
801 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
802 surface->showAt(100, 100);
803
804 // Add non touchable window to fully cover touchable window. Window behind gets touch, but
805 // with flag AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED
806 std::unique_ptr<InputSurface> nonTouchableSurface = makeSurface(100, 100);
Prabir Pradhan4d5c52f2022-01-31 08:52:10 -0800807 nonTouchableSurface->mInputInfo.setInputConfig(WindowInfo::InputConfig::NOT_TOUCHABLE, true);
chaviw39cfa2e2020-11-04 14:19:02 -0800808 nonTouchableSurface->mInputInfo.ownerUid = 22222;
Bernardo Rufino602ef712020-12-21 11:02:18 +0000809 // Overriding occlusion mode otherwise the touch would be discarded at InputDispatcher by
810 // the default obscured/untrusted touch filter introduced in S.
811 nonTouchableSurface->mInputInfo.touchOcclusionMode = TouchOcclusionMode::ALLOW;
chaviw39cfa2e2020-11-04 14:19:02 -0800812 nonTouchableSurface->showAt(100, 100);
813
814 injectTap(190, 199);
815 surface->expectTapWithFlag(90, 99, AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED);
816}
817
818TEST_F(InputSurfacesTest, touch_flag_partially_obscured_with_crop) {
819 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
820 surface->showAt(100, 100);
821
822 // Add non touchable window to cover touchable window, but parent is cropped to not cover area
823 // that will be tapped. Window behind gets touch, but with flag
824 // AMOTION_EVENT_FLAG_WINDOW_IS_PARTIALLY_OBSCURED
825 std::unique_ptr<InputSurface> parentSurface = makeSurface(100, 100);
826 std::unique_ptr<InputSurface> nonTouchableSurface = makeSurface(100, 100);
Prabir Pradhan4d5c52f2022-01-31 08:52:10 -0800827 nonTouchableSurface->mInputInfo.setInputConfig(WindowInfo::InputConfig::NOT_TOUCHABLE, true);
828 parentSurface->mInputInfo.setInputConfig(WindowInfo::InputConfig::NOT_TOUCHABLE, true);
chaviw39cfa2e2020-11-04 14:19:02 -0800829 nonTouchableSurface->mInputInfo.ownerUid = 22222;
830 parentSurface->mInputInfo.ownerUid = 22222;
831 nonTouchableSurface->showAt(0, 0);
832 parentSurface->showAt(100, 100);
833
834 nonTouchableSurface->doTransaction([&](auto &t, auto &sc) {
chaviw25714502021-02-11 10:01:08 -0800835 t.setCrop(parentSurface->mSurfaceControl, Rect(0, 0, 50, 50));
chaviw39cfa2e2020-11-04 14:19:02 -0800836 t.reparent(sc, parentSurface->mSurfaceControl);
837 });
838
839 injectTap(190, 199);
840 surface->expectTapWithFlag(90, 99, AMOTION_EVENT_FLAG_WINDOW_IS_PARTIALLY_OBSCURED);
841}
842
843TEST_F(InputSurfacesTest, touch_not_obscured_with_crop) {
844 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
845 surface->showAt(100, 100);
846
847 // Add non touchable window to cover touchable window, but parent is cropped to avoid covering
848 // the touchable window. Window behind gets touch with no obscured flags.
849 std::unique_ptr<InputSurface> parentSurface = makeSurface(100, 100);
850 std::unique_ptr<InputSurface> nonTouchableSurface = makeSurface(100, 100);
Prabir Pradhan4d5c52f2022-01-31 08:52:10 -0800851 nonTouchableSurface->mInputInfo.setInputConfig(WindowInfo::InputConfig::NOT_TOUCHABLE, true);
852 parentSurface->mInputInfo.setInputConfig(WindowInfo::InputConfig::NOT_TOUCHABLE, true);
chaviw39cfa2e2020-11-04 14:19:02 -0800853 nonTouchableSurface->mInputInfo.ownerUid = 22222;
854 parentSurface->mInputInfo.ownerUid = 22222;
855 nonTouchableSurface->showAt(0, 0);
856 parentSurface->showAt(50, 50);
857
858 nonTouchableSurface->doTransaction([&](auto &t, auto &sc) {
chaviw25714502021-02-11 10:01:08 -0800859 t.setCrop(parentSurface->mSurfaceControl, Rect(0, 0, 50, 50));
chaviw39cfa2e2020-11-04 14:19:02 -0800860 t.reparent(sc, parentSurface->mSurfaceControl);
861 });
862
863 injectTap(101, 110);
864 surface->expectTap(1, 10);
865}
866
chaviw7e72caf2020-12-02 16:50:43 -0800867TEST_F(InputSurfacesTest, touch_not_obscured_with_zero_sized_bql) {
868 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
869
870 std::unique_ptr<InputSurface> bufferSurface =
871 InputSurface::makeBufferInputSurface(mComposerClient, 0, 0);
Prabir Pradhan4d5c52f2022-01-31 08:52:10 -0800872 bufferSurface->mInputInfo.setInputConfig(WindowInfo::InputConfig::NOT_TOUCHABLE, true);
chaviw7e72caf2020-12-02 16:50:43 -0800873 bufferSurface->mInputInfo.ownerUid = 22222;
874
875 surface->showAt(10, 10);
876 bufferSurface->showAt(50, 50, Rect::EMPTY_RECT);
877
878 injectTap(11, 11);
879 surface->expectTap(1, 1);
880}
881
882TEST_F(InputSurfacesTest, touch_not_obscured_with_zero_sized_blast) {
883 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
884
chaviw39d01472021-04-08 14:26:24 -0500885 std::unique_ptr<BlastInputSurface> bufferSurface =
886 BlastInputSurface::makeBlastInputSurface(mComposerClient, 0, 0);
Prabir Pradhan4d5c52f2022-01-31 08:52:10 -0800887 bufferSurface->mInputInfo.setInputConfig(WindowInfo::InputConfig::NOT_TOUCHABLE, true);
chaviw7e72caf2020-12-02 16:50:43 -0800888 bufferSurface->mInputInfo.ownerUid = 22222;
889
890 surface->showAt(10, 10);
891 bufferSurface->showAt(50, 50, Rect::EMPTY_RECT);
892
893 injectTap(11, 11);
894 surface->expectTap(1, 1);
895}
896
Vishnu Naira066d902021-09-13 18:40:17 -0700897TEST_F(InputSurfacesTest, strict_unobscured_input_unobscured_window) {
898 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
899 surface->doTransaction(
900 [&](auto &t, auto &sc) { t.setDropInputMode(sc, gui::DropInputMode::OBSCURED); });
901 surface->showAt(100, 100);
902
903 injectTap(101, 101);
904
905 EXPECT_NE(surface->consumeEvent(), nullptr);
906 EXPECT_NE(surface->consumeEvent(), nullptr);
907
908 surface->requestFocus();
909 surface->assertFocusChange(true);
910 injectKey(AKEYCODE_V);
911 surface->expectKey(AKEYCODE_V);
912}
913
914TEST_F(InputSurfacesTest, strict_unobscured_input_scaled_without_crop_window) {
915 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
916 surface->doTransaction([&](auto &t, auto &sc) {
917 t.setDropInputMode(sc, gui::DropInputMode::OBSCURED);
918 t.setMatrix(sc, 2.0, 0, 0, 2.0);
919 });
920 surface->showAt(100, 100);
921
922 injectTap(101, 101);
923
924 EXPECT_NE(surface->consumeEvent(), nullptr);
925 EXPECT_NE(surface->consumeEvent(), nullptr);
926
927 surface->requestFocus();
928 surface->assertFocusChange(true);
929 injectKey(AKEYCODE_V);
930 surface->expectKey(AKEYCODE_V);
931}
932
933TEST_F(InputSurfacesTest, strict_unobscured_input_obscured_window) {
934 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
935 surface->mInputInfo.ownerUid = 11111;
936 surface->doTransaction(
937 [&](auto &t, auto &sc) { t.setDropInputMode(sc, gui::DropInputMode::OBSCURED); });
938 surface->showAt(100, 100);
939 std::unique_ptr<InputSurface> obscuringSurface = makeSurface(100, 100);
Prabir Pradhan4d5c52f2022-01-31 08:52:10 -0800940 obscuringSurface->mInputInfo.setInputConfig(WindowInfo::InputConfig::NOT_TOUCHABLE, true);
Vishnu Naira066d902021-09-13 18:40:17 -0700941 obscuringSurface->mInputInfo.ownerUid = 22222;
942 obscuringSurface->showAt(100, 100);
943 injectTap(101, 101);
944 EXPECT_EQ(surface->consumeEvent(100), nullptr);
945
946 surface->requestFocus();
947 surface->assertFocusChange(true);
948 injectKey(AKEYCODE_V);
949 EXPECT_EQ(surface->consumeEvent(100), nullptr);
950}
951
952TEST_F(InputSurfacesTest, strict_unobscured_input_partially_obscured_window) {
953 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
954 surface->mInputInfo.ownerUid = 11111;
955 surface->doTransaction(
956 [&](auto &t, auto &sc) { t.setDropInputMode(sc, gui::DropInputMode::OBSCURED); });
957 surface->showAt(100, 100);
958 std::unique_ptr<InputSurface> obscuringSurface = makeSurface(100, 100);
Prabir Pradhan4d5c52f2022-01-31 08:52:10 -0800959 obscuringSurface->mInputInfo.setInputConfig(WindowInfo::InputConfig::NOT_TOUCHABLE, true);
Vishnu Naira066d902021-09-13 18:40:17 -0700960 obscuringSurface->mInputInfo.ownerUid = 22222;
961 obscuringSurface->showAt(190, 190);
962
963 injectTap(101, 101);
964
965 EXPECT_EQ(surface->consumeEvent(100), nullptr);
966
967 surface->requestFocus();
968 surface->assertFocusChange(true);
969 injectKey(AKEYCODE_V);
970 EXPECT_EQ(surface->consumeEvent(100), nullptr);
971}
972
973TEST_F(InputSurfacesTest, strict_unobscured_input_alpha_window) {
974 std::unique_ptr<InputSurface> parentSurface = makeSurface(300, 300);
975 parentSurface->showAt(0, 0, Rect(0, 0, 300, 300));
976
977 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
978 surface->showAt(100, 100);
979 surface->doTransaction([&](auto &t, auto &sc) {
980 t.setDropInputMode(sc, gui::DropInputMode::OBSCURED);
981 t.reparent(sc, parentSurface->mSurfaceControl);
982 t.setAlpha(parentSurface->mSurfaceControl, 0.9f);
983 });
984
985 injectTap(101, 101);
986
987 EXPECT_EQ(surface->consumeEvent(100), nullptr);
988
989 surface->requestFocus();
990 surface->assertFocusChange(true);
991 injectKey(AKEYCODE_V);
992 EXPECT_EQ(surface->consumeEvent(100), nullptr);
993}
994
995TEST_F(InputSurfacesTest, strict_unobscured_input_cropped_window) {
996 std::unique_ptr<InputSurface> parentSurface = makeSurface(300, 300);
997 parentSurface->showAt(0, 0, Rect(0, 0, 300, 300));
998
999 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
1000 surface->doTransaction([&](auto &t, auto &sc) {
1001 t.setDropInputMode(sc, gui::DropInputMode::OBSCURED);
1002 t.reparent(sc, parentSurface->mSurfaceControl);
1003 t.setCrop(parentSurface->mSurfaceControl, Rect(10, 10, 100, 100));
1004 });
1005 surface->showAt(100, 100);
1006
1007 injectTap(111, 111);
1008
1009 EXPECT_EQ(surface->consumeEvent(100), nullptr);
1010
1011 surface->requestFocus();
1012 surface->assertFocusChange(true);
1013 injectKey(AKEYCODE_V);
1014 EXPECT_EQ(surface->consumeEvent(100), nullptr);
1015}
1016
Arthur Hung49d525a2021-11-19 15:11:51 +00001017TEST_F(InputSurfacesTest, ignore_touch_region_with_zero_sized_blast) {
1018 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
1019
1020 std::unique_ptr<BlastInputSurface> bufferSurface =
1021 BlastInputSurface::makeBlastInputSurface(mComposerClient, 0, 0);
1022
1023 surface->showAt(100, 100);
1024 bufferSurface->mInputInfo.touchableRegion.orSelf(Rect(0, 0, 200, 200));
1025 bufferSurface->showAt(100, 100, Rect::EMPTY_RECT);
1026
1027 injectTap(101, 101);
1028 surface->expectTap(1, 1);
1029}
1030
Vishnu Naira066d902021-09-13 18:40:17 -07001031TEST_F(InputSurfacesTest, drop_input_policy) {
1032 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
1033 surface->doTransaction(
1034 [&](auto &t, auto &sc) { t.setDropInputMode(sc, gui::DropInputMode::ALL); });
1035 surface->showAt(100, 100);
1036
1037 injectTap(101, 101);
1038
1039 EXPECT_EQ(surface->consumeEvent(100), nullptr);
1040
1041 surface->requestFocus();
1042 surface->assertFocusChange(true);
1043 injectKey(AKEYCODE_V);
1044 EXPECT_EQ(surface->consumeEvent(100), nullptr);
1045}
Vishnu Nair16a938f2021-09-24 07:14:54 -07001046
Prabir Pradhan8c285982022-01-28 09:19:39 -08001047TEST_F(InputSurfacesTest, layer_with_valid_crop_can_be_focused) {
1048 std::unique_ptr<InputSurface> bufferSurface =
1049 InputSurface::makeBufferInputSurface(mComposerClient, 100, 100);
1050
1051 bufferSurface->showAt(50, 50, Rect{0, 0, 100, 100});
1052
1053 bufferSurface->requestFocus();
1054 bufferSurface->assertFocusChange(true);
1055}
1056
Prabir Pradhan6fa425a2021-12-16 07:16:04 -08001057/**
1058 * If a cropped layer's touchable region is replaced with a null crop, it should receive input in
1059 * its own crop.
1060 */
1061TEST_F(InputSurfacesTest, cropped_container_replaces_touchable_region_with_null_crop) {
1062 std::unique_ptr<InputSurface> parentContainer =
1063 InputSurface::makeContainerInputSurface(mComposerClient, 0, 0);
1064 std::unique_ptr<InputSurface> containerSurface =
1065 InputSurface::makeContainerInputSurface(mComposerClient, 100, 100);
1066 containerSurface->doTransaction(
1067 [&](auto &t, auto &sc) { t.reparent(sc, parentContainer->mSurfaceControl); });
1068 containerSurface->mInputInfo.replaceTouchableRegionWithCrop = true;
1069 containerSurface->mInputInfo.touchableRegionCropHandle = nullptr;
1070 parentContainer->showAt(10, 10, Rect(0, 0, 20, 20));
1071 containerSurface->showAt(10, 10, Rect(0, 0, 5, 5));
1072
1073 // Receives events inside its own crop
1074 injectTap(21, 21);
1075 containerSurface->expectTap(1, 1); // Event is in layer space
1076
1077 // Does not receive events outside its crop
1078 injectTap(26, 26);
1079 EXPECT_EQ(containerSurface->consumeEvent(100), nullptr);
1080}
1081
1082/**
1083 * If an un-cropped layer's touchable region is replaced with a null crop, it should receive input
1084 * in its parent's touchable region. The input events should be in the layer's coordinate space.
1085 */
1086TEST_F(InputSurfacesTest, uncropped_container_replaces_touchable_region_with_null_crop) {
1087 std::unique_ptr<InputSurface> parentContainer =
1088 InputSurface::makeContainerInputSurface(mComposerClient, 0, 0);
1089 std::unique_ptr<InputSurface> containerSurface =
1090 InputSurface::makeContainerInputSurface(mComposerClient, 100, 100);
1091 containerSurface->doTransaction(
1092 [&](auto &t, auto &sc) { t.reparent(sc, parentContainer->mSurfaceControl); });
1093 containerSurface->mInputInfo.replaceTouchableRegionWithCrop = true;
1094 containerSurface->mInputInfo.touchableRegionCropHandle = nullptr;
1095 parentContainer->showAt(10, 10, Rect(0, 0, 20, 20));
1096 containerSurface->showAt(10, 10, Rect::INVALID_RECT);
1097
1098 // Receives events inside parent bounds
1099 injectTap(21, 21);
1100 containerSurface->expectTap(1, 1); // Event is in layer space
1101
1102 // Does not receive events outside parent bounds
1103 injectTap(31, 31);
1104 EXPECT_EQ(containerSurface->consumeEvent(100), nullptr);
1105}
1106
1107/**
1108 * If a layer's touchable region is replaced with a layer crop, it should receive input in the crop
1109 * layer's bounds. The input events should be in the layer's coordinate space.
1110 */
1111TEST_F(InputSurfacesTest, replace_touchable_region_with_crop) {
1112 std::unique_ptr<InputSurface> cropLayer =
1113 InputSurface::makeContainerInputSurface(mComposerClient, 0, 0);
1114 cropLayer->showAt(50, 50, Rect(0, 0, 20, 20));
1115
1116 std::unique_ptr<InputSurface> containerSurface =
1117 InputSurface::makeContainerInputSurface(mComposerClient, 100, 100);
1118 containerSurface->mInputInfo.replaceTouchableRegionWithCrop = true;
1119 containerSurface->mInputInfo.touchableRegionCropHandle =
1120 cropLayer->mSurfaceControl->getHandle();
1121 containerSurface->showAt(10, 10, Rect::INVALID_RECT);
1122
1123 // Receives events inside crop layer bounds
1124 injectTap(51, 51);
1125 containerSurface->expectTap(41, 41); // Event is in layer space
1126
1127 // Does not receive events outside crop layer bounds
1128 injectTap(21, 21);
1129 injectTap(71, 71);
1130 EXPECT_EQ(containerSurface->consumeEvent(100), nullptr);
1131}
1132
Linus Tufvessona1858822022-03-04 09:32:07 +00001133TEST_F(InputSurfacesTest, child_container_with_no_input_channel_blocks_parent) {
1134 std::unique_ptr<InputSurface> parent = makeSurface(100, 100);
1135
1136 parent->showAt(100, 100);
1137 injectTap(101, 101);
1138 parent->expectTap(1, 1);
1139
1140 std::unique_ptr<InputSurface> childContainerSurface =
1141 InputSurface::makeContainerInputSurfaceNoInputChannel(mComposerClient, 100, 100);
1142 childContainerSurface->showAt(0, 0);
1143 childContainerSurface->doTransaction(
1144 [&](auto &t, auto &sc) { t.reparent(sc, parent->mSurfaceControl); });
1145 injectTap(101, 101);
1146
1147 EXPECT_EQ(parent->consumeEvent(100), nullptr);
1148}
1149
Vishnu Nair16a938f2021-09-24 07:14:54 -07001150class MultiDisplayTests : public InputSurfacesTest {
1151public:
1152 MultiDisplayTests() : InputSurfacesTest() { ProcessState::self()->startThreadPool(); }
Prabir Pradhand0aba782021-12-14 00:44:21 -08001153 void TearDown() override {
1154 for (auto &token : mVirtualDisplays) {
1155 SurfaceComposerClient::destroyDisplay(token);
Vishnu Nair16a938f2021-09-24 07:14:54 -07001156 }
1157 InputSurfacesTest::TearDown();
1158 }
1159
Prabir Pradhand0aba782021-12-14 00:44:21 -08001160 void createDisplay(int32_t width, int32_t height, bool isSecure, ui::LayerStack layerStack,
1161 bool receivesInput = true, int32_t offsetX = 0, int32_t offsetY = 0) {
Vishnu Nair16a938f2021-09-24 07:14:54 -07001162 sp<IGraphicBufferConsumer> consumer;
Prabir Pradhand0aba782021-12-14 00:44:21 -08001163 sp<IGraphicBufferProducer> producer;
1164 BufferQueue::createBufferQueue(&producer, &consumer);
Vishnu Nair16a938f2021-09-24 07:14:54 -07001165 consumer->setConsumerName(String8("Virtual disp consumer"));
1166 consumer->setDefaultBufferSize(width, height);
Prabir Pradhand0aba782021-12-14 00:44:21 -08001167 mProducers.push_back(producer);
Vishnu Nair16a938f2021-09-24 07:14:54 -07001168
Prabir Pradhand0aba782021-12-14 00:44:21 -08001169 std::string name = "VirtualDisplay";
1170 name += std::to_string(mVirtualDisplays.size());
1171 sp<IBinder> token = SurfaceComposerClient::createDisplay(String8(name.c_str()), isSecure);
Vishnu Nair16a938f2021-09-24 07:14:54 -07001172 SurfaceComposerClient::Transaction t;
Prabir Pradhand0aba782021-12-14 00:44:21 -08001173 t.setDisplaySurface(token, producer);
1174 t.setDisplayFlags(token, receivesInput ? 0x01 /* DisplayDevice::eReceivesInput */ : 0);
1175 t.setDisplayLayerStack(token, layerStack);
1176 t.setDisplayProjection(token, ui::ROTATION_0, {0, 0, width, height},
1177 {offsetX, offsetY, offsetX + width, offsetY + height});
Vishnu Nair16a938f2021-09-24 07:14:54 -07001178 t.apply(true);
Prabir Pradhand0aba782021-12-14 00:44:21 -08001179
1180 mVirtualDisplays.push_back(token);
Vishnu Nair16a938f2021-09-24 07:14:54 -07001181 }
1182
Prabir Pradhand0aba782021-12-14 00:44:21 -08001183 std::vector<sp<IBinder>> mVirtualDisplays;
1184 std::vector<sp<IGraphicBufferProducer>> mProducers;
Vishnu Nair16a938f2021-09-24 07:14:54 -07001185};
1186
Prabir Pradhanda0f62c2022-07-22 19:53:04 +00001187TEST_F(MultiDisplayTests, drop_touch_if_layer_on_invalid_display) {
Prabir Pradhand0aba782021-12-14 00:44:21 -08001188 ui::LayerStack layerStack = ui::LayerStack::fromValue(42);
1189 // Do not create a display associated with the LayerStack.
1190 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
1191 surface->doTransaction([&](auto &t, auto &sc) { t.setLayerStack(sc, layerStack); });
1192 surface->showAt(100, 100);
1193
Prabir Pradhanda0f62c2022-07-22 19:53:04 +00001194 // Touches should be dropped if the layer is on an invalid display.
Prabir Pradhand0aba782021-12-14 00:44:21 -08001195 injectTapOnDisplay(101, 101, layerStack.id);
Prabir Pradhand0aba782021-12-14 00:44:21 -08001196 EXPECT_EQ(surface->consumeEvent(100), nullptr);
Prabir Pradhanda0f62c2022-07-22 19:53:04 +00001197
1198 // However, we still let the window be focused and receive keys.
1199 surface->requestFocus(layerStack.id);
1200 surface->assertFocusChange(true);
1201
1202 injectKeyOnDisplay(AKEYCODE_V, layerStack.id);
1203 surface->expectKey(AKEYCODE_V);
Prabir Pradhand0aba782021-12-14 00:44:21 -08001204}
1205
1206TEST_F(MultiDisplayTests, virtual_display_receives_input) {
1207 ui::LayerStack layerStack = ui::LayerStack::fromValue(42);
1208 createDisplay(1000, 1000, false /*isSecure*/, layerStack);
1209 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
1210 surface->doTransaction([&](auto &t, auto &sc) { t.setLayerStack(sc, layerStack); });
1211 surface->showAt(100, 100);
1212
1213 injectTapOnDisplay(101, 101, layerStack.id);
1214 surface->expectTap(1, 1);
1215
1216 surface->requestFocus(layerStack.id);
1217 surface->assertFocusChange(true);
1218 injectKeyOnDisplay(AKEYCODE_V, layerStack.id);
1219 surface->expectKey(AKEYCODE_V);
1220}
1221
1222/**
1223 * When multiple DisplayDevices are mapped to the same layerStack, use the configuration for the
1224 * display that can receive input.
1225 */
1226TEST_F(MultiDisplayTests, many_to_one_display_mapping) {
1227 ui::LayerStack layerStack = ui::LayerStack::fromValue(42);
1228 createDisplay(1000, 1000, false /*isSecure*/, layerStack, false /*receivesInput*/,
1229 100 /*offsetX*/, 100 /*offsetY*/);
1230 createDisplay(1000, 1000, false /*isSecure*/, layerStack, true /*receivesInput*/,
1231 200 /*offsetX*/, 200 /*offsetY*/);
1232 createDisplay(1000, 1000, false /*isSecure*/, layerStack, false /*receivesInput*/,
1233 300 /*offsetX*/, 300 /*offsetY*/);
1234 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
1235 surface->doTransaction([&](auto &t, auto &sc) { t.setLayerStack(sc, layerStack); });
1236 surface->showAt(10, 10);
1237
1238 // Input injection happens in logical display coordinates.
1239 injectTapOnDisplay(11, 11, layerStack.id);
1240 // Expect that the display transform for the display that receives input was used.
1241 surface->expectTapInDisplayCoordinates(211, 211);
1242
1243 surface->requestFocus(layerStack.id);
1244 surface->assertFocusChange(true);
1245 injectKeyOnDisplay(AKEYCODE_V, layerStack.id);
1246}
1247
Vishnu Nair16a938f2021-09-24 07:14:54 -07001248TEST_F(MultiDisplayTests, drop_input_for_secure_layer_on_nonsecure_display) {
1249 ui::LayerStack layerStack = ui::LayerStack::fromValue(42);
1250 createDisplay(1000, 1000, false /*isSecure*/, layerStack);
1251 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
1252 surface->doTransaction([&](auto &t, auto &sc) {
1253 t.setFlags(sc, layer_state_t::eLayerSecure, layer_state_t::eLayerSecure);
1254 t.setLayerStack(sc, layerStack);
1255 });
1256 surface->showAt(100, 100);
1257
Prabir Pradhand0aba782021-12-14 00:44:21 -08001258 injectTapOnDisplay(101, 101, layerStack.id);
Vishnu Nair16a938f2021-09-24 07:14:54 -07001259
1260 EXPECT_EQ(surface->consumeEvent(100), nullptr);
1261
1262 surface->requestFocus(layerStack.id);
1263 surface->assertFocusChange(true);
1264 injectKeyOnDisplay(AKEYCODE_V, layerStack.id);
1265 EXPECT_EQ(surface->consumeEvent(100), nullptr);
1266}
1267
1268TEST_F(MultiDisplayTests, dont_drop_input_for_secure_layer_on_secure_display) {
1269 ui::LayerStack layerStack = ui::LayerStack::fromValue(42);
Prabir Pradhand0aba782021-12-14 00:44:21 -08001270
1271 // Create the secure display as system, because only certain users can create secure displays.
1272 seteuid(AID_SYSTEM);
Vishnu Nair16a938f2021-09-24 07:14:54 -07001273 createDisplay(1000, 1000, true /*isSecure*/, layerStack);
Prabir Pradhand0aba782021-12-14 00:44:21 -08001274 // Change the uid back to root.
1275 seteuid(AID_ROOT);
1276
Vishnu Nair16a938f2021-09-24 07:14:54 -07001277 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
1278 surface->doTransaction([&](auto &t, auto &sc) {
1279 t.setFlags(sc, layer_state_t::eLayerSecure, layer_state_t::eLayerSecure);
1280 t.setLayerStack(sc, layerStack);
1281 });
1282 surface->showAt(100, 100);
1283
1284 injectTapOnDisplay(101, 101, layerStack.id);
1285 EXPECT_NE(surface->consumeEvent(), nullptr);
1286 EXPECT_NE(surface->consumeEvent(), nullptr);
1287
1288 surface->requestFocus(layerStack.id);
1289 surface->assertFocusChange(true);
1290 injectKeyOnDisplay(AKEYCODE_V, layerStack.id);
1291
1292 surface->expectKey(AKEYCODE_V);
1293}
1294
Vishnu Nair958da932020-08-21 17:12:37 -07001295} // namespace android::test