blob: 1b04e132b3f60956262a44f7b76a026002fcf6e3 [file] [log] [blame]
/*
* Copyright (C) 2020 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.
*/
package android.server.wm;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assume.assumeFalse;
import android.app.Activity;
import android.graphics.Insets;
import android.graphics.Point;
import android.os.Bundle;
import android.platform.test.annotations.Presubmit;
import android.util.Size;
import android.view.Display;
import android.view.DisplayCutout;
import android.view.View;
import android.view.WindowInsets;
import android.view.WindowMetrics;
import androidx.test.rule.ActivityTestRule;
import org.junit.Test;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
/**
* Tests that verify the behavior of {@link WindowMetrics} and {@link android.app.WindowContext} API
*
* Build/Install/Run:
* atest CtsWindowManagerDeviceTestCases:WindowMetricsTests
*/
@Presubmit
public class WindowMetricsTests extends WindowManagerTestBase {
private ActivityTestRule<MetricsActivity> mMetricsActivity =
new ActivityTestRule<>(MetricsActivity.class);
@Test
public void testMetricsSanity() {
// TODO(b/149668895): handle device with cutout.
assumeFalse(hasDisplayCutout());
final MetricsActivity activity = mMetricsActivity.launchActivity(null);
activity.waitForLayout();
assertEquals(activity.mOnLayoutSize, activity.mOnCreateCurrentMetrics.getSize());
assertTrue(activity.mOnCreateMaximumMetrics.getSize().getWidth()
>= activity.mOnCreateCurrentMetrics.getSize().getWidth());
assertTrue(activity.mOnCreateMaximumMetrics.getSize().getHeight()
>= activity.mOnCreateCurrentMetrics.getSize().getHeight());
assertEquals(activity.mOnLayoutInsets.getSystemWindowInsets(),
activity.mOnCreateCurrentMetrics.getWindowInsets().getSystemWindowInsets());
assertEquals(activity.mOnLayoutInsets.getStableInsets(),
activity.mOnCreateCurrentMetrics.getWindowInsets().getStableInsets());
assertEquals(activity.mOnLayoutInsets.getDisplayCutout(),
activity.mOnCreateCurrentMetrics.getWindowInsets().getDisplayCutout());
}
@Test
public void testMetricsMatchesDisplay() {
final MetricsActivity activity = mMetricsActivity.launchActivity(null);
activity.waitForLayout();
final Display display = activity.getDisplay();
// Check window size
final Point displaySize = new Point();
display.getSize(displaySize);
final WindowMetrics windowMetrics = activity.getWindowManager().getCurrentWindowMetrics();
final Size size = getLegacySize(windowMetrics);
assertEquals("Reported display width must match window width",
displaySize.x, size.getWidth());
assertEquals("Reported display height must match window height",
displaySize.y, size.getHeight());
// Check max window size
final Point realDisplaySize = new Point();
display.getRealSize(realDisplaySize);
final WindowMetrics maxWindowMetrics = activity.getWindowManager()
.getMaximumWindowMetrics();
assertEquals("Reported real display width must match max window size",
realDisplaySize.x, maxWindowMetrics.getSize().getWidth());
assertEquals("Reported real display height must match max window size",
realDisplaySize.y, maxWindowMetrics.getSize().getHeight());
}
private static Size getLegacySize(WindowMetrics windowMetrics) {
WindowInsets windowInsets = windowMetrics.getWindowInsets();
final Insets insetsWithCutout = getProperInsetsWithCutout(windowInsets.getStableInsets(),
windowInsets.getDisplayCutout());
final int insetsInWidth = insetsWithCutout.left + insetsWithCutout.right;
final int insetsInHeight = insetsWithCutout.top + insetsWithCutout.bottom;
Size size = windowMetrics.getSize();
return new Size(size.getWidth() - insetsInWidth, size.getHeight() - insetsInHeight);
}
private static Insets getProperInsetsWithCutout(Insets stableInsets, DisplayCutout cutout) {
final Insets excludingStatusBar = Insets.of(stableInsets.left, 0,
stableInsets.right, stableInsets.bottom);
if (cutout == null) {
return excludingStatusBar;
} else {
final Insets unionInsetsWithCutout = Insets.max(excludingStatusBar,
Insets.of(cutout.getSafeInsetLeft(), cutout.getSafeInsetTop(),
cutout.getSafeInsetRight(), cutout.getSafeInsetBottom()));
return unionInsetsWithCutout;
}
}
public static class MetricsActivity extends Activity implements View.OnLayoutChangeListener {
private final CountDownLatch mLayoutLatch = new CountDownLatch(1);
private WindowMetrics mOnCreateMaximumMetrics;
private WindowMetrics mOnCreateCurrentMetrics;
private Size mOnLayoutSize;
private WindowInsets mOnLayoutInsets;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mOnCreateCurrentMetrics = getWindowManager().getCurrentWindowMetrics();
mOnCreateMaximumMetrics = getWindowManager().getMaximumWindowMetrics();
getWindow().getDecorView().addOnLayoutChangeListener(this);
}
@Override
public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft,
int oldTop, int oldRight, int oldBottom) {
mOnLayoutSize = new Size(getWindow().getDecorView().getWidth(),
getWindow().getDecorView().getHeight());
mOnLayoutInsets = getWindow().getDecorView().getRootWindowInsets();
mLayoutLatch.countDown();
}
void waitForLayout() {
try {
assertTrue("timed out waiting for activity to layout",
mLayoutLatch.await(4, TimeUnit.SECONDS));
} catch (InterruptedException e) {
throw new AssertionError(e);
}
}
}
}