blob: c39b0b5ee60983e7597111bb031d6c308c56ef6f [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 Nairde19f852018-12-18 16:11:53 -080027#include <android/native_window.h>
28
Robert Carr1c4c5592018-09-24 13:18:43 -070029#include <binder/Binder.h>
30#include <binder/IServiceManager.h>
31#include <binder/Parcel.h>
32#include <binder/ProcessState.h>
33
Vishnu Nairde19f852018-12-18 16:11:53 -080034#include <gui/ISurfaceComposer.h>
35#include <gui/Surface.h>
Robert Carr1c4c5592018-09-24 13:18:43 -070036#include <gui/SurfaceComposerClient.h>
37#include <gui/SurfaceControl.h>
38
Chris Ye0783e992020-06-02 21:34:49 -070039#include <android/os/IInputFlinger.h>
Robert Carr1c4c5592018-09-24 13:18:43 -070040#include <input/Input.h>
Chris Ye0783e992020-06-02 21:34:49 -070041#include <input/InputTransport.h>
42#include <input/InputWindow.h>
Robert Carr1c4c5592018-09-24 13:18:43 -070043
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -080044#include <ui/DisplayConfig.h>
Robert Carr1c4c5592018-09-24 13:18:43 -070045#include <ui/Rect.h>
46#include <ui/Region.h>
47
Chris Ye0783e992020-06-02 21:34:49 -070048using android::os::IInputFlinger;
Robert Carr1c4c5592018-09-24 13:18:43 -070049
Vishnu Nair958da932020-08-21 17:12:37 -070050namespace android::test {
Robert Carr1c4c5592018-09-24 13:18:43 -070051
Vishnu Nairde19f852018-12-18 16:11:53 -080052using Transaction = SurfaceComposerClient::Transaction;
53
Robert Carr1c4c5592018-09-24 13:18:43 -070054sp<IInputFlinger> getInputFlinger() {
55 sp<IBinder> input(defaultServiceManager()->getService(
56 String16("inputflinger")));
57 if (input == nullptr) {
58 ALOGE("Failed to link to input service");
59 } else { ALOGE("Linked to input"); }
60 return interface_cast<IInputFlinger>(input);
61}
62
63// We use the top 10 layers as a way to haphazardly place ourselves above anything else.
64static const int LAYER_BASE = INT32_MAX - 10;
Chris Ye6c4243b2020-07-22 12:07:12 -070065static constexpr std::chrono::nanoseconds DISPATCHING_TIMEOUT = 5s;
Robert Carr1c4c5592018-09-24 13:18:43 -070066
67class InputSurface {
68public:
Vishnu Nairde19f852018-12-18 16:11:53 -080069 InputSurface(const sp<SurfaceControl> &sc, int width, int height) {
70 mSurfaceControl = sc;
Robert Carr1c4c5592018-09-24 13:18:43 -070071
72 mInputFlinger = getInputFlinger();
Garfield Tan15601662020-09-22 15:32:38 -070073 mClientChannel = std::make_shared<InputChannel>();
74 mInputFlinger->createInputChannel("testchannels", mClientChannel.get());
Robert Carr1c4c5592018-09-24 13:18:43 -070075
76 populateInputInfo(width, height);
77
78 mInputConsumer = new InputConsumer(mClientChannel);
79 }
80
Vishnu Nairde19f852018-12-18 16:11:53 -080081 static std::unique_ptr<InputSurface> makeColorInputSurface(const sp<SurfaceComposerClient> &scc,
82 int width, int height) {
83 sp<SurfaceControl> surfaceControl =
84 scc->createSurface(String8("Test Surface"), 0 /* bufHeight */, 0 /* bufWidth */,
Vishnu Nairfa247b12020-02-11 08:58:26 -080085 PIXEL_FORMAT_RGBA_8888,
86 ISurfaceComposerClient::eFXSurfaceEffect);
Vishnu Nairde19f852018-12-18 16:11:53 -080087 return std::make_unique<InputSurface>(surfaceControl, width, height);
88 }
89
90 static std::unique_ptr<InputSurface> makeBufferInputSurface(
91 const sp<SurfaceComposerClient> &scc, int width, int height) {
92 sp<SurfaceControl> surfaceControl =
93 scc->createSurface(String8("Test Buffer Surface"), width, height,
94 PIXEL_FORMAT_RGBA_8888, 0 /* flags */);
95 return std::make_unique<InputSurface>(surfaceControl, width, height);
96 }
97
98 static std::unique_ptr<InputSurface> makeContainerInputSurface(
99 const sp<SurfaceComposerClient> &scc, int width, int height) {
100 sp<SurfaceControl> surfaceControl =
101 scc->createSurface(String8("Test Container Surface"), 0 /* bufHeight */,
102 0 /* bufWidth */, PIXEL_FORMAT_RGBA_8888,
103 ISurfaceComposerClient::eFXSurfaceContainer);
104 return std::make_unique<InputSurface>(surfaceControl, width, height);
105 }
106
arthurhungb4a0f852020-06-16 11:02:50 +0800107 static std::unique_ptr<InputSurface> makeCursorInputSurface(
108 const sp<SurfaceComposerClient> &scc, int width, int height) {
109 sp<SurfaceControl> surfaceControl =
110 scc->createSurface(String8("Test Cursor Surface"), 0 /* bufHeight */,
111 0 /* bufWidth */, PIXEL_FORMAT_RGBA_8888,
112 ISurfaceComposerClient::eCursorWindow);
113 return std::make_unique<InputSurface>(surfaceControl, width, height);
114 }
115
Robert Carr1c4c5592018-09-24 13:18:43 -0700116 InputEvent* consumeEvent() {
117 waitForEventAvailable();
118
119 InputEvent *ev;
120 uint32_t seqId;
121 status_t consumed = mInputConsumer->consume(&mInputEventFactory, true, -1, &seqId, &ev);
122 if (consumed != OK) {
123 return nullptr;
124 }
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100125 status_t status = mInputConsumer->sendFinishedSignal(seqId, true);
126 EXPECT_EQ(OK, status) << "Could not send finished signal";
Robert Carr1c4c5592018-09-24 13:18:43 -0700127 return ev;
128 }
129
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100130 void assertFocusChange(bool hasFocus) {
131 InputEvent *ev = consumeEvent();
132 ASSERT_NE(ev, nullptr);
133 ASSERT_EQ(AINPUT_EVENT_TYPE_FOCUS, ev->getType());
134 FocusEvent *focusEvent = static_cast<FocusEvent *>(ev);
135 EXPECT_EQ(hasFocus, focusEvent->getHasFocus());
136 }
137
Robert Carr1c4c5592018-09-24 13:18:43 -0700138 void expectTap(int x, int y) {
139 InputEvent* ev = consumeEvent();
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100140 ASSERT_NE(ev, nullptr);
141 ASSERT_EQ(AINPUT_EVENT_TYPE_MOTION, ev->getType());
Robert Carr1c4c5592018-09-24 13:18:43 -0700142 MotionEvent* mev = static_cast<MotionEvent*>(ev);
143 EXPECT_EQ(AMOTION_EVENT_ACTION_DOWN, mev->getAction());
144 EXPECT_EQ(x, mev->getX(0));
145 EXPECT_EQ(y, mev->getY(0));
arthurhungb4a0f852020-06-16 11:02:50 +0800146 EXPECT_EQ(0, mev->getFlags() & VERIFIED_MOTION_EVENT_FLAGS);
Robert Carr1c4c5592018-09-24 13:18:43 -0700147
148 ev = consumeEvent();
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100149 ASSERT_NE(ev, nullptr);
150 ASSERT_EQ(AINPUT_EVENT_TYPE_MOTION, ev->getType());
Robert Carr1c4c5592018-09-24 13:18:43 -0700151 mev = static_cast<MotionEvent*>(ev);
152 EXPECT_EQ(AMOTION_EVENT_ACTION_UP, mev->getAction());
arthurhungb4a0f852020-06-16 11:02:50 +0800153 EXPECT_EQ(0, mev->getFlags() & VERIFIED_MOTION_EVENT_FLAGS);
Robert Carr1c4c5592018-09-24 13:18:43 -0700154 }
155
chaviw39cfa2e2020-11-04 14:19:02 -0800156 void expectTapWithFlag(int x, int y, int32_t flags) {
157 InputEvent *ev = consumeEvent();
158 ASSERT_NE(ev, nullptr);
159 ASSERT_EQ(AINPUT_EVENT_TYPE_MOTION, ev->getType());
160 MotionEvent *mev = static_cast<MotionEvent *>(ev);
161 EXPECT_EQ(AMOTION_EVENT_ACTION_DOWN, mev->getAction());
162 EXPECT_EQ(x, mev->getX(0));
163 EXPECT_EQ(y, mev->getY(0));
164 EXPECT_EQ(flags, mev->getFlags() & flags);
165
166 ev = consumeEvent();
167 ASSERT_NE(ev, nullptr);
168 ASSERT_EQ(AINPUT_EVENT_TYPE_MOTION, ev->getType());
169 mev = static_cast<MotionEvent *>(ev);
170 EXPECT_EQ(AMOTION_EVENT_ACTION_UP, mev->getAction());
171 EXPECT_EQ(flags, mev->getFlags() & flags);
172 }
173
Garfield Tan15601662020-09-22 15:32:38 -0700174 ~InputSurface() { mInputFlinger->removeInputChannel(mClientChannel->getConnectionToken()); }
Robert Carr1c4c5592018-09-24 13:18:43 -0700175
176 void doTransaction(std::function<void(SurfaceComposerClient::Transaction&,
177 const sp<SurfaceControl>&)> transactionBody) {
178 SurfaceComposerClient::Transaction t;
179 transactionBody(t, mSurfaceControl);
180 t.apply(true);
181 }
182
183 void showAt(int x, int y) {
184 SurfaceComposerClient::Transaction t;
185 t.show(mSurfaceControl);
186 t.setInputWindowInfo(mSurfaceControl, mInputInfo);
187 t.setLayer(mSurfaceControl, LAYER_BASE);
188 t.setPosition(mSurfaceControl, x, y);
189 t.setCrop_legacy(mSurfaceControl, Rect(0, 0, 100, 100));
190 t.setAlpha(mSurfaceControl, 1);
191 t.apply(true);
192 }
193
Vishnu Nair958da932020-08-21 17:12:37 -0700194 void requestFocus() {
195 SurfaceComposerClient::Transaction t;
196 t.setFocusedWindow(mInputInfo.token, nullptr, systemTime(SYSTEM_TIME_MONOTONIC),
197 0 /* displayId */);
198 t.apply(true);
199 }
200
Robert Carr1c4c5592018-09-24 13:18:43 -0700201private:
202 void waitForEventAvailable() {
203 struct pollfd fd;
204
205 fd.fd = mClientChannel->getFd();
206 fd.events = POLLIN;
207 poll(&fd, 1, 3000);
208 }
209
210 void populateInputInfo(int width, int height) {
Garfield Tan15601662020-09-22 15:32:38 -0700211 mInputInfo.token = mClientChannel->getConnectionToken();
Robert Carr1c4c5592018-09-24 13:18:43 -0700212 mInputInfo.name = "Test info";
Michael Wright44753b12020-07-08 13:48:11 +0100213 mInputInfo.flags = InputWindowInfo::Flag::NOT_TOUCH_MODAL;
214 mInputInfo.type = InputWindowInfo::Type::BASE_APPLICATION;
Siarhei Vishniakouc1ae5562020-06-30 14:22:57 -0500215 mInputInfo.dispatchingTimeout = 5s;
Robert Carre07e1032018-11-26 12:55:53 -0800216 mInputInfo.globalScaleFactor = 1.0;
Vishnu Nair47074b82020-08-14 11:54:47 -0700217 mInputInfo.focusable = true;
Robert Carr1c4c5592018-09-24 13:18:43 -0700218 mInputInfo.hasWallpaper = false;
219 mInputInfo.paused = false;
220
221 mInputInfo.touchableRegion.orSelf(Rect(0, 0, width, height));
222
223 // TODO: Fill in from SF?
224 mInputInfo.ownerPid = 11111;
225 mInputInfo.ownerUid = 11111;
Robert Carr1c4c5592018-09-24 13:18:43 -0700226 mInputInfo.displayId = 0;
Robert Carr740167f2018-10-11 19:03:41 -0700227
228 InputApplicationInfo aInfo;
229 aInfo.token = new BBinder();
230 aInfo.name = "Test app info";
Siarhei Vishniakou70622952020-07-30 11:17:23 -0500231 aInfo.dispatchingTimeoutMillis =
232 std::chrono::duration_cast<std::chrono::milliseconds>(DISPATCHING_TIMEOUT).count();
Robert Carr740167f2018-10-11 19:03:41 -0700233
234 mInputInfo.applicationInfo = aInfo;
Robert Carr1c4c5592018-09-24 13:18:43 -0700235 }
236public:
237 sp<SurfaceControl> mSurfaceControl;
Siarhei Vishniakouce5ab082020-07-09 17:03:21 -0500238 std::shared_ptr<InputChannel> mClientChannel;
Robert Carr1c4c5592018-09-24 13:18:43 -0700239 sp<IInputFlinger> mInputFlinger;
240
241 InputWindowInfo mInputInfo;
242
243 PreallocatedInputEventFactory mInputEventFactory;
244 InputConsumer* mInputConsumer;
245};
246
247class InputSurfacesTest : public ::testing::Test {
248public:
249 InputSurfacesTest() {
250 ProcessState::self()->startThreadPool();
251 }
252
253 void SetUp() {
254 mComposerClient = new SurfaceComposerClient;
255 ASSERT_EQ(NO_ERROR, mComposerClient->initCheck());
Vishnu Nairde19f852018-12-18 16:11:53 -0800256
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800257 const auto display = mComposerClient->getInternalDisplayToken();
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100258 ASSERT_NE(display, nullptr);
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800259
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -0800260 DisplayConfig config;
261 ASSERT_EQ(NO_ERROR, mComposerClient->getActiveDisplayConfig(display, &config));
Vishnu Nairde19f852018-12-18 16:11:53 -0800262
263 // After a new buffer is queued, SurfaceFlinger is notified and will
264 // latch the new buffer on next vsync. Let's heuristically wait for 3
265 // vsyncs.
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -0800266 mBufferPostDelay = static_cast<int32_t>(1e6 / config.refreshRate) * 3;
Robert Carr1c4c5592018-09-24 13:18:43 -0700267 }
268
269 void TearDown() {
270 mComposerClient->dispose();
271 }
272
273 std::unique_ptr<InputSurface> makeSurface(int width, int height) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800274 return InputSurface::makeColorInputSurface(mComposerClient, width, height);
275 }
276
277 void postBuffer(const sp<SurfaceControl> &layer) {
278 // wait for previous transactions (such as setSize) to complete
279 Transaction().apply(true);
280 ANativeWindow_Buffer buffer = {};
281 EXPECT_EQ(NO_ERROR, layer->getSurface()->lock(&buffer, nullptr));
282 ASSERT_EQ(NO_ERROR, layer->getSurface()->unlockAndPost());
283 // Request an empty transaction to get applied synchronously to ensure the buffer is
284 // latched.
285 Transaction().apply(true);
286 usleep(mBufferPostDelay);
Robert Carr1c4c5592018-09-24 13:18:43 -0700287 }
288
289 sp<SurfaceComposerClient> mComposerClient;
Vishnu Nairde19f852018-12-18 16:11:53 -0800290 int32_t mBufferPostDelay;
Robert Carr1c4c5592018-09-24 13:18:43 -0700291};
292
293void injectTap(int x, int y) {
294 char *buf1, *buf2;
295 asprintf(&buf1, "%d", x);
296 asprintf(&buf2, "%d", y);
297 if (fork() == 0) {
298 execlp("input", "input", "tap", buf1, buf2, NULL);
299 }
300}
301
302TEST_F(InputSurfacesTest, can_receive_input) {
303 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
304 surface->showAt(100, 100);
305
306 injectTap(101, 101);
307
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100308 EXPECT_NE(surface->consumeEvent(), nullptr);
Robert Carr1c4c5592018-09-24 13:18:43 -0700309}
310
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100311/**
312 * Set up two surfaces side-by-side. Tap each surface.
313 * Next, swap the positions of the two surfaces. Inject tap into the two
314 * original locations. Ensure that the tap is received by the surfaces in the
315 * reverse order.
316 */
Robert Carr1c4c5592018-09-24 13:18:43 -0700317TEST_F(InputSurfacesTest, input_respects_positioning) {
318 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
319 surface->showAt(100, 100);
320
321 std::unique_ptr<InputSurface> surface2 = makeSurface(100, 100);
322 surface2->showAt(200, 200);
323
324 injectTap(201, 201);
325 surface2->expectTap(1, 1);
326
327 injectTap(101, 101);
328 surface->expectTap(1, 1);
329
330 surface2->doTransaction([](auto &t, auto &sc) {
331 t.setPosition(sc, 100, 100);
332 });
333 surface->doTransaction([](auto &t, auto &sc) {
334 t.setPosition(sc, 200, 200);
335 });
336
337 injectTap(101, 101);
338 surface2->expectTap(1, 1);
339
340 injectTap(201, 201);
341 surface->expectTap(1, 1);
342}
343
344TEST_F(InputSurfacesTest, input_respects_layering) {
345 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
346 std::unique_ptr<InputSurface> surface2 = makeSurface(100, 100);
347
348 surface->showAt(10, 10);
349 surface2->showAt(10, 10);
350
351 surface->doTransaction([](auto &t, auto &sc) {
352 t.setLayer(sc, LAYER_BASE + 1);
353 });
354
355 injectTap(11, 11);
356 surface->expectTap(1, 1);
357
358 surface2->doTransaction([](auto &t, auto &sc) {
359 t.setLayer(sc, LAYER_BASE + 1);
360 });
361
362 injectTap(11, 11);
363 surface2->expectTap(1, 1);
364
365 surface2->doTransaction([](auto &t, auto &sc) {
366 t.hide(sc);
367 });
368
369 injectTap(11, 11);
370 surface->expectTap(1, 1);
371}
372
Vishnu Nairde19f852018-12-18 16:11:53 -0800373// Surface Insets are set to offset the client content and draw a border around the client surface
374// (such as shadows in dialogs). Inputs sent to the client are offset such that 0,0 is the start
375// of the client content.
376TEST_F(InputSurfacesTest, input_respects_surface_insets) {
377 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
378 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
379 bgSurface->showAt(100, 100);
380
381 fgSurface->mInputInfo.surfaceInset = 5;
382 fgSurface->showAt(100, 100);
383
384 injectTap(106, 106);
385 fgSurface->expectTap(1, 1);
386
387 injectTap(101, 101);
388 bgSurface->expectTap(1, 1);
389}
390
391// Ensure a surface whose insets are cropped, handles the touch offset correctly. ref:b/120413463
392TEST_F(InputSurfacesTest, input_respects_cropped_surface_insets) {
393 std::unique_ptr<InputSurface> parentSurface = makeSurface(100, 100);
394 std::unique_ptr<InputSurface> childSurface = makeSurface(100, 100);
395 parentSurface->showAt(100, 100);
396
397 childSurface->mInputInfo.surfaceInset = 10;
398 childSurface->showAt(100, 100);
399
400 childSurface->doTransaction([&](auto &t, auto &sc) {
401 t.setPosition(sc, -5, -5);
Pablo Gamito11dcc222020-09-12 15:49:39 +0000402 t.reparent(sc, parentSurface->mSurfaceControl);
Vishnu Nairde19f852018-12-18 16:11:53 -0800403 });
404
405 injectTap(106, 106);
406 childSurface->expectTap(1, 1);
407
408 injectTap(101, 101);
409 parentSurface->expectTap(1, 1);
410}
411
Arthur Hung118b1142019-05-08 21:25:59 +0800412// Ensure a surface whose insets are scaled, handles the touch offset correctly.
413TEST_F(InputSurfacesTest, input_respects_scaled_surface_insets) {
414 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
415 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
416 bgSurface->showAt(100, 100);
417
418 fgSurface->mInputInfo.surfaceInset = 5;
419 fgSurface->showAt(100, 100);
420
421 fgSurface->doTransaction([&](auto &t, auto &sc) { t.setMatrix(sc, 2.0, 0, 0, 4.0); });
422
423 // expect = touch / scale - inset
424 injectTap(112, 124);
425 fgSurface->expectTap(1, 1);
426
427 injectTap(101, 101);
428 bgSurface->expectTap(1, 1);
429}
430
Ady Abraham282f1d72019-07-24 18:05:56 -0700431TEST_F(InputSurfacesTest, input_respects_scaled_surface_insets_overflow) {
432 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
433 // In case we pass the very big inset without any checking.
434 fgSurface->mInputInfo.surfaceInset = INT32_MAX;
435 fgSurface->showAt(100, 100);
436
437 fgSurface->doTransaction([&](auto &t, auto &sc) { t.setMatrix(sc, 2.0, 0, 0, 2.0); });
438
439 // expect no crash for overflow, and inset size to be clamped to surface size
440 injectTap(202, 202);
441 fgSurface->expectTap(1, 1);
442}
443
Vishnu Nairde19f852018-12-18 16:11:53 -0800444// Ensure we ignore transparent region when getting screen bounds when positioning input frame.
445TEST_F(InputSurfacesTest, input_ignores_transparent_region) {
446 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
447 surface->doTransaction([](auto &t, auto &sc) {
448 Region transparentRegion(Rect(0, 0, 10, 10));
449 t.setTransparentRegionHint(sc, transparentRegion);
450 });
451 surface->showAt(100, 100);
452 injectTap(101, 101);
453 surface->expectTap(1, 1);
454}
455
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700456// TODO(b/139494112) update tests once we define expected behavior
457// Ensure we still send input to the surface regardless of surface visibility changes due to the
458// first buffer being submitted or alpha changes.
459// Original bug ref: b/120839715
460TEST_F(InputSurfacesTest, input_ignores_buffer_layer_buffer) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800461 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
462 std::unique_ptr<InputSurface> bufferSurface =
463 InputSurface::makeBufferInputSurface(mComposerClient, 100, 100);
464
465 bgSurface->showAt(10, 10);
466 bufferSurface->showAt(10, 10);
467
468 injectTap(11, 11);
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700469 bufferSurface->expectTap(1, 1);
Vishnu Nairde19f852018-12-18 16:11:53 -0800470
471 postBuffer(bufferSurface->mSurfaceControl);
472 injectTap(11, 11);
473 bufferSurface->expectTap(1, 1);
474}
475
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700476TEST_F(InputSurfacesTest, input_ignores_buffer_layer_alpha) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800477 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
478 std::unique_ptr<InputSurface> bufferSurface =
479 InputSurface::makeBufferInputSurface(mComposerClient, 100, 100);
480 postBuffer(bufferSurface->mSurfaceControl);
481
482 bgSurface->showAt(10, 10);
483 bufferSurface->showAt(10, 10);
484
485 injectTap(11, 11);
486 bufferSurface->expectTap(1, 1);
487
488 bufferSurface->doTransaction([](auto &t, auto &sc) { t.setAlpha(sc, 0.0); });
489
490 injectTap(11, 11);
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700491 bufferSurface->expectTap(1, 1);
Vishnu Nairde19f852018-12-18 16:11:53 -0800492}
493
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700494TEST_F(InputSurfacesTest, input_ignores_color_layer_alpha) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800495 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
496 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
497
498 bgSurface->showAt(10, 10);
499 fgSurface->showAt(10, 10);
500
501 injectTap(11, 11);
502 fgSurface->expectTap(1, 1);
503
504 fgSurface->doTransaction([](auto &t, auto &sc) { t.setAlpha(sc, 0.0); });
505
506 injectTap(11, 11);
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700507 fgSurface->expectTap(1, 1);
Vishnu Nairde19f852018-12-18 16:11:53 -0800508}
509
510TEST_F(InputSurfacesTest, input_respects_container_layer_visiblity) {
511 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
512 std::unique_ptr<InputSurface> containerSurface =
513 InputSurface::makeContainerInputSurface(mComposerClient, 100, 100);
514
515 bgSurface->showAt(10, 10);
516 containerSurface->showAt(10, 10);
517
518 injectTap(11, 11);
519 containerSurface->expectTap(1, 1);
520
521 containerSurface->doTransaction([](auto &t, auto &sc) { t.hide(sc); });
522
523 injectTap(11, 11);
524 bgSurface->expectTap(1, 1);
525}
chaviwfbe5d9c2018-12-26 12:23:37 -0800526
Arthur Hungd20b2702019-01-14 18:16:16 +0800527TEST_F(InputSurfacesTest, input_respects_outscreen) {
528 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
529 surface->showAt(-1, -1);
530
531 injectTap(0, 0);
532 surface->expectTap(1, 1);
533}
arthurhungb4a0f852020-06-16 11:02:50 +0800534
535TEST_F(InputSurfacesTest, input_ignores_cursor_layer) {
536 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
537 std::unique_ptr<InputSurface> cursorSurface =
538 InputSurface::makeCursorInputSurface(mComposerClient, 10, 10);
539
540 surface->showAt(10, 10);
arthurhungb4a0f852020-06-16 11:02:50 +0800541 cursorSurface->showAt(10, 10);
542
543 injectTap(11, 11);
544 surface->expectTap(1, 1);
545}
Vishnu Nair958da932020-08-21 17:12:37 -0700546
547TEST_F(InputSurfacesTest, can_be_focused) {
548 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
549 surface->showAt(100, 100);
550 surface->requestFocus();
551
552 surface->assertFocusChange(true);
Robert Carr1c4c5592018-09-24 13:18:43 -0700553}
chaviw44a6d2b2020-09-08 17:14:16 -0700554
555TEST_F(InputSurfacesTest, rotate_surface) {
556 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
557 surface->showAt(10, 10);
558 surface->doTransaction([](auto &t, auto &sc) {
559 t.setMatrix(sc, 0, 1, -1, 0); // 90 degrees
560 });
561 injectTap(8, 11);
562 surface->expectTap(1, 2);
563
564 surface->doTransaction([](auto &t, auto &sc) {
565 t.setMatrix(sc, -1, 0, 0, -1); // 180 degrees
566 });
567 injectTap(9, 8);
568 surface->expectTap(1, 2);
569
570 surface->doTransaction([](auto &t, auto &sc) {
571 t.setMatrix(sc, 0, -1, 1, 0); // 270 degrees
572 });
573 injectTap(12, 9);
574 surface->expectTap(1, 2);
575}
576
577TEST_F(InputSurfacesTest, rotate_surface_with_scale) {
578 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
579 surface->showAt(10, 10);
580 surface->doTransaction([](auto &t, auto &sc) {
581 t.setMatrix(sc, 0, 2, -4, 0); // 90 degrees
582 });
583 injectTap(2, 12);
584 surface->expectTap(1, 2);
585
586 surface->doTransaction([](auto &t, auto &sc) {
587 t.setMatrix(sc, -2, 0, 0, -4); // 180 degrees
588 });
589 injectTap(8, 2);
590 surface->expectTap(1, 2);
591
592 surface->doTransaction([](auto &t, auto &sc) {
593 t.setMatrix(sc, 0, -2, 4, 0); // 270 degrees
594 });
595 injectTap(18, 8);
596 surface->expectTap(1, 2);
597}
598
599TEST_F(InputSurfacesTest, rotate_surface_with_scale_and_insets) {
600 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
601 surface->mInputInfo.surfaceInset = 5;
602 surface->showAt(100, 100);
603
604 surface->doTransaction([](auto &t, auto &sc) {
605 t.setMatrix(sc, 0, 2, -4, 0); // 90 degrees
606 });
607 injectTap(40, 120);
608 surface->expectTap(5, 10);
609
610 surface->doTransaction([](auto &t, auto &sc) {
611 t.setMatrix(sc, -2, 0, 0, -4); // 180 degrees
612 });
613 injectTap(80, 40);
614 surface->expectTap(5, 10);
615
616 surface->doTransaction([](auto &t, auto &sc) {
617 t.setMatrix(sc, 0, -2, 4, 0); // 270 degrees
618 });
619 injectTap(160, 80);
620 surface->expectTap(5, 10);
621}
622
chaviw39cfa2e2020-11-04 14:19:02 -0800623TEST_F(InputSurfacesTest, touch_flag_obscured) {
624 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
625 surface->showAt(100, 100);
626
627 // Add non touchable window to fully cover touchable window. Window behind gets touch, but
628 // with flag AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED
629 std::unique_ptr<InputSurface> nonTouchableSurface = makeSurface(100, 100);
630 nonTouchableSurface->mInputInfo.flags = InputWindowInfo::Flag::NOT_TOUCHABLE;
631 nonTouchableSurface->mInputInfo.ownerUid = 22222;
632 nonTouchableSurface->showAt(100, 100);
633
634 injectTap(190, 199);
635 surface->expectTapWithFlag(90, 99, AMOTION_EVENT_FLAG_WINDOW_IS_OBSCURED);
636}
637
638TEST_F(InputSurfacesTest, touch_flag_partially_obscured_with_crop) {
639 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
640 surface->showAt(100, 100);
641
642 // Add non touchable window to cover touchable window, but parent is cropped to not cover area
643 // that will be tapped. Window behind gets touch, but with flag
644 // AMOTION_EVENT_FLAG_WINDOW_IS_PARTIALLY_OBSCURED
645 std::unique_ptr<InputSurface> parentSurface = makeSurface(100, 100);
646 std::unique_ptr<InputSurface> nonTouchableSurface = makeSurface(100, 100);
647 nonTouchableSurface->mInputInfo.flags = InputWindowInfo::Flag::NOT_TOUCHABLE;
648 parentSurface->mInputInfo.flags = InputWindowInfo::Flag::NOT_TOUCHABLE;
649 nonTouchableSurface->mInputInfo.ownerUid = 22222;
650 parentSurface->mInputInfo.ownerUid = 22222;
651 nonTouchableSurface->showAt(0, 0);
652 parentSurface->showAt(100, 100);
653
654 nonTouchableSurface->doTransaction([&](auto &t, auto &sc) {
655 t.setCrop_legacy(parentSurface->mSurfaceControl, Rect(0, 0, 50, 50));
656 t.reparent(sc, parentSurface->mSurfaceControl);
657 });
658
659 injectTap(190, 199);
660 surface->expectTapWithFlag(90, 99, AMOTION_EVENT_FLAG_WINDOW_IS_PARTIALLY_OBSCURED);
661}
662
663TEST_F(InputSurfacesTest, touch_not_obscured_with_crop) {
664 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
665 surface->showAt(100, 100);
666
667 // Add non touchable window to cover touchable window, but parent is cropped to avoid covering
668 // the touchable window. Window behind gets touch with no obscured flags.
669 std::unique_ptr<InputSurface> parentSurface = makeSurface(100, 100);
670 std::unique_ptr<InputSurface> nonTouchableSurface = makeSurface(100, 100);
671 nonTouchableSurface->mInputInfo.flags = InputWindowInfo::Flag::NOT_TOUCHABLE;
672 parentSurface->mInputInfo.flags = InputWindowInfo::Flag::NOT_TOUCHABLE;
673 nonTouchableSurface->mInputInfo.ownerUid = 22222;
674 parentSurface->mInputInfo.ownerUid = 22222;
675 nonTouchableSurface->showAt(0, 0);
676 parentSurface->showAt(50, 50);
677
678 nonTouchableSurface->doTransaction([&](auto &t, auto &sc) {
679 t.setCrop_legacy(parentSurface->mSurfaceControl, Rect(0, 0, 50, 50));
680 t.reparent(sc, parentSurface->mSurfaceControl);
681 });
682
683 injectTap(101, 110);
684 surface->expectTap(1, 10);
685}
686
Vishnu Nair958da932020-08-21 17:12:37 -0700687} // namespace android::test