blob: b2e6aece8ff25f23f1c1183bb7fc2641fc421f07 [file] [log] [blame]
// Copyright (c) 2022, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.dex.container;
import static org.junit.Assert.assertEquals;
import com.android.tools.r8.TestBase;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.TestParametersCollection;
import com.android.tools.r8.utils.AndroidApiLevel;
import com.android.tools.r8.utils.ZipUtils;
import com.google.common.io.ByteStreams;
import java.io.IOException;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameter;
import org.junit.runners.Parameterized.Parameters;
@RunWith(Parameterized.class)
public class DexContainerFormatEmptyTest extends TestBase {
@Parameter() public TestParameters parameters;
@Parameters(name = "{0}")
public static TestParametersCollection data() {
return getTestParameters().withNoneRuntime().build();
}
@Test
public void testNonContainerD8() throws Exception {
Path outputA = testForD8(Backend.DEX).setMinApi(AndroidApiLevel.L).compile().writeToZip();
assertEquals(0, unzipContent(outputA).size());
Path outputB = testForD8(Backend.DEX).setMinApi(AndroidApiLevel.L).compile().writeToZip();
assertEquals(0, unzipContent(outputB).size());
Path outputMerged =
testForD8(Backend.DEX)
.addProgramFiles(outputA, outputB)
.setMinApi(AndroidApiLevel.L)
.compile()
.writeToZip();
assertEquals(0, unzipContent(outputMerged).size());
}
@Test
public void testD8Experiment() throws Exception {
Path outputFromDexing =
testForD8(Backend.DEX)
.setMinApi(AndroidApiLevel.L)
.addOptionsModification(
options -> options.getTestingOptions().dexContainerExperiment = true)
.compile()
.writeToZip();
assertEquals(0, unzipContent(outputFromDexing).size());
}
private List<byte[]> unzipContent(Path zip) throws IOException {
List<byte[]> result = new ArrayList<>();
ZipUtils.iter(zip, (entry, inputStream) -> result.add(ByteStreams.toByteArray(inputStream)));
return result;
}
}