blob: b32c2cb64483d5e967da3b532760c87cd4c98ac8 [file] [log] [blame]
/*
* Copyright (C) 2017 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.am;
import android.app.Activity;
import android.content.Context;
import android.graphics.Point;
import android.view.Display;
import android.view.WindowManager;
import androidx.test.InstrumentationRegistry;
import androidx.test.rule.ActivityTestRule;
class AspectRatioTestsBase {
// The delta allowed when comparing two floats for equality. We consider them equal if they are
// within two significant digits of each other.
private static final float FLOAT_EQUALITY_DELTA = .01f;
interface AssertAspectRatioCallback {
void assertAspectRatio(float actual);
}
void runAspectRatioTest(final ActivityTestRule activityRule,
final AssertAspectRatioCallback callback) {
final Activity activity = launchActivity(activityRule);
runTest(activity, callback);
finishActivity(activityRule);
// TODO(b/35810513): All this rotation stuff doesn't really work yet. Need to make sure
// context is updated correctly here. Also, what does it mean to be holding a reference to
// this activity if changing the orientation will cause a relaunch?
// activity.setRequestedOrientation(SCREEN_ORIENTATION_LANDSCAPE);
// waitForIdle();
// callback.assertAspectRatio(getAspectRatio(activity));
//
// activity.setRequestedOrientation(SCREEN_ORIENTATION_PORTRAIT);
// waitForIdle();
// callback.assertAspectRatio(getAspectRatio(activity));
}
protected void runTest(Activity activity, AssertAspectRatioCallback callback) {
callback.assertAspectRatio(getAspectRatio(activity));
}
static float getAspectRatio(Context context) {
final Display display =
context.getSystemService(WindowManager.class).getDefaultDisplay();
final Point size = new Point();
display.getSize(size);
final float longSide = Math.max(size.x, size.y);
final float shortSide = Math.min(size.x, size.y);
return longSide / shortSide;
}
protected Activity launchActivity(final ActivityTestRule activityRule) {
final Activity activity = activityRule.launchActivity(null);
waitForIdle();
return activity;
}
private void finishActivity(ActivityTestRule activityRule) {
final Activity activity = activityRule.getActivity();
if (activity != null) {
activity.finish();
}
}
private static void waitForIdle() {
InstrumentationRegistry.getInstrumentation().waitForIdleSync();
}
static boolean aspectRatioEqual(float a, float b) {
return Math.abs(a - b) < FLOAT_EQUALITY_DELTA;
}
static boolean aspectRatioLessThanEqual(float a, float b) {
return a < b || aspectRatioEqual(a, b);
}
}