blob: 94796229517b3b8fbe3a25b51054192dc5f03aa6 [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.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.AndroidProject
import com.android.builder.model.Dependencies
import com.android.builder.model.JavaLibrary
import com.android.builder.model.Variant
import groovy.transform.CompileStatic
import org.junit.AfterClass
import org.junit.BeforeClass
import org.junit.ClassRule
import org.junit.Test
import static org.junit.Assert.assertEquals
import static org.junit.Assert.assertNotNull
import static org.junit.Assert.assertTrue
/**
* Assemble tests for customArtifactDep.
*/
@CompileStatic
class CustomArtifactDepTest {
@ClassRule
static public GradleTestProject project = GradleTestProject.builder()
.fromTestProject("customArtifactDep")
.create()
static Map<String, AndroidProject> models
@BeforeClass
static void setUp() {
models = project.getAllModels()
}
@AfterClass
static void cleanUp() {
project = null
models = null
}
@Test
void testModel() {
AndroidProject appModel = models.get(":app")
assertNotNull("Module app null-check", appModel)
Collection<Variant> variants = appModel.getVariants()
assertEquals("Variant count", 2, variants.size())
Variant variant = ModelHelper.getVariant(variants, "release")
assertNotNull("release variant null-check", variant)
AndroidArtifact mainInfo = variant.getMainArtifact()
assertNotNull("Main Artifact null-check", mainInfo)
Dependencies dependencies = mainInfo.getDependencies()
assertNotNull("Dependencies null-check", dependencies)
Collection<String> projects = dependencies.getProjects()
assertNotNull("project dep list null-check", projects)
assertTrue("project dep empty check", projects.isEmpty())
Collection<JavaLibrary> javaLibraries = dependencies.getJavaLibraries()
assertNotNull("jar dep list null-check", javaLibraries)
assertEquals("jar dep count", 1, javaLibraries.size())
}
}