blob: fc4ef2e4c434413bf5eafeaee75ae998952e267e [file] [log] [blame]
/*
* Copyright (C) 2018 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.BaseGradleExecutor
import com.android.build.gradle.integration.common.fixture.GradleTestProject
import com.android.build.gradle.integration.common.fixture.app.MinimalSubProject
import com.android.build.gradle.integration.common.truth.ScannerSubject
import com.android.build.gradle.options.BooleanOption
import com.google.common.base.Throwables
import com.google.common.truth.Truth.assertThat
import org.junit.Rule
import org.junit.Test
/** Integration test for the dependency checker. */
class DependencyCheckerTest {
private val testProject =
MinimalSubProject.app("com.example.app").apply {
appendToBuild("afterEvaluate { configurations.debugRuntimeClasspath.files() }")
}
@get:Rule
val app = GradleTestProject.builder()
.fromTestApp(testProject)
.create()
@Test
fun checkFailureAndWarning() {
// org.gradle.api.tasks.diagnostics.TaskReportTask is incompatible
val failure =
app.executor().withConfigurationCaching(BaseGradleExecutor.ConfigurationCaching.OFF)
.expectFailure().run("tasks")
val rootCause = Throwables.getRootCause(failure.exception!!)
assertThat(rootCause).hasMessageThat()
.contains("Configuration 'debugRuntimeClasspath' was resolved")
val warning =
app.executor().withConfigurationCaching(BaseGradleExecutor.ConfigurationCaching.OFF)
.with(BooleanOption.DISALLOW_DEPENDENCY_RESOLUTION_AT_CONFIGURATION, false)
.with(
BooleanOption.WARN_ABOUT_DEPENDENCY_RESOLUTION_AT_CONFIGURATION,
true
)
.run("tasks")
warning.stdout.use {
ScannerSubject.assertThat(it)
.contains("Configuration 'debugRuntimeClasspath' was resolved")
}
warning.stdout.use {
ScannerSubject.assertThat(it)
.contains(app.buildFile.absolutePath.toString() + ":")
}
// Assert no exceptions while fetching the models
val models = app.model().fetchAndroidProjects()
assertThat(models).isNotNull()
}
}