blob: b4d68772e58c452a5bdf205673013428b05a683d [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.appsecurity.cts;
import android.platform.test.annotations.AppModeFull;
import com.android.compatibility.common.tradefed.build.CompatibilityBuildHelper;
import com.android.tradefed.build.IBuildInfo;
import com.android.tradefed.testtype.DeviceTestCase;
import com.android.tradefed.testtype.IBuildReceiver;
@AppModeFull // TODO: Needs porting to instant
public class OverlayHostTest extends DeviceTestCase implements IBuildReceiver {
private static final String PKG = "com.android.cts.overlayapp";
private static final String APK = "CtsOverlayApp.apk";
private CompatibilityBuildHelper mBuildHelper;
@Override
protected void setUp() throws Exception {
super.setUp();
getDevice().uninstallPackage(PKG);
}
@Override
protected void tearDown() throws Exception {
getDevice().uninstallPackage(PKG);
super.tearDown();
}
@Override
public void setBuild(IBuildInfo buildInfo) {
mBuildHelper = new CompatibilityBuildHelper(buildInfo);
}
public void testInstallingOverlayHasNoEffect() throws Exception {
assertFalse(getDevice().getInstalledPackageNames().contains(PKG));
// Try to install the overlay, but expect an error.
assertNotNull(getDevice().installPackage(mBuildHelper.getTestFile(APK), false, false));
// The install should have failed.
assertFalse(getDevice().getInstalledPackageNames().contains(PKG));
// The package of the installed overlay should not appear in the overlay manager list.
assertFalse(getDevice().executeShellCommand("cmd overlay list").contains(PKG));
}
}