blob: 0d34c46989d3fd6f3966decb3193fbfe584019ae [file] [log] [blame]
/*
* Copyright (C) 2019 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.tradefed.testtype.DeviceJUnit4ClassRunner;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
@RunWith(DeviceJUnit4ClassRunner.class)
@AppModeFull
public final class UseEmbeddedDexTest extends BaseAppSecurityTest {
private static final String PACKAGE_NAME = "com.android.cts.useembeddeddex";
private static final String APK_CANONICAL = "CtsUseEmbeddedDexApp_Canonical.apk";
private static final String APK_DEX_COMPRESSED = "CtsUseEmbeddedDexApp_DexCompressed.apk";
private static final String APK_SPLIT_CANONICAL =
"CtsUseEmbeddedDexAppSplit_Canonical.apk";
private static final String APK_SPLIT_COMPRESSED_DEX =
"CtsUseEmbeddedDexAppSplit_CompressedDex.apk";
@After
public void tearDown() throws Exception {
getDevice().uninstallPackage(PACKAGE_NAME);
}
@Test
public void testCanonicalInstall() throws Exception {
new InstallMultiple().addFile(APK_CANONICAL).run();
}
@Test
public void testIsolatedService() throws Exception {
new InstallMultiple().addFile(APK_CANONICAL).run();
getDevice().executeShellCommand("cmd package compile -f -m speed " + PACKAGE_NAME);
runDeviceTests(PACKAGE_NAME, PACKAGE_NAME + ".EmbeddedDexTest", "testIsolatedService");
}
@Test
public void testBadInstallWithCompressedDex() throws Exception {
new InstallMultiple().addFile(APK_DEX_COMPRESSED).runExpectingFailure();
}
@Test
public void testCanonicalInstallWithSplit() throws Exception {
new InstallMultiple().addFile(APK_CANONICAL).addFile(APK_SPLIT_CANONICAL).run();
}
@Test
public void testBadInstallWithDexCompressedSplit() throws Exception {
new InstallMultiple().addFile(APK_CANONICAL).addFile(APK_SPLIT_COMPRESSED_DEX)
.runExpectingFailure();
}
@Test
public void testCanonicalInstallWithBaseThenSplit() throws Exception {
new InstallMultiple().addFile(APK_CANONICAL).run();
new InstallMultiple().inheritFrom(PACKAGE_NAME).addFile(APK_SPLIT_CANONICAL).run();
}
@Test
public void testBadInstallWithBaseThenDexCompressedSplit() throws Exception {
new InstallMultiple().addFile(APK_CANONICAL).run();
new InstallMultiple().inheritFrom(PACKAGE_NAME).addFile(APK_SPLIT_COMPRESSED_DEX)
.runExpectingFailure();
}
}