use of com.android.tools.build.bundletool.testing.BundleModuleBuilder in project bundletool by google.
the class ModuleSplitterTest method targetsPreLOnlyInManifest_throws.
@Test
public void targetsPreLOnlyInManifest_throws() throws Exception {
int preL = 20;
BundleModule bundleModule = new BundleModuleBuilder("testModule").setManifest(androidManifest("com.test.app", withMaxSdkVersion(preL))).build();
CommandExecutionException exception = assertThrows(CommandExecutionException.class, () -> ModuleSplitter.createForTest(bundleModule, BUNDLETOOL_VERSION).splitModule());
assertThat(exception).hasMessageThat().contains("does not target devices on Android L or above");
}
use of com.android.tools.build.bundletool.testing.BundleModuleBuilder in project bundletool by google.
the class ModuleSplitterTest method instantManifestChanges_updatesMinSdkVersion.
@Test
public void instantManifestChanges_updatesMinSdkVersion() throws Exception {
BundleModule bundleModule = new BundleModuleBuilder("testModule").setManifest(androidManifest("com.test.app", withMinSdkVersion(19), withInstant(true))).build();
ImmutableList<ModuleSplit> moduleSplits = ModuleSplitter.createNoStamp(bundleModule, BUNDLETOOL_VERSION, APP_BUNDLE, ApkGenerationConfiguration.builder().setForInstantAppVariants(true).build(), lPlusVariantTargeting(), ImmutableSet.of("testModule")).splitModule();
assertThat(moduleSplits).hasSize(1);
ModuleSplit masterSplit = moduleSplits.get(0);
assertThat(masterSplit.getVariantTargeting()).isEqualTo(lPlusVariantTargeting());
assertThat(masterSplit.isMasterSplit()).isTrue();
assertThat(masterSplit.getApkTargeting()).isEqualTo(apkMinSdkTargeting(21));
assertThat(masterSplit.getSplitType()).isEqualTo(SplitType.INSTANT);
assertThat(masterSplit.getAndroidManifest().getTargetSandboxVersion()).hasValue(2);
assertThat(masterSplit.getAndroidManifest().getMinSdkVersion()).hasValue(21);
}
use of com.android.tools.build.bundletool.testing.BundleModuleBuilder in project bundletool by google.
the class ModuleSplitterTest method instantManifestChanges_keepsMinSdkVersion.
@Test
public void instantManifestChanges_keepsMinSdkVersion() throws Exception {
BundleModule bundleModule = new BundleModuleBuilder("testModule").setManifest(androidManifest("com.test.app", withMinSdkVersion(22), withInstant(true))).build();
ImmutableList<ModuleSplit> moduleSplits = ModuleSplitter.createNoStamp(bundleModule, BUNDLETOOL_VERSION, APP_BUNDLE, ApkGenerationConfiguration.builder().setForInstantAppVariants(true).build(), lPlusVariantTargeting(), ImmutableSet.of("testModule")).splitModule();
assertThat(moduleSplits).hasSize(1);
ModuleSplit masterSplit = moduleSplits.get(0);
assertThat(masterSplit.getVariantTargeting()).isEqualTo(lPlusVariantTargeting());
assertThat(masterSplit.isMasterSplit()).isTrue();
assertThat(masterSplit.getApkTargeting()).isEqualTo(apkMinSdkTargeting(21));
assertThat(masterSplit.getSplitType()).isEqualTo(SplitType.INSTANT);
assertThat(masterSplit.getAndroidManifest().getTargetSandboxVersion()).hasValue(2);
assertThat(masterSplit.getAndroidManifest().getMinSdkVersion()).hasValue(22);
}
use of com.android.tools.build.bundletool.testing.BundleModuleBuilder in project bundletool by google.
the class ModuleSplitterTest method nativeSplits_mPlusTargeting_withAbiAndUncompressNativeLibsSplitter.
@Test
public void nativeSplits_mPlusTargeting_withAbiAndUncompressNativeLibsSplitter() throws Exception {
NativeLibraries nativeConfig = nativeLibraries(targetedNativeDirectory("lib/x86", nativeDirectoryTargeting("x86")));
BundleModule testModule = new BundleModuleBuilder("testModule").setManifest(androidManifest("com.test.app")).setNativeConfig(nativeConfig).addFile("lib/x86/liba.so").build();
ModuleSplitter moduleSplitter = ModuleSplitter.createNoStamp(testModule, BUNDLETOOL_VERSION, APP_BUNDLE, ApkGenerationConfiguration.builder().setOptimizationDimensions(ImmutableSet.of(ABI)).setEnableUncompressedNativeLibraries(true).build(), variantMinSdkTargeting(ANDROID_M_API_VERSION), ImmutableSet.of("testModule"));
List<ModuleSplit> splits = moduleSplitter.splitModule();
// Base + X86 Split
assertThat(splits).hasSize(2);
assertThat(splits.stream().map(ModuleSplit::getSplitType).distinct().collect(toImmutableSet())).containsExactly(SplitType.SPLIT);
assertThat(splits.stream().map(split -> split.getVariantTargeting()).collect(toImmutableSet())).containsExactly(variantMinSdkTargeting(ANDROID_M_API_VERSION));
ModuleSplit master = splits.stream().filter(ModuleSplit::isMasterSplit).collect(onlyElement());
ModuleSplit abi = splits.stream().filter(not(ModuleSplit::isMasterSplit)).collect(onlyElement());
assertThat(master.getAndroidManifest().getExtractNativeLibsValue()).hasValue(false);
assertThat(abi.findEntry("lib/x86/liba.so").get().getForceUncompressed()).isTrue();
}
use of com.android.tools.build.bundletool.testing.BundleModuleBuilder in project bundletool by google.
the class ModuleSplitterTest method testModuleSplitter_nativeSplit_addsNoStamp.
@Test
public void testModuleSplitter_nativeSplit_addsNoStamp() throws Exception {
String stampSource = "https://www.example.com";
StampType stampType = StampType.STAMP_TYPE_DISTRIBUTION_APK;
NativeLibraries nativeConfig = nativeLibraries(targetedNativeDirectory("lib/x86", nativeDirectoryTargeting("x86")));
BundleModule testModule = new BundleModuleBuilder("testModule").setManifest(androidManifest("com.test.app")).setNativeConfig(nativeConfig).addFile("lib/x86/liba.so").build();
ModuleSplitter moduleSplitter = ModuleSplitter.create(testModule, BUNDLETOOL_VERSION, APP_BUNDLE, ApkGenerationConfiguration.builder().setOptimizationDimensions(ImmutableSet.of(ABI)).setEnableUncompressedNativeLibraries(true).build(), lPlusVariantTargeting(), ImmutableSet.of("testModule"), Optional.of(stampSource), stampType);
List<ModuleSplit> splits = moduleSplitter.splitModule();
// Base + x86 splits
assertThat(splits).hasSize(2);
ModuleSplit x86Split = splits.stream().filter(split -> split.getApkTargeting().hasAbiTargeting()).findFirst().get();
assertThat(x86Split.getAndroidManifest().getMetadataValue(STAMP_TYPE_METADATA_KEY)).isEmpty();
assertThat(x86Split.getAndroidManifest().getMetadataValue(STAMP_SOURCE_METADATA_KEY)).isEmpty();
}
Aggregations