summaryrefslogtreecommitdiff
path: root/tests/PhotoPicker/src/android/photopicker/cts/PhotoPickerBaseTest.java
blob: 5d7f9cd6e435196fab1b425bc464c424cc49d851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
 * Copyright (C) 2021 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.photopicker.cts;

import static android.photopicker.cts.PhotoPickerCloudUtils.disableDeviceConfigSync;

import android.app.Instrumentation;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;

import androidx.annotation.Nullable;
import androidx.test.InstrumentationRegistry;
import androidx.test.uiautomator.UiDevice;

import org.junit.Assume;
import org.junit.Before;

import java.io.IOException;

/**
 * Photo Picker Base class for Photo Picker tests. This includes common setup methods
 * required for all Photo Picker tests.
 */
public class PhotoPickerBaseTest {
    private static final String TAG = "PhotoPickerBaseTest";
    public static int REQUEST_CODE = 42;
    protected static final String INVALID_CLOUD_PROVIDER = "Invalid";
    private static final Instrumentation sInstrumentation =
            InstrumentationRegistry.getInstrumentation();
    public static final String sTargetPackageName =
            sInstrumentation.getTargetContext().getPackageName();
    protected static final UiDevice sDevice = UiDevice.getInstance(sInstrumentation);

    protected GetResultActivity mActivity;
    protected Context mContext;

    // Do not use org.junit.BeforeClass (b/260380362) or
    // com.android.bedstead.harrier.annotations.BeforeClass (b/246986339#comment18)
    // when using DeviceState. Some subclasses of PhotoPickerBaseTest may use DeviceState so avoid
    // adding either @BeforeClass methods here.

    @Before
    public void setUp() throws Exception {
        Assume.assumeTrue(isHardwareSupported());
        disableDeviceConfigSync();

        final String setSyncDelayCommand =
                "device_config put storage pickerdb.default_sync_delay_ms 0";
        sDevice.executeShellCommand(setSyncDelayCommand);

        mContext = sInstrumentation.getContext();
        final Intent intent = new Intent(mContext, GetResultActivity.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);

        // Wake up the device and dismiss the keyguard before the test starts
        sDevice.executeShellCommand("input keyevent KEYCODE_WAKEUP");
        sDevice.executeShellCommand("wm dismiss-keyguard");

        mActivity = (GetResultActivity) sInstrumentation.startActivitySync(intent);
        // Wait for the UI Thread to become idle.
        sInstrumentation.waitForIdleSync();
        mActivity.clearResult();
        sDevice.waitForIdle();
    }

    static boolean isHardwareSupported() {
        // These UI tests are not optimised for Watches, TVs, Auto;
        // IoT devices do not have a UI to run these UI tests
        PackageManager pm = sInstrumentation.getContext().getPackageManager();
        return !pm.hasSystemFeature(pm.FEATURE_EMBEDDED)
                && !pm.hasSystemFeature(pm.FEATURE_WATCH)
                && !pm.hasSystemFeature(pm.FEATURE_LEANBACK)
                && !pm.hasSystemFeature(pm.FEATURE_AUTOMOTIVE);
    }

    protected static void setCloudProvider(@Nullable String authority) throws Exception {
        PhotoPickerCloudUtils.setCloudProvider(sDevice, authority);
    }

    protected static String getCurrentCloudProvider() throws IOException {
        return PhotoPickerCloudUtils.getCurrentCloudProvider(sDevice);
    }
}