blob: 55fb2649508026b26b1e416f6b0f5105f42078c1 [file] [log] [blame]
/*
* Copyright (C) 2014 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 com.android.build.gradle.integration.application
import com.android.build.OutputFile
import com.android.build.gradle.integration.common.category.DeviceTests
import com.android.build.gradle.integration.common.fixture.GradleTestProject
import com.android.build.gradle.integration.common.utils.ModelHelper
import com.android.builder.model.AndroidArtifact
import com.android.builder.model.AndroidArtifactOutput
import com.android.builder.model.AndroidProject
import com.android.builder.model.Variant
import com.google.common.collect.Maps
import groovy.transform.CompileStatic
import org.junit.AfterClass
import org.junit.BeforeClass
import org.junit.ClassRule
import org.junit.Test
import org.junit.experimental.categories.Category
import static com.android.build.gradle.integration.common.truth.TruthHelper.assertThatApk
import static com.android.build.gradle.integration.common.truth.TruthHelper.assertThatZip
import static com.android.builder.core.BuilderConstants.DEBUG
import static org.junit.Assert.assertEquals
import static org.junit.Assert.assertNotNull
import static org.junit.Assert.assertTrue
/**
* Assemble tests for densitySplit.
*/
@CompileStatic
class DensitySplitTest {
static AndroidProject model
@ClassRule
static public GradleTestProject project = GradleTestProject.builder()
.fromTestProject("densitySplit")
.create()
@BeforeClass
static void setUp() {
model = project.executeAndReturnModel("clean", "assembleDebug")
}
@AfterClass
static void cleanUp() {
project = null
model = null
}
@Test
void lint() {
project.execute("lint")
}
@Test
void testPackaging() {
for (Variant variant : model.getVariants()) {
AndroidArtifact mainArtifact = variant.getMainArtifact()
if (!variant.getBuildType().equalsIgnoreCase("Debug")) {
continue
}
assertEquals(5, mainArtifact.getOutputs().size())
for (AndroidArtifactOutput output : mainArtifact.getOutputs()) {
assertThatZip(output.getMainOutputFile().getOutputFile())
.contains("res/drawable-mdpi-v4/other.png")
}
}
}
@Test
void "check version code in apk"() {
File universalApk = project.getApk("universal", "debug")
assertThatApk(universalApk).hasVersionCode(112)
assertThatApk(universalApk).hasVersionName("version 112")
File mdpiApk = project.getApk("mdpi", "debug")
assertThatApk(mdpiApk).hasVersionCode(212)
assertThatApk(mdpiApk).hasVersionName("version 212")
File hdpiApk = project.getApk("hdpi", "debug")
assertThatApk(hdpiApk).hasVersionCode(312)
assertThatApk(hdpiApk).hasVersionName("version 312")
File xhdpiApk = project.getApk("xhdpi", "debug")
assertThatApk(xhdpiApk).hasVersionCode(412)
assertThatApk(xhdpiApk).hasVersionName("version 412")
File xxhdiApk = project.getApk("xxhdpi", "debug")
assertThatApk(xxhdiApk).hasVersionCode(512)
assertThatApk(xxhdiApk).hasVersionName("version 512")
}
@Test
void "check version code in model"() {
Collection<Variant> variants = model.getVariants()
assertEquals("Variant Count", 2 , variants.size())
// get the main artifact of the debug artifact
Variant debugVariant = ModelHelper.getVariant(variants, DEBUG)
assertNotNull("debug Variant null-check", debugVariant)
AndroidArtifact debugMainArficat = debugVariant.getMainArtifact()
assertNotNull("Debug main info null-check", debugMainArficat)
// get the outputs.
Collection<AndroidArtifactOutput> debugOutputs = debugMainArficat.getOutputs()
assertNotNull(debugOutputs)
assertEquals(5, debugOutputs.size())
// build a map of expected outputs and their versionCode
Map<String, Integer> expected = Maps.newHashMapWithExpectedSize(5)
expected.put(null, 112)
expected.put("mdpi", 212)
expected.put("hdpi", 312)
expected.put("xhdpi", 412)
expected.put("xxhdpi", 512)
assertEquals(5, debugOutputs.size())
for (AndroidArtifactOutput output : debugOutputs) {
assertEquals(OutputFile.FULL_SPLIT, output.getMainOutputFile().getOutputType())
Collection<? extends OutputFile> outputFiles = output.getOutputs()
assertEquals(1, outputFiles.size())
assertNotNull(output.getMainOutputFile())
String densityFilter = ModelHelper.getFilter(output.getMainOutputFile(), OutputFile.DENSITY)
Integer value = expected.get(densityFilter)
// this checks we're not getting an unexpected output.
assertNotNull("Check Valid output: " + (densityFilter == null ? "universal"
: densityFilter),
value)
assertEquals(value.intValue(), output.getVersionCode())
expected.remove(densityFilter)
}
// this checks we didn't miss any expected output.
assertTrue(expected.isEmpty())
}
@Test
@Category(DeviceTests.class)
void connectedCheck() {
project.execute("connectedCheck")
}
}