Files
Lawnchair/tests/src/com/android/launcher3/deviceemulator/models/DeviceEmulationData.java
T
Sebastian Franco 00aff95ac0 Give the tests the ability to emulate other devices screens
This code contains utility clases that can change the display
of a device and make it look like another device.
The function DisplayEmulator#emulate receives a DeviceEmulationData
a certain grid to emulate and a callback, everyting that happens
inside of the callback will happen when the device is being emulated
and can be used by other tests.

Example test:
package com.android.launcher3.deviceemulator;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import androidx.test.filters.MediumTest;
import com.android.launcher3.deviceemulator.models.DeviceEmulationData;
import com.android.launcher3.ui.AbstractLauncherUiTest;
import org.junit.Test;
import org.junit.runner.RunWith;
import java.util.concurrent.TimeUnit;

@MediumTest
@RunWith(AndroidJUnit4.class)
public class TestTest extends AbstractLauncherUiTest {
    @Test
    public void testEmulation() throws Exception {
        String deviceCode = "pixel6pro";
        DeviceEmulationData deviceData = DeviceEmulationData.getDevice(deviceCode);
        String grid = "normal";
        DisplayEmulator displayEmulator = new DisplayEmulator(mTargetContext);

        displayEmulator.emulate(deviceData, grid, () ->{
            TimeUnit.SECONDS.sleep(10);
            return true;
        });
    }
}

Test: You could use the test above to make your device look like a
Pixel6 pro for 10 secons.
Fix: 229028257

Change-Id: Icd79be405a2e14dda0bc5f555b0e46149e16f912
2022-04-25 11:57:58 -05:00

155 lines
5.8 KiB
Java

/*
* Copyright (C) 2022 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 com.android.launcher3.deviceemulator.models;
import static androidx.test.platform.app.InstrumentationRegistry.getInstrumentation;
import static com.android.launcher3.ResourceUtils.NAVBAR_HEIGHT;
import static com.android.launcher3.ResourceUtils.NAVBAR_HEIGHT_LANDSCAPE;
import static com.android.launcher3.ResourceUtils.NAVBAR_LANDSCAPE_LEFT_RIGHT_SIZE;
import static com.android.launcher3.ResourceUtils.getDimenByName;
import android.content.Context;
import android.content.res.Resources;
import android.graphics.Rect;
import android.os.Build;
import android.util.ArrayMap;
import com.android.launcher3.InvariantDeviceProfile;
import com.android.launcher3.util.DisplayController;
import com.android.launcher3.util.IOUtils;
import com.android.launcher3.util.IntArray;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.InputStream;
import java.util.Arrays;
import java.util.Map;
public class DeviceEmulationData {
public final int width;
public final int height;
public final int density;
public final String name;
public final String[] grids;
public final Rect cutout;
public final Map<String, Integer> resourceOverrides;
private static final String[] EMULATED_SYSTEM_RESOURCES = new String[]{
NAVBAR_HEIGHT,
NAVBAR_HEIGHT_LANDSCAPE,
NAVBAR_LANDSCAPE_LEFT_RIGHT_SIZE,
"status_bar_height",
};
public DeviceEmulationData(int width, int height, int density, Rect cutout, String name,
String[] grid,
Map<String, Integer> resourceOverrides) {
this.width = width;
this.height = height;
this.density = density;
this.name = name;
this.grids = grid;
this.cutout = cutout;
this.resourceOverrides = resourceOverrides;
}
public static DeviceEmulationData deviceFromJSON(JSONObject json) throws JSONException {
int width = json.getInt("width");
int height = json.getInt("height");
int density = json.getInt("density");
String name = json.getString("name");
JSONArray gridArray = json.getJSONArray("grids");
String[] grids = new String[gridArray.length()];
for (int i = 0, count = grids.length; i < count; i++) {
grids[i] = gridArray.getString(i);
}
IntArray deviceCutout = IntArray.fromConcatString(json.getString("cutout"));
Rect cutout = new Rect(deviceCutout.get(0), deviceCutout.get(1), deviceCutout.get(2),
deviceCutout.get(3));
JSONObject resourceOverridesJson = json.getJSONObject("resourceOverrides");
Map<String, Integer> resourceOverrides = new ArrayMap<>();
for (String key : resourceOverridesJson.keySet()) {
resourceOverrides.put(key, resourceOverridesJson.getInt(key));
}
return new DeviceEmulationData(width, height, density, cutout, name, grids,
resourceOverrides);
}
@Override
public String toString() {
JSONObject json = new JSONObject();
try {
json.put("width", width);
json.put("height", height);
json.put("density", density);
json.put("name", name);
json.put("cutout", IntArray.wrap(
cutout.left, cutout.top, cutout.right, cutout.bottom).toConcatString());
JSONArray gridArray = new JSONArray();
Arrays.stream(grids).forEach(gridArray::put);
json.put("grids", gridArray);
JSONObject resourceOverrides = new JSONObject();
for (Map.Entry<String, Integer> e : this.resourceOverrides.entrySet()) {
resourceOverrides.put(e.getKey(), e.getValue());
}
json.put("resourceOverrides", resourceOverrides);
} catch (Exception e) {
e.printStackTrace();
}
return json.toString();
}
public static DeviceEmulationData getCurrentDeviceData(Context context) {
DisplayController.Info info = DisplayController.INSTANCE.get(context).getInfo();
String[] grids = InvariantDeviceProfile.INSTANCE.get(context)
.parseAllGridOptions(context).stream()
.map(go -> go.name).toArray(String[]::new);
String code = Build.MODEL.replaceAll("\\s", "").toLowerCase();
Map<String, Integer> resourceOverrides = new ArrayMap<>();
for (String s : EMULATED_SYSTEM_RESOURCES) {
resourceOverrides.put(s, getDimenByName(s, context.getResources(), 0));
}
return new DeviceEmulationData(info.currentSize.x, info.currentSize.y,
info.densityDpi, info.cutout, code, grids, resourceOverrides);
}
public static DeviceEmulationData getDevice(String deviceCode) throws Exception {
return DeviceEmulationData.deviceFromJSON(readJSON().getJSONObject(deviceCode));
}
private static JSONObject readJSON() throws Exception {
Context context = getInstrumentation().getContext();
Resources myRes = context.getResources();
int resId = myRes.getIdentifier("devices", "raw", context.getPackageName());
try (InputStream is = myRes.openRawResource(resId)) {
return new JSONObject(new String(IOUtils.toByteArray(is)));
}
}
}