blob: cca8dddfe66ed0071cf9f6e7833f0a6de92acda0 [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
50namespace android {
51namespace test {
52
Vishnu Nairde19f852018-12-18 16:11:53 -080053using Transaction = SurfaceComposerClient::Transaction;
54
Robert Carr1c4c5592018-09-24 13:18:43 -070055sp<IInputFlinger> getInputFlinger() {
56 sp<IBinder> input(defaultServiceManager()->getService(
57 String16("inputflinger")));
58 if (input == nullptr) {
59 ALOGE("Failed to link to input service");
60 } else { ALOGE("Linked to input"); }
61 return interface_cast<IInputFlinger>(input);
62}
63
64// We use the top 10 layers as a way to haphazardly place ourselves above anything else.
65static const int LAYER_BASE = INT32_MAX - 10;
66
67class InputSurface {
68public:
Vishnu Nairde19f852018-12-18 16:11:53 -080069 InputSurface(const sp<SurfaceControl> &sc, int width, int height) {
70 mSurfaceControl = sc;
Siarhei Vishniakoud2588272020-07-10 11:15:40 -050071 std::unique_ptr<InputChannel> clientChannel;
72 InputChannel::openInputChannelPair("testchannels", mServerChannel, clientChannel);
73 mClientChannel = std::move(clientChannel);
Robert Carr1c4c5592018-09-24 13:18:43 -070074
75 mInputFlinger = getInputFlinger();
Siarhei Vishniakouce5ab082020-07-09 17:03:21 -050076 mInputFlinger->registerInputChannel(*mServerChannel);
Robert Carr1c4c5592018-09-24 13:18:43 -070077
78 populateInputInfo(width, height);
79
80 mInputConsumer = new InputConsumer(mClientChannel);
81 }
82
Vishnu Nairde19f852018-12-18 16:11:53 -080083 static std::unique_ptr<InputSurface> makeColorInputSurface(const sp<SurfaceComposerClient> &scc,
84 int width, int height) {
85 sp<SurfaceControl> surfaceControl =
86 scc->createSurface(String8("Test Surface"), 0 /* bufHeight */, 0 /* bufWidth */,
Vishnu Nairfa247b12020-02-11 08:58:26 -080087 PIXEL_FORMAT_RGBA_8888,
88 ISurfaceComposerClient::eFXSurfaceEffect);
Vishnu Nairde19f852018-12-18 16:11:53 -080089 return std::make_unique<InputSurface>(surfaceControl, width, height);
90 }
91
92 static std::unique_ptr<InputSurface> makeBufferInputSurface(
93 const sp<SurfaceComposerClient> &scc, int width, int height) {
94 sp<SurfaceControl> surfaceControl =
95 scc->createSurface(String8("Test Buffer Surface"), width, height,
96 PIXEL_FORMAT_RGBA_8888, 0 /* flags */);
97 return std::make_unique<InputSurface>(surfaceControl, width, height);
98 }
99
100 static std::unique_ptr<InputSurface> makeContainerInputSurface(
101 const sp<SurfaceComposerClient> &scc, int width, int height) {
102 sp<SurfaceControl> surfaceControl =
103 scc->createSurface(String8("Test Container Surface"), 0 /* bufHeight */,
104 0 /* bufWidth */, PIXEL_FORMAT_RGBA_8888,
105 ISurfaceComposerClient::eFXSurfaceContainer);
106 return std::make_unique<InputSurface>(surfaceControl, width, height);
107 }
108
arthurhungb4a0f852020-06-16 11:02:50 +0800109 static std::unique_ptr<InputSurface> makeCursorInputSurface(
110 const sp<SurfaceComposerClient> &scc, int width, int height) {
111 sp<SurfaceControl> surfaceControl =
112 scc->createSurface(String8("Test Cursor Surface"), 0 /* bufHeight */,
113 0 /* bufWidth */, PIXEL_FORMAT_RGBA_8888,
114 ISurfaceComposerClient::eCursorWindow);
115 return std::make_unique<InputSurface>(surfaceControl, width, height);
116 }
117
Robert Carr1c4c5592018-09-24 13:18:43 -0700118 InputEvent* consumeEvent() {
119 waitForEventAvailable();
120
121 InputEvent *ev;
122 uint32_t seqId;
123 status_t consumed = mInputConsumer->consume(&mInputEventFactory, true, -1, &seqId, &ev);
124 if (consumed != OK) {
125 return nullptr;
126 }
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100127 status_t status = mInputConsumer->sendFinishedSignal(seqId, true);
128 EXPECT_EQ(OK, status) << "Could not send finished signal";
Robert Carr1c4c5592018-09-24 13:18:43 -0700129 return ev;
130 }
131
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100132 void assertFocusChange(bool hasFocus) {
133 InputEvent *ev = consumeEvent();
134 ASSERT_NE(ev, nullptr);
135 ASSERT_EQ(AINPUT_EVENT_TYPE_FOCUS, ev->getType());
136 FocusEvent *focusEvent = static_cast<FocusEvent *>(ev);
137 EXPECT_EQ(hasFocus, focusEvent->getHasFocus());
138 }
139
Robert Carr1c4c5592018-09-24 13:18:43 -0700140 void expectTap(int x, int y) {
141 InputEvent* ev = consumeEvent();
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100142 ASSERT_NE(ev, nullptr);
143 ASSERT_EQ(AINPUT_EVENT_TYPE_MOTION, ev->getType());
Robert Carr1c4c5592018-09-24 13:18:43 -0700144 MotionEvent* mev = static_cast<MotionEvent*>(ev);
145 EXPECT_EQ(AMOTION_EVENT_ACTION_DOWN, mev->getAction());
146 EXPECT_EQ(x, mev->getX(0));
147 EXPECT_EQ(y, mev->getY(0));
arthurhungb4a0f852020-06-16 11:02:50 +0800148 EXPECT_EQ(0, mev->getFlags() & VERIFIED_MOTION_EVENT_FLAGS);
Robert Carr1c4c5592018-09-24 13:18:43 -0700149
150 ev = consumeEvent();
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100151 ASSERT_NE(ev, nullptr);
152 ASSERT_EQ(AINPUT_EVENT_TYPE_MOTION, ev->getType());
Robert Carr1c4c5592018-09-24 13:18:43 -0700153 mev = static_cast<MotionEvent*>(ev);
154 EXPECT_EQ(AMOTION_EVENT_ACTION_UP, mev->getAction());
arthurhungb4a0f852020-06-16 11:02:50 +0800155 EXPECT_EQ(0, mev->getFlags() & VERIFIED_MOTION_EVENT_FLAGS);
Robert Carr1c4c5592018-09-24 13:18:43 -0700156 }
157
Siarhei Vishniakouce5ab082020-07-09 17:03:21 -0500158 ~InputSurface() { mInputFlinger->unregisterInputChannel(*mServerChannel); }
Robert Carr1c4c5592018-09-24 13:18:43 -0700159
160 void doTransaction(std::function<void(SurfaceComposerClient::Transaction&,
161 const sp<SurfaceControl>&)> transactionBody) {
162 SurfaceComposerClient::Transaction t;
163 transactionBody(t, mSurfaceControl);
164 t.apply(true);
165 }
166
167 void showAt(int x, int y) {
168 SurfaceComposerClient::Transaction t;
169 t.show(mSurfaceControl);
170 t.setInputWindowInfo(mSurfaceControl, mInputInfo);
171 t.setLayer(mSurfaceControl, LAYER_BASE);
172 t.setPosition(mSurfaceControl, x, y);
173 t.setCrop_legacy(mSurfaceControl, Rect(0, 0, 100, 100));
174 t.setAlpha(mSurfaceControl, 1);
175 t.apply(true);
176 }
177
178private:
179 void waitForEventAvailable() {
180 struct pollfd fd;
181
182 fd.fd = mClientChannel->getFd();
183 fd.events = POLLIN;
184 poll(&fd, 1, 3000);
185 }
186
187 void populateInputInfo(int width, int height) {
Siarhei Vishniakou26d3cfb2019-10-15 17:02:32 -0700188 mInputInfo.token = mServerChannel->getConnectionToken();
Robert Carr1c4c5592018-09-24 13:18:43 -0700189 mInputInfo.name = "Test info";
Michael Wright44753b12020-07-08 13:48:11 +0100190 mInputInfo.flags = InputWindowInfo::Flag::NOT_TOUCH_MODAL;
191 mInputInfo.type = InputWindowInfo::Type::BASE_APPLICATION;
Siarhei Vishniakouc1ae5562020-06-30 14:22:57 -0500192 mInputInfo.dispatchingTimeout = 5s;
Robert Carre07e1032018-11-26 12:55:53 -0800193 mInputInfo.globalScaleFactor = 1.0;
Robert Carr1c4c5592018-09-24 13:18:43 -0700194 mInputInfo.canReceiveKeys = true;
195 mInputInfo.hasFocus = true;
196 mInputInfo.hasWallpaper = false;
197 mInputInfo.paused = false;
198
199 mInputInfo.touchableRegion.orSelf(Rect(0, 0, width, height));
200
201 // TODO: Fill in from SF?
202 mInputInfo.ownerPid = 11111;
203 mInputInfo.ownerUid = 11111;
Robert Carr1c4c5592018-09-24 13:18:43 -0700204 mInputInfo.displayId = 0;
Robert Carr740167f2018-10-11 19:03:41 -0700205
206 InputApplicationInfo aInfo;
207 aInfo.token = new BBinder();
208 aInfo.name = "Test app info";
Siarhei Vishniakouc1ae5562020-06-30 14:22:57 -0500209 aInfo.dispatchingTimeout = 5s;
Robert Carr740167f2018-10-11 19:03:41 -0700210
211 mInputInfo.applicationInfo = aInfo;
Robert Carr1c4c5592018-09-24 13:18:43 -0700212 }
213public:
214 sp<SurfaceControl> mSurfaceControl;
Siarhei Vishniakoud2588272020-07-10 11:15:40 -0500215 std::unique_ptr<InputChannel> mServerChannel;
Siarhei Vishniakouce5ab082020-07-09 17:03:21 -0500216 std::shared_ptr<InputChannel> mClientChannel;
Robert Carr1c4c5592018-09-24 13:18:43 -0700217 sp<IInputFlinger> mInputFlinger;
218
219 InputWindowInfo mInputInfo;
220
221 PreallocatedInputEventFactory mInputEventFactory;
222 InputConsumer* mInputConsumer;
223};
224
225class InputSurfacesTest : public ::testing::Test {
226public:
227 InputSurfacesTest() {
228 ProcessState::self()->startThreadPool();
229 }
230
231 void SetUp() {
232 mComposerClient = new SurfaceComposerClient;
233 ASSERT_EQ(NO_ERROR, mComposerClient->initCheck());
Vishnu Nairde19f852018-12-18 16:11:53 -0800234
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800235 const auto display = mComposerClient->getInternalDisplayToken();
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100236 ASSERT_NE(display, nullptr);
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800237
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -0800238 DisplayConfig config;
239 ASSERT_EQ(NO_ERROR, mComposerClient->getActiveDisplayConfig(display, &config));
Vishnu Nairde19f852018-12-18 16:11:53 -0800240
241 // After a new buffer is queued, SurfaceFlinger is notified and will
242 // latch the new buffer on next vsync. Let's heuristically wait for 3
243 // vsyncs.
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -0800244 mBufferPostDelay = static_cast<int32_t>(1e6 / config.refreshRate) * 3;
Robert Carr1c4c5592018-09-24 13:18:43 -0700245 }
246
247 void TearDown() {
248 mComposerClient->dispose();
249 }
250
251 std::unique_ptr<InputSurface> makeSurface(int width, int height) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800252 return InputSurface::makeColorInputSurface(mComposerClient, width, height);
253 }
254
255 void postBuffer(const sp<SurfaceControl> &layer) {
256 // wait for previous transactions (such as setSize) to complete
257 Transaction().apply(true);
258 ANativeWindow_Buffer buffer = {};
259 EXPECT_EQ(NO_ERROR, layer->getSurface()->lock(&buffer, nullptr));
260 ASSERT_EQ(NO_ERROR, layer->getSurface()->unlockAndPost());
261 // Request an empty transaction to get applied synchronously to ensure the buffer is
262 // latched.
263 Transaction().apply(true);
264 usleep(mBufferPostDelay);
Robert Carr1c4c5592018-09-24 13:18:43 -0700265 }
266
267 sp<SurfaceComposerClient> mComposerClient;
Vishnu Nairde19f852018-12-18 16:11:53 -0800268 int32_t mBufferPostDelay;
Robert Carr1c4c5592018-09-24 13:18:43 -0700269};
270
271void injectTap(int x, int y) {
272 char *buf1, *buf2;
273 asprintf(&buf1, "%d", x);
274 asprintf(&buf2, "%d", y);
275 if (fork() == 0) {
276 execlp("input", "input", "tap", buf1, buf2, NULL);
277 }
278}
279
280TEST_F(InputSurfacesTest, can_receive_input) {
281 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
282 surface->showAt(100, 100);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100283 surface->assertFocusChange(true);
Robert Carr1c4c5592018-09-24 13:18:43 -0700284
285 injectTap(101, 101);
286
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100287 EXPECT_NE(surface->consumeEvent(), nullptr);
Robert Carr1c4c5592018-09-24 13:18:43 -0700288}
289
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100290/**
291 * Set up two surfaces side-by-side. Tap each surface.
292 * Next, swap the positions of the two surfaces. Inject tap into the two
293 * original locations. Ensure that the tap is received by the surfaces in the
294 * reverse order.
295 */
Robert Carr1c4c5592018-09-24 13:18:43 -0700296TEST_F(InputSurfacesTest, input_respects_positioning) {
297 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
298 surface->showAt(100, 100);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100299 surface->assertFocusChange(true);
Robert Carr1c4c5592018-09-24 13:18:43 -0700300
301 std::unique_ptr<InputSurface> surface2 = makeSurface(100, 100);
302 surface2->showAt(200, 200);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100303 surface->assertFocusChange(false);
304 surface2->assertFocusChange(true);
Robert Carr1c4c5592018-09-24 13:18:43 -0700305
306 injectTap(201, 201);
307 surface2->expectTap(1, 1);
308
309 injectTap(101, 101);
310 surface->expectTap(1, 1);
311
312 surface2->doTransaction([](auto &t, auto &sc) {
313 t.setPosition(sc, 100, 100);
314 });
315 surface->doTransaction([](auto &t, auto &sc) {
316 t.setPosition(sc, 200, 200);
317 });
318
319 injectTap(101, 101);
320 surface2->expectTap(1, 1);
321
322 injectTap(201, 201);
323 surface->expectTap(1, 1);
324}
325
326TEST_F(InputSurfacesTest, input_respects_layering) {
327 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
328 std::unique_ptr<InputSurface> surface2 = makeSurface(100, 100);
329
330 surface->showAt(10, 10);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100331 surface->assertFocusChange(true);
Robert Carr1c4c5592018-09-24 13:18:43 -0700332 surface2->showAt(10, 10);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100333 surface->assertFocusChange(false);
334 surface2->assertFocusChange(true);
Robert Carr1c4c5592018-09-24 13:18:43 -0700335
336 surface->doTransaction([](auto &t, auto &sc) {
337 t.setLayer(sc, LAYER_BASE + 1);
338 });
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100339 surface2->assertFocusChange(false);
340 surface->assertFocusChange(true);
Robert Carr1c4c5592018-09-24 13:18:43 -0700341
342 injectTap(11, 11);
343 surface->expectTap(1, 1);
344
345 surface2->doTransaction([](auto &t, auto &sc) {
346 t.setLayer(sc, LAYER_BASE + 1);
347 });
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100348 surface2->assertFocusChange(true);
349 surface->assertFocusChange(false);
Robert Carr1c4c5592018-09-24 13:18:43 -0700350
351 injectTap(11, 11);
352 surface2->expectTap(1, 1);
353
354 surface2->doTransaction([](auto &t, auto &sc) {
355 t.hide(sc);
356 });
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100357 surface2->assertFocusChange(false);
358 surface->assertFocusChange(true);
Robert Carr1c4c5592018-09-24 13:18:43 -0700359
360 injectTap(11, 11);
361 surface->expectTap(1, 1);
362}
363
Vishnu Nairde19f852018-12-18 16:11:53 -0800364// Surface Insets are set to offset the client content and draw a border around the client surface
365// (such as shadows in dialogs). Inputs sent to the client are offset such that 0,0 is the start
366// of the client content.
367TEST_F(InputSurfacesTest, input_respects_surface_insets) {
368 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
369 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
370 bgSurface->showAt(100, 100);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100371 bgSurface->assertFocusChange(true);
Vishnu Nairde19f852018-12-18 16:11:53 -0800372
373 fgSurface->mInputInfo.surfaceInset = 5;
374 fgSurface->showAt(100, 100);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100375 fgSurface->assertFocusChange(true);
376 bgSurface->assertFocusChange(false);
Vishnu Nairde19f852018-12-18 16:11:53 -0800377
378 injectTap(106, 106);
379 fgSurface->expectTap(1, 1);
380
381 injectTap(101, 101);
382 bgSurface->expectTap(1, 1);
383}
384
385// Ensure a surface whose insets are cropped, handles the touch offset correctly. ref:b/120413463
386TEST_F(InputSurfacesTest, input_respects_cropped_surface_insets) {
387 std::unique_ptr<InputSurface> parentSurface = makeSurface(100, 100);
388 std::unique_ptr<InputSurface> childSurface = makeSurface(100, 100);
389 parentSurface->showAt(100, 100);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100390 parentSurface->assertFocusChange(true);
Vishnu Nairde19f852018-12-18 16:11:53 -0800391
392 childSurface->mInputInfo.surfaceInset = 10;
393 childSurface->showAt(100, 100);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100394 childSurface->assertFocusChange(true);
395 parentSurface->assertFocusChange(false);
Vishnu Nairde19f852018-12-18 16:11:53 -0800396
397 childSurface->doTransaction([&](auto &t, auto &sc) {
398 t.setPosition(sc, -5, -5);
399 t.reparent(sc, parentSurface->mSurfaceControl->getHandle());
400 });
401
402 injectTap(106, 106);
403 childSurface->expectTap(1, 1);
404
405 injectTap(101, 101);
406 parentSurface->expectTap(1, 1);
407}
408
Arthur Hung118b1142019-05-08 21:25:59 +0800409// Ensure a surface whose insets are scaled, handles the touch offset correctly.
410TEST_F(InputSurfacesTest, input_respects_scaled_surface_insets) {
411 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
412 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
413 bgSurface->showAt(100, 100);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100414 bgSurface->assertFocusChange(true);
Arthur Hung118b1142019-05-08 21:25:59 +0800415
416 fgSurface->mInputInfo.surfaceInset = 5;
417 fgSurface->showAt(100, 100);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100418 bgSurface->assertFocusChange(false);
419 fgSurface->assertFocusChange(true);
Arthur Hung118b1142019-05-08 21:25:59 +0800420
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);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100436 fgSurface->assertFocusChange(true);
Ady Abraham282f1d72019-07-24 18:05:56 -0700437
438 fgSurface->doTransaction([&](auto &t, auto &sc) { t.setMatrix(sc, 2.0, 0, 0, 2.0); });
439
440 // expect no crash for overflow, and inset size to be clamped to surface size
441 injectTap(202, 202);
442 fgSurface->expectTap(1, 1);
443}
444
Vishnu Nairde19f852018-12-18 16:11:53 -0800445// Ensure we ignore transparent region when getting screen bounds when positioning input frame.
446TEST_F(InputSurfacesTest, input_ignores_transparent_region) {
447 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
448 surface->doTransaction([](auto &t, auto &sc) {
449 Region transparentRegion(Rect(0, 0, 10, 10));
450 t.setTransparentRegionHint(sc, transparentRegion);
451 });
452 surface->showAt(100, 100);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100453 surface->assertFocusChange(true);
Vishnu Nairde19f852018-12-18 16:11:53 -0800454 injectTap(101, 101);
455 surface->expectTap(1, 1);
456}
457
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700458// TODO(b/139494112) update tests once we define expected behavior
459// Ensure we still send input to the surface regardless of surface visibility changes due to the
460// first buffer being submitted or alpha changes.
461// Original bug ref: b/120839715
462TEST_F(InputSurfacesTest, input_ignores_buffer_layer_buffer) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800463 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
464 std::unique_ptr<InputSurface> bufferSurface =
465 InputSurface::makeBufferInputSurface(mComposerClient, 100, 100);
466
467 bgSurface->showAt(10, 10);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100468 bgSurface->assertFocusChange(true);
Vishnu Nairde19f852018-12-18 16:11:53 -0800469 bufferSurface->showAt(10, 10);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100470 bgSurface->assertFocusChange(false);
471 bufferSurface->assertFocusChange(true);
Vishnu Nairde19f852018-12-18 16:11:53 -0800472
473 injectTap(11, 11);
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700474 bufferSurface->expectTap(1, 1);
Vishnu Nairde19f852018-12-18 16:11:53 -0800475
476 postBuffer(bufferSurface->mSurfaceControl);
477 injectTap(11, 11);
478 bufferSurface->expectTap(1, 1);
479}
480
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700481TEST_F(InputSurfacesTest, input_ignores_buffer_layer_alpha) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800482 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
483 std::unique_ptr<InputSurface> bufferSurface =
484 InputSurface::makeBufferInputSurface(mComposerClient, 100, 100);
485 postBuffer(bufferSurface->mSurfaceControl);
486
487 bgSurface->showAt(10, 10);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100488 bgSurface->assertFocusChange(true);
Vishnu Nairde19f852018-12-18 16:11:53 -0800489 bufferSurface->showAt(10, 10);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100490 bufferSurface->assertFocusChange(true);
491 bgSurface->assertFocusChange(false);
Vishnu Nairde19f852018-12-18 16:11:53 -0800492
493 injectTap(11, 11);
494 bufferSurface->expectTap(1, 1);
495
496 bufferSurface->doTransaction([](auto &t, auto &sc) { t.setAlpha(sc, 0.0); });
497
498 injectTap(11, 11);
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700499 bufferSurface->expectTap(1, 1);
Vishnu Nairde19f852018-12-18 16:11:53 -0800500}
501
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700502TEST_F(InputSurfacesTest, input_ignores_color_layer_alpha) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800503 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
504 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
505
506 bgSurface->showAt(10, 10);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100507 bgSurface->assertFocusChange(true);
Vishnu Nairde19f852018-12-18 16:11:53 -0800508 fgSurface->showAt(10, 10);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100509 bgSurface->assertFocusChange(false);
510 fgSurface->assertFocusChange(true);
Vishnu Nairde19f852018-12-18 16:11:53 -0800511
512 injectTap(11, 11);
513 fgSurface->expectTap(1, 1);
514
515 fgSurface->doTransaction([](auto &t, auto &sc) { t.setAlpha(sc, 0.0); });
516
517 injectTap(11, 11);
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700518 fgSurface->expectTap(1, 1);
Vishnu Nairde19f852018-12-18 16:11:53 -0800519}
520
521TEST_F(InputSurfacesTest, input_respects_container_layer_visiblity) {
522 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
523 std::unique_ptr<InputSurface> containerSurface =
524 InputSurface::makeContainerInputSurface(mComposerClient, 100, 100);
525
526 bgSurface->showAt(10, 10);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100527 bgSurface->assertFocusChange(true);
Vishnu Nairde19f852018-12-18 16:11:53 -0800528 containerSurface->showAt(10, 10);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100529 bgSurface->assertFocusChange(false);
530 containerSurface->assertFocusChange(true);
Vishnu Nairde19f852018-12-18 16:11:53 -0800531
532 injectTap(11, 11);
533 containerSurface->expectTap(1, 1);
534
535 containerSurface->doTransaction([](auto &t, auto &sc) { t.hide(sc); });
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100536 containerSurface->assertFocusChange(false);
537 bgSurface->assertFocusChange(true);
Vishnu Nairde19f852018-12-18 16:11:53 -0800538
539 injectTap(11, 11);
540 bgSurface->expectTap(1, 1);
541}
chaviwfbe5d9c2018-12-26 12:23:37 -0800542
Arthur Hungd20b2702019-01-14 18:16:16 +0800543TEST_F(InputSurfacesTest, input_respects_outscreen) {
544 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
545 surface->showAt(-1, -1);
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100546 surface->assertFocusChange(true);
Arthur Hungd20b2702019-01-14 18:16:16 +0800547
548 injectTap(0, 0);
549 surface->expectTap(1, 1);
550}
arthurhungb4a0f852020-06-16 11:02:50 +0800551
552TEST_F(InputSurfacesTest, input_ignores_cursor_layer) {
553 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
554 std::unique_ptr<InputSurface> cursorSurface =
555 InputSurface::makeCursorInputSurface(mComposerClient, 10, 10);
556
557 surface->showAt(10, 10);
558 surface->assertFocusChange(true);
559 cursorSurface->showAt(10, 10);
560
561 injectTap(11, 11);
562 surface->expectTap(1, 1);
563}
Robert Carr1c4c5592018-09-24 13:18:43 -0700564}
565}