aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/tradefed/targetprep/InstallBuildEnvApkSetup.java
blob: b7608522c858062389d3110ec4c7162a3b212644 (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
/*
 * Copyright (C) 2011 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.tradefed.targetprep;

import com.android.tradefed.build.IBuildInfo;
import com.android.tradefed.config.Option;
import com.android.tradefed.config.Option.Importance;
import com.android.tradefed.config.OptionClass;
import com.android.tradefed.device.DeviceNotAvailableException;
import com.android.tradefed.device.ITestDevice;
import com.android.tradefed.log.LogUtil.CLog;
import com.android.tradefed.util.FileUtil;

import java.io.File;
import java.util.ArrayList;
import java.util.Collection;

/**
 * A {@link ITargetPreparer} that installs one or more test apks from an Android platform build env.
 * <p/>
 * Uses the <code>ANDROID_PRODUCT_OUT</code> env variable to determine location for build apks.
 */
@OptionClass(alias = "install-apk-from-env")
public class InstallBuildEnvApkSetup implements ITargetPreparer {

    @Option(name = "apk-name", description =
        "the file name of the apk to install. Can be repeated.",
        importance = Importance.IF_UNSET)
    private Collection<String> mApkNames = new ArrayList<String>();

    /**
     * {@inheritDoc}
     */
    @Override
    public void setUp(ITestDevice device, IBuildInfo buildInfo) throws TargetSetupError,
            BuildError, DeviceNotAvailableException {
        File testAppDir = getDataAppDirFromBuildEnv();
        for (String apkName : mApkNames) {
            File apk = new File(testAppDir, apkName);
            CLog.i("Installing %s on %s", apk.getName(), device.getSerialNumber());
            String result = device.installPackage(apk, true);
            if (result != null) {
                throw new TargetSetupError(String.format(
                        "Failed to install %s on device %s. Reason: %s", apk.getAbsolutePath(),
                        device.getSerialNumber(), result));
            }
        }
    }

    private File getDataAppDirFromBuildEnv() throws TargetSetupError {
        String buildRoot = System.getenv("ANDROID_PRODUCT_OUT");
        if (buildRoot == null) {
            throw new TargetSetupError(
                    "ANDROID_PRODUCT_OUT is not set. Are you in Android build env?");
        }
        File testAppDir = new File(FileUtil.getPath(buildRoot, "data", "app"));
        if (!testAppDir.exists()) {
            throw new TargetSetupError(
                String.format("Could not find test app dir %s", testAppDir.getAbsolutePath()));

        }
        return testAppDir;
    }
}