org.gradle.integtests.ParallelStaleOutputIntegrationTest.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2021 the original author or authors.
*
* 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 org.gradle.integtests
import org.gradle.integtests.fixtures.AbstractIntegrationSpec
import spock.lang.Ignore
import spock.lang.Issue
@Issue("https://github.com/gradle/gradle/issues/17812")
class ParallelStaleOutputIntegrationTest extends AbstractIntegrationSpec {
@Ignore("https://github.com/gradle/gradle/issues/22088")
def "fails when configuring tasks which do dependency resolution from non-project context in constructor"() {
buildFile << """
abstract class BadTask extends DefaultTask {
@OutputFile
abstract RegularFileProperty getOutputFile()
@Internal
Set classpath = project.configurations["myconf"].files
BadTask() {
println("creating bad task")
}
@TaskAction
void printIt() {
def outputFile = getOutputFile().get().asFile
outputFile.text = "bad"
}
}
abstract class GoodTask extends DefaultTask {
@OutputFile
abstract RegularFileProperty getOutputFile()
@TaskAction
void printIt() {
def outputFile = getOutputFile().get().asFile
outputFile.text = "good"
}
}
subprojects {
apply plugin: 'base'
configurations {
myconf
}
tasks.withType(GoodTask).configureEach {
outputFile = layout.buildDirectory.file("good.txt")
}
tasks.withType(BadTask).configureEach {
outputFile = layout.buildDirectory.file("bad.txt")
}
tasks.register("foo", GoodTask)
tasks.register("bar", BadTask)
clean {
delete tasks.named("bar")
}
}
project(":a") {
dependencies {
myconf project(":b")
}
}
"""
settingsFile << """
include 'a', 'b'
"""
expect:
fails("a:foo", "b:foo", "--parallel")
// We just need to assert that the build fails with the right error message here, it doesn't matter which task is the first to fail,
// allowing either failure to pass the test should reduce flakiness on CI.
def docLinkMessage = getDocLinkMessage()
if (result.error.contains("Could not create task ':a:bar'.")) {
result.assertHasErrorOutput("Resolution of the configuration :a:myconf was attempted from a context different than the project context. " + docLinkMessage);
} else if (result.error.contains("Could not create task ':b:bar'.")) {
result.assertHasErrorOutput("Resolution of the configuration :b:myconf was attempted from a context different than the project context. " + docLinkMessage)
} else {
throw new AssertionError("Unexpected task failure in test, see error output.")
}
}
def getDocLinkMessage() {
documentationRegistry.getDocumentationRecommendationFor("information", "viewing_debugging_dependencies", "sub:resolving-unsafe-configuration-resolution-errors")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy