use of com.android.tools.build.bundletool.testing.BundleModuleBuilder in project bundletool by google.
the class ModuleSplitterTest method pinSpecIsCopied.
@Test
public void pinSpecIsCopied() {
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").addFile("assets/com.android.hints.pins.txt").build();
ImmutableList<ModuleSplit> splits = createAbiAndDensitySplitter(testModule).splitModule();
assertThat(splits).hasSize(2);
assertThat(splits.stream().map((s) -> s.getEntries().stream().filter((e) -> e.getPath().endsWith(PinSpecInjector.PIN_SPEC_NAME)).count()).distinct()).containsExactly(1L);
}
use of com.android.tools.build.bundletool.testing.BundleModuleBuilder in project bundletool by google.
the class ModuleSplitterTest method nativeSplits_lPlusTargeting_withAbiAndUncompressNativeLibsSplitter.
@Test
public void nativeSplits_lPlusTargeting_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(), lPlusVariantTargeting(), 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_L_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(true);
assertThat(abi.findEntry("lib/x86/liba.so").get().getForceUncompressed()).isFalse();
}
use of com.android.tools.build.bundletool.testing.BundleModuleBuilder in project bundletool by google.
the class ModuleSplitterTest method nativeSplits_mPlusTargeting_disabledUncompressedSplitter.
@Test
public void nativeSplits_mPlusTargeting_disabledUncompressedSplitter() {
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(false).build(), variantMinSdkTargeting(ANDROID_M_API_VERSION), ImmutableSet.of("testModule"));
List<ModuleSplit> splits = moduleSplitter.splitModule();
assertThat(splits).hasSize(2);
ModuleSplit master = splits.stream().filter(ModuleSplit::isMasterSplit).collect(onlyElement());
ModuleSplit abi = splits.stream().filter(not(ModuleSplit::isMasterSplit)).collect(onlyElement());
assertThat(master.getAndroidManifest().getExtractNativeLibsValue()).hasValue(true);
assertThat(abi.findEntry("lib/x86/liba.so").get().getForceUncompressed()).isFalse();
}
use of com.android.tools.build.bundletool.testing.BundleModuleBuilder in project bundletool by google.
the class ModuleSplitterTest method applicationElementAdded.
@Test
public void applicationElementAdded() throws Exception {
XmlNode manifest = androidManifest("com.test.app", clearApplication());
checkState(!AndroidManifest.create(manifest).hasApplicationElement(), "Expected manifest with no <application> element.");
BundleModule bundleModule = new BundleModuleBuilder("testModule").setManifest(manifest).build();
ImmutableList<ModuleSplit> moduleSplits = ModuleSplitter.createForTest(bundleModule, BUNDLETOOL_VERSION).splitModule();
assertThat(moduleSplits).hasSize(1);
ModuleSplit masterSplit = moduleSplits.get(0);
assertThat(masterSplit.getAndroidManifest().getManifestRoot().getElement().getOptionalChildElement(APPLICATION_ELEMENT_NAME)).isPresent();
}
use of com.android.tools.build.bundletool.testing.BundleModuleBuilder in project bundletool by google.
the class ModuleSplitterTest method manifestResourcePinning_langResourceWithoutDefaultConfig_pinned.
@Test
public void manifestResourcePinning_langResourceWithoutDefaultConfig_pinned() throws Exception {
BundleModule baseModule = new BundleModuleBuilder("base").setResourceTable(resourceTable(pkg(USER_PACKAGE_OFFSET, "com.test.app", type(0x01, "string", entry(0x0001, "welcome_label", value("Welcome", locale("en")), value("Willkommen", locale("de")), value("Здравствуйте", locale("ru"))), entry(0x0002, "goodbye_label", value("Goodbye", locale("en")), value("Auf Wiedersehen", locale("de")), value("До свидания", locale("ru"))))))).setManifest(androidManifest("com.test.app", withMetadataResource("reference-to-resource", 0x7f010001))).build();
ModuleSplitter moduleSplitter = ModuleSplitter.createNoStamp(baseModule, BUNDLETOOL_VERSION, APP_BUNDLE, ApkGenerationConfiguration.builder().setOptimizationDimensions(ImmutableSet.of(LANGUAGE)).setBaseManifestReachableResources(ImmutableSet.of(ResourceId.create(0x7f010001))).build(), lPlusVariantTargeting(), ImmutableSet.of("base"));
ImmutableList<ModuleSplit> splits = moduleSplitter.splitModule();
Map<String, ModuleSplit> splitsBySuffix = Maps.uniqueIndex(splits, ModuleSplit::getSuffix);
assertThat(splitsBySuffix.keySet()).containsExactly("en", "de", "ru", "");
assertThat(splitsBySuffix.get("").getResourceTable().get()).containsResource("com.test.app:string/welcome_label").onlyWithConfigs(locale("en"), locale("de"), locale("ru"));
assertThat(splitsBySuffix.get("en").getResourceTable().get()).doesNotContainResource("com.test.app:string/welcome_label");
assertThat(splitsBySuffix.get("de").getResourceTable().get()).doesNotContainResource("com.test.app:string/welcome_label");
assertThat(splitsBySuffix.get("ru").getResourceTable().get()).doesNotContainResource("com.test.app:string/welcome_label");
}
Aggregations