blob: ac795830f3d96f3d57db41897f18e9c316647030 [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 Tan62b523e2020-09-21 16:07:29 -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
Garfield Tan62b523e2020-09-21 16:07:29 -0700156 ~InputSurface() { mInputFlinger->removeInputChannel(mClientChannel->getConnectionToken()); }
Robert Carr1c4c5592018-09-24 13:18:43 -0700157
158 void doTransaction(std::function<void(SurfaceComposerClient::Transaction&,
159 const sp<SurfaceControl>&)> transactionBody) {
160 SurfaceComposerClient::Transaction t;
161 transactionBody(t, mSurfaceControl);
162 t.apply(true);
163 }
164
165 void showAt(int x, int y) {
166 SurfaceComposerClient::Transaction t;
167 t.show(mSurfaceControl);
168 t.setInputWindowInfo(mSurfaceControl, mInputInfo);
169 t.setLayer(mSurfaceControl, LAYER_BASE);
170 t.setPosition(mSurfaceControl, x, y);
171 t.setCrop_legacy(mSurfaceControl, Rect(0, 0, 100, 100));
172 t.setAlpha(mSurfaceControl, 1);
173 t.apply(true);
174 }
175
Vishnu Nair958da932020-08-21 17:12:37 -0700176 void requestFocus() {
177 SurfaceComposerClient::Transaction t;
178 t.setFocusedWindow(mInputInfo.token, nullptr, systemTime(SYSTEM_TIME_MONOTONIC),
179 0 /* displayId */);
180 t.apply(true);
181 }
182
Robert Carr1c4c5592018-09-24 13:18:43 -0700183private:
184 void waitForEventAvailable() {
185 struct pollfd fd;
186
187 fd.fd = mClientChannel->getFd();
188 fd.events = POLLIN;
189 poll(&fd, 1, 3000);
190 }
191
192 void populateInputInfo(int width, int height) {
Garfield Tan62b523e2020-09-21 16:07:29 -0700193 mInputInfo.token = mClientChannel->getConnectionToken();
Robert Carr1c4c5592018-09-24 13:18:43 -0700194 mInputInfo.name = "Test info";
Michael Wright44753b12020-07-08 13:48:11 +0100195 mInputInfo.flags = InputWindowInfo::Flag::NOT_TOUCH_MODAL;
196 mInputInfo.type = InputWindowInfo::Type::BASE_APPLICATION;
Siarhei Vishniakouc1ae5562020-06-30 14:22:57 -0500197 mInputInfo.dispatchingTimeout = 5s;
Robert Carre07e1032018-11-26 12:55:53 -0800198 mInputInfo.globalScaleFactor = 1.0;
Vishnu Nair47074b82020-08-14 11:54:47 -0700199 mInputInfo.focusable = true;
Robert Carr1c4c5592018-09-24 13:18:43 -0700200 mInputInfo.hasWallpaper = false;
201 mInputInfo.paused = false;
202
203 mInputInfo.touchableRegion.orSelf(Rect(0, 0, width, height));
204
205 // TODO: Fill in from SF?
206 mInputInfo.ownerPid = 11111;
207 mInputInfo.ownerUid = 11111;
Robert Carr1c4c5592018-09-24 13:18:43 -0700208 mInputInfo.displayId = 0;
Robert Carr740167f2018-10-11 19:03:41 -0700209
210 InputApplicationInfo aInfo;
211 aInfo.token = new BBinder();
212 aInfo.name = "Test app info";
Siarhei Vishniakou70622952020-07-30 11:17:23 -0500213 aInfo.dispatchingTimeoutMillis =
214 std::chrono::duration_cast<std::chrono::milliseconds>(DISPATCHING_TIMEOUT).count();
Robert Carr740167f2018-10-11 19:03:41 -0700215
216 mInputInfo.applicationInfo = aInfo;
Robert Carr1c4c5592018-09-24 13:18:43 -0700217 }
218public:
219 sp<SurfaceControl> mSurfaceControl;
Siarhei Vishniakouce5ab082020-07-09 17:03:21 -0500220 std::shared_ptr<InputChannel> mClientChannel;
Robert Carr1c4c5592018-09-24 13:18:43 -0700221 sp<IInputFlinger> mInputFlinger;
222
223 InputWindowInfo mInputInfo;
224
225 PreallocatedInputEventFactory mInputEventFactory;
226 InputConsumer* mInputConsumer;
227};
228
229class InputSurfacesTest : public ::testing::Test {
230public:
231 InputSurfacesTest() {
232 ProcessState::self()->startThreadPool();
233 }
234
235 void SetUp() {
236 mComposerClient = new SurfaceComposerClient;
237 ASSERT_EQ(NO_ERROR, mComposerClient->initCheck());
Vishnu Nairde19f852018-12-18 16:11:53 -0800238
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800239 const auto display = mComposerClient->getInternalDisplayToken();
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100240 ASSERT_NE(display, nullptr);
Dominik Laskowskidcb38bb2019-01-25 02:35:50 -0800241
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -0800242 DisplayConfig config;
243 ASSERT_EQ(NO_ERROR, mComposerClient->getActiveDisplayConfig(display, &config));
Vishnu Nairde19f852018-12-18 16:11:53 -0800244
245 // After a new buffer is queued, SurfaceFlinger is notified and will
246 // latch the new buffer on next vsync. Let's heuristically wait for 3
247 // vsyncs.
Dominik Laskowski3cb3d4e2019-11-21 11:14:45 -0800248 mBufferPostDelay = static_cast<int32_t>(1e6 / config.refreshRate) * 3;
Robert Carr1c4c5592018-09-24 13:18:43 -0700249 }
250
251 void TearDown() {
252 mComposerClient->dispose();
253 }
254
255 std::unique_ptr<InputSurface> makeSurface(int width, int height) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800256 return InputSurface::makeColorInputSurface(mComposerClient, width, height);
257 }
258
259 void postBuffer(const sp<SurfaceControl> &layer) {
260 // wait for previous transactions (such as setSize) to complete
261 Transaction().apply(true);
262 ANativeWindow_Buffer buffer = {};
263 EXPECT_EQ(NO_ERROR, layer->getSurface()->lock(&buffer, nullptr));
264 ASSERT_EQ(NO_ERROR, layer->getSurface()->unlockAndPost());
265 // Request an empty transaction to get applied synchronously to ensure the buffer is
266 // latched.
267 Transaction().apply(true);
268 usleep(mBufferPostDelay);
Robert Carr1c4c5592018-09-24 13:18:43 -0700269 }
270
271 sp<SurfaceComposerClient> mComposerClient;
Vishnu Nairde19f852018-12-18 16:11:53 -0800272 int32_t mBufferPostDelay;
Robert Carr1c4c5592018-09-24 13:18:43 -0700273};
274
275void injectTap(int x, int y) {
276 char *buf1, *buf2;
277 asprintf(&buf1, "%d", x);
278 asprintf(&buf2, "%d", y);
279 if (fork() == 0) {
280 execlp("input", "input", "tap", buf1, buf2, NULL);
281 }
282}
283
284TEST_F(InputSurfacesTest, can_receive_input) {
285 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
286 surface->showAt(100, 100);
287
288 injectTap(101, 101);
289
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100290 EXPECT_NE(surface->consumeEvent(), nullptr);
Robert Carr1c4c5592018-09-24 13:18:43 -0700291}
292
Siarhei Vishniakouf1035d42019-09-20 16:32:01 +0100293/**
294 * Set up two surfaces side-by-side. Tap each surface.
295 * Next, swap the positions of the two surfaces. Inject tap into the two
296 * original locations. Ensure that the tap is received by the surfaces in the
297 * reverse order.
298 */
Robert Carr1c4c5592018-09-24 13:18:43 -0700299TEST_F(InputSurfacesTest, input_respects_positioning) {
300 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
301 surface->showAt(100, 100);
302
303 std::unique_ptr<InputSurface> surface2 = makeSurface(100, 100);
304 surface2->showAt(200, 200);
305
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);
331 surface2->showAt(10, 10);
332
333 surface->doTransaction([](auto &t, auto &sc) {
334 t.setLayer(sc, LAYER_BASE + 1);
335 });
336
337 injectTap(11, 11);
338 surface->expectTap(1, 1);
339
340 surface2->doTransaction([](auto &t, auto &sc) {
341 t.setLayer(sc, LAYER_BASE + 1);
342 });
343
344 injectTap(11, 11);
345 surface2->expectTap(1, 1);
346
347 surface2->doTransaction([](auto &t, auto &sc) {
348 t.hide(sc);
349 });
350
351 injectTap(11, 11);
352 surface->expectTap(1, 1);
353}
354
Vishnu Nairde19f852018-12-18 16:11:53 -0800355// Surface Insets are set to offset the client content and draw a border around the client surface
356// (such as shadows in dialogs). Inputs sent to the client are offset such that 0,0 is the start
357// of the client content.
358TEST_F(InputSurfacesTest, input_respects_surface_insets) {
359 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
360 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
361 bgSurface->showAt(100, 100);
362
363 fgSurface->mInputInfo.surfaceInset = 5;
364 fgSurface->showAt(100, 100);
365
366 injectTap(106, 106);
367 fgSurface->expectTap(1, 1);
368
369 injectTap(101, 101);
370 bgSurface->expectTap(1, 1);
371}
372
373// Ensure a surface whose insets are cropped, handles the touch offset correctly. ref:b/120413463
374TEST_F(InputSurfacesTest, input_respects_cropped_surface_insets) {
375 std::unique_ptr<InputSurface> parentSurface = makeSurface(100, 100);
376 std::unique_ptr<InputSurface> childSurface = makeSurface(100, 100);
377 parentSurface->showAt(100, 100);
378
379 childSurface->mInputInfo.surfaceInset = 10;
380 childSurface->showAt(100, 100);
381
382 childSurface->doTransaction([&](auto &t, auto &sc) {
383 t.setPosition(sc, -5, -5);
384 t.reparent(sc, parentSurface->mSurfaceControl->getHandle());
385 });
386
387 injectTap(106, 106);
388 childSurface->expectTap(1, 1);
389
390 injectTap(101, 101);
391 parentSurface->expectTap(1, 1);
392}
393
Arthur Hung118b1142019-05-08 21:25:59 +0800394// Ensure a surface whose insets are scaled, handles the touch offset correctly.
395TEST_F(InputSurfacesTest, input_respects_scaled_surface_insets) {
396 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
397 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
398 bgSurface->showAt(100, 100);
399
400 fgSurface->mInputInfo.surfaceInset = 5;
401 fgSurface->showAt(100, 100);
402
403 fgSurface->doTransaction([&](auto &t, auto &sc) { t.setMatrix(sc, 2.0, 0, 0, 4.0); });
404
405 // expect = touch / scale - inset
406 injectTap(112, 124);
407 fgSurface->expectTap(1, 1);
408
409 injectTap(101, 101);
410 bgSurface->expectTap(1, 1);
411}
412
Ady Abraham282f1d72019-07-24 18:05:56 -0700413TEST_F(InputSurfacesTest, input_respects_scaled_surface_insets_overflow) {
414 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
415 // In case we pass the very big inset without any checking.
416 fgSurface->mInputInfo.surfaceInset = INT32_MAX;
417 fgSurface->showAt(100, 100);
418
419 fgSurface->doTransaction([&](auto &t, auto &sc) { t.setMatrix(sc, 2.0, 0, 0, 2.0); });
420
421 // expect no crash for overflow, and inset size to be clamped to surface size
422 injectTap(202, 202);
423 fgSurface->expectTap(1, 1);
424}
425
Vishnu Nairde19f852018-12-18 16:11:53 -0800426// Ensure we ignore transparent region when getting screen bounds when positioning input frame.
427TEST_F(InputSurfacesTest, input_ignores_transparent_region) {
428 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
429 surface->doTransaction([](auto &t, auto &sc) {
430 Region transparentRegion(Rect(0, 0, 10, 10));
431 t.setTransparentRegionHint(sc, transparentRegion);
432 });
433 surface->showAt(100, 100);
434 injectTap(101, 101);
435 surface->expectTap(1, 1);
436}
437
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700438// TODO(b/139494112) update tests once we define expected behavior
439// Ensure we still send input to the surface regardless of surface visibility changes due to the
440// first buffer being submitted or alpha changes.
441// Original bug ref: b/120839715
442TEST_F(InputSurfacesTest, input_ignores_buffer_layer_buffer) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800443 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
444 std::unique_ptr<InputSurface> bufferSurface =
445 InputSurface::makeBufferInputSurface(mComposerClient, 100, 100);
446
447 bgSurface->showAt(10, 10);
448 bufferSurface->showAt(10, 10);
449
450 injectTap(11, 11);
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700451 bufferSurface->expectTap(1, 1);
Vishnu Nairde19f852018-12-18 16:11:53 -0800452
453 postBuffer(bufferSurface->mSurfaceControl);
454 injectTap(11, 11);
455 bufferSurface->expectTap(1, 1);
456}
457
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700458TEST_F(InputSurfacesTest, input_ignores_buffer_layer_alpha) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800459 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
460 std::unique_ptr<InputSurface> bufferSurface =
461 InputSurface::makeBufferInputSurface(mComposerClient, 100, 100);
462 postBuffer(bufferSurface->mSurfaceControl);
463
464 bgSurface->showAt(10, 10);
465 bufferSurface->showAt(10, 10);
466
467 injectTap(11, 11);
468 bufferSurface->expectTap(1, 1);
469
470 bufferSurface->doTransaction([](auto &t, auto &sc) { t.setAlpha(sc, 0.0); });
471
472 injectTap(11, 11);
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700473 bufferSurface->expectTap(1, 1);
Vishnu Nairde19f852018-12-18 16:11:53 -0800474}
475
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700476TEST_F(InputSurfacesTest, input_ignores_color_layer_alpha) {
Vishnu Nairde19f852018-12-18 16:11:53 -0800477 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
478 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100);
479
480 bgSurface->showAt(10, 10);
481 fgSurface->showAt(10, 10);
482
483 injectTap(11, 11);
484 fgSurface->expectTap(1, 1);
485
486 fgSurface->doTransaction([](auto &t, auto &sc) { t.setAlpha(sc, 0.0); });
487
488 injectTap(11, 11);
Vishnu Nairf8678ba2019-10-11 18:11:26 -0700489 fgSurface->expectTap(1, 1);
Vishnu Nairde19f852018-12-18 16:11:53 -0800490}
491
492TEST_F(InputSurfacesTest, input_respects_container_layer_visiblity) {
493 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100);
494 std::unique_ptr<InputSurface> containerSurface =
495 InputSurface::makeContainerInputSurface(mComposerClient, 100, 100);
496
497 bgSurface->showAt(10, 10);
498 containerSurface->showAt(10, 10);
499
500 injectTap(11, 11);
501 containerSurface->expectTap(1, 1);
502
503 containerSurface->doTransaction([](auto &t, auto &sc) { t.hide(sc); });
504
505 injectTap(11, 11);
506 bgSurface->expectTap(1, 1);
507}
chaviwfbe5d9c2018-12-26 12:23:37 -0800508
Arthur Hungd20b2702019-01-14 18:16:16 +0800509TEST_F(InputSurfacesTest, input_respects_outscreen) {
510 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
511 surface->showAt(-1, -1);
512
513 injectTap(0, 0);
514 surface->expectTap(1, 1);
515}
arthurhungb4a0f852020-06-16 11:02:50 +0800516
517TEST_F(InputSurfacesTest, input_ignores_cursor_layer) {
518 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
519 std::unique_ptr<InputSurface> cursorSurface =
520 InputSurface::makeCursorInputSurface(mComposerClient, 10, 10);
521
522 surface->showAt(10, 10);
arthurhungb4a0f852020-06-16 11:02:50 +0800523 cursorSurface->showAt(10, 10);
524
525 injectTap(11, 11);
526 surface->expectTap(1, 1);
527}
Vishnu Nair958da932020-08-21 17:12:37 -0700528
529TEST_F(InputSurfacesTest, can_be_focused) {
530 std::unique_ptr<InputSurface> surface = makeSurface(100, 100);
531 surface->showAt(100, 100);
532 surface->requestFocus();
533
534 surface->assertFocusChange(true);
Robert Carr1c4c5592018-09-24 13:18:43 -0700535}
Vishnu Nair958da932020-08-21 17:12:37 -0700536} // namespace android::test