104 lines
3.2 KiB
C++
104 lines
3.2 KiB
C++
/*
|
|
* Copyright 2018 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <binder/Binder.h>
|
|
#include <binder/Parcel.h>
|
|
|
|
#include <input/InputWindow.h>
|
|
#include <input/InputTransport.h>
|
|
|
|
namespace android {
|
|
namespace test {
|
|
|
|
TEST(InputWindowInfo, ParcellingWithoutToken) {
|
|
InputWindowInfo i;
|
|
i.token = nullptr;
|
|
|
|
Parcel p;
|
|
ASSERT_EQ(OK, i.write(p));
|
|
p.setDataPosition(0);
|
|
InputWindowInfo i2 = InputWindowInfo::read(p);
|
|
ASSERT_TRUE(i2.token == nullptr);
|
|
}
|
|
|
|
TEST(InputWindowInfo, Parcelling) {
|
|
sp<IBinder> touchableRegionCropHandle = new BBinder();
|
|
InputWindowInfo i;
|
|
i.token = new BBinder();
|
|
i.id = 1;
|
|
i.name = "Foobar";
|
|
i.layoutParamsFlags = 7;
|
|
i.layoutParamsType = 39;
|
|
i.dispatchingTimeout = 12;
|
|
i.frameLeft = 93;
|
|
i.frameTop = 34;
|
|
i.frameRight = 16;
|
|
i.frameBottom = 19;
|
|
i.surfaceInset = 17;
|
|
i.globalScaleFactor = 0.3;
|
|
i.windowXScale = 0.4;
|
|
i.windowYScale = 0.5;
|
|
i.visible = false;
|
|
i.canReceiveKeys = false;
|
|
i.hasFocus = false;
|
|
i.hasWallpaper = false;
|
|
i.paused = false;
|
|
i.ownerPid = 19;
|
|
i.ownerUid = 24;
|
|
i.inputFeatures = 29;
|
|
i.displayId = 34;
|
|
i.portalToDisplayId = 2;
|
|
i.replaceTouchableRegionWithCrop = true;
|
|
i.touchableRegionCropHandle = touchableRegionCropHandle;
|
|
|
|
Parcel p;
|
|
i.write(p);
|
|
|
|
p.setDataPosition(0);
|
|
InputWindowInfo i2 = InputWindowInfo::read(p);
|
|
ASSERT_EQ(i.token, i2.token);
|
|
ASSERT_EQ(i.id, i2.id);
|
|
ASSERT_EQ(i.name, i2.name);
|
|
ASSERT_EQ(i.layoutParamsFlags, i2.layoutParamsFlags);
|
|
ASSERT_EQ(i.layoutParamsType, i2.layoutParamsType);
|
|
ASSERT_EQ(i.dispatchingTimeout, i2.dispatchingTimeout);
|
|
ASSERT_EQ(i.frameLeft, i2.frameLeft);
|
|
ASSERT_EQ(i.frameTop, i2.frameTop);
|
|
ASSERT_EQ(i.frameRight, i2.frameRight);
|
|
ASSERT_EQ(i.frameBottom, i2.frameBottom);
|
|
ASSERT_EQ(i.surfaceInset, i2.surfaceInset);
|
|
ASSERT_EQ(i.globalScaleFactor, i2.globalScaleFactor);
|
|
ASSERT_EQ(i.windowXScale, i2.windowXScale);
|
|
ASSERT_EQ(i.windowYScale, i2.windowYScale);
|
|
ASSERT_EQ(i.visible, i2.visible);
|
|
ASSERT_EQ(i.canReceiveKeys, i2.canReceiveKeys);
|
|
ASSERT_EQ(i.hasFocus, i2.hasFocus);
|
|
ASSERT_EQ(i.hasWallpaper, i2.hasWallpaper);
|
|
ASSERT_EQ(i.paused, i2.paused);
|
|
ASSERT_EQ(i.ownerPid, i2.ownerPid);
|
|
ASSERT_EQ(i.ownerUid, i2.ownerUid);
|
|
ASSERT_EQ(i.inputFeatures, i2.inputFeatures);
|
|
ASSERT_EQ(i.displayId, i2.displayId);
|
|
ASSERT_EQ(i.portalToDisplayId, i2.portalToDisplayId);
|
|
ASSERT_EQ(i.replaceTouchableRegionWithCrop, i2.replaceTouchableRegionWithCrop);
|
|
ASSERT_EQ(i.touchableRegionCropHandle, i2.touchableRegionCropHandle);
|
|
}
|
|
|
|
} // namespace test
|
|
} // namespace android
|