blob: 3440ec0df65c53a5e052d3f71d26424ccebf505f [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.dependencies
import com.android.build.gradle.integration.common.fixture.GradleTestProject
import com.android.build.gradle.integration.common.utils.ModelHelper
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 com.android.build.gradle.integration.common.truth.TruthHelper.assertThatApk
import static org.junit.Assert.assertTrue
/**
* test for package (apk) local jar in app
*/
@CompileStatic
class AppWithPackageLocalJarTest {
@ClassRule
static public GradleTestProject project = GradleTestProject.builder()
.fromTestProject("projectWithLocalDeps")
.create()
static AndroidProject model
@BeforeClass
static void setUp() {
project.getBuildFile() << """
apply plugin: 'com.android.application'
android {
compileSdkVersion $GradleTestProject.DEFAULT_COMPILE_SDK_VERSION
buildToolsVersion "$GradleTestProject.DEFAULT_BUILD_TOOL_VERSION"
}
dependencies {
apk files('libs/util-1.0.jar')
}
"""
model = project.executeAndReturnModel("clean", "assembleDebug")
}
@AfterClass
static void cleanUp() {
project = null
model = null
}
@Test
void "check packaged local jar is packaged"() {
assertThatApk(project.getApk("debug"))
.containsClass("Lcom/example/android/multiproject/person/People;")
}
@Test
void "check packaged local jar is not in the model"() {
Variant variant = ModelHelper.getVariant(model.getVariants(), "debug")
Dependencies deps = variant.getMainArtifact().getDependencies()
Collection<JavaLibrary> javaLibs = deps.getJavaLibraries()
assertTrue("Check there is no dependency", javaLibs.isEmpty())
}
@Test
void "check packaged local jar is not in the android test dependency"() {
// TODO
}
@Test
void "check packaged local jar is not in the unit test dependency"() {
// TODO
}
}