org.gradle.configurationcache.ConfigurationCacheTaskExecutionIntegrationTest.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 2020 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.configurationcache
class ConfigurationCacheTaskExecutionIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
def "honors task up-to-date spec"() {
buildFile << """
abstract class TaskWithComplexInputs extends DefaultTask {
@OutputFile
abstract RegularFileProperty getOutputFile()
TaskWithComplexInputs() {
def result = name == "never"
outputs.upToDateWhen { !result }
}
@TaskAction
def go() {
outputFile.get().asFile.text = "some-derived-value"
}
}
task never(type: TaskWithComplexInputs) {
outputFile = layout.buildDirectory.file("never.txt")
}
task always(type: TaskWithComplexInputs) {
outputFile = layout.buildDirectory.file("always.txt")
}
"""
when:
configurationCacheRun("never", "always")
configurationCacheRun("never", "always")
then:
result.assertTaskSkipped(":always")
result.assertTasksNotSkipped(":never")
}
def "shouldRunAfter doesn't imply dependency"() {
given:
buildFile << '''
task a
task b { shouldRunAfter a }
'''
when:
configurationCacheRun 'b'
then:
result.assertTasksExecuted ':b'
when:
configurationCacheRun 'b'
then:
result.assertTasksExecuted ':b'
}
def "mustRunAfter doesn't imply dependency"() {
given:
buildFile << '''
task a
task b { mustRunAfter a }
'''
when:
configurationCacheRun 'b'
then:
result.assertTasksExecuted ':b'
when:
configurationCacheRun 'b'
then:
result.assertTasksExecuted ':b'
}
def "finalizedBy implies dependency"() {
given:
buildFile << '''
task a
task b { finalizedBy a }
'''
when:
configurationCacheRun 'b'
then:
result.assertTasksExecuted ':b', ':a'
when:
configurationCacheRun 'b'
then:
result.assertTasksExecuted ':b', ':a'
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy