org.gradle.api.tasks.CachedTaskIntegrationTest.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 2016 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.api.tasks
import org.gradle.integtests.fixtures.AbstractIntegrationSpec
import org.gradle.integtests.fixtures.LocalBuildCacheFixture
import org.gradle.test.fixtures.archive.TarTestFixture
class CachedTaskIntegrationTest extends AbstractIntegrationSpec implements LocalBuildCacheFixture {
def setup() {
buildFile << """
@CacheableTask
class CustomTask extends DefaultTask {
@OutputDirectory File outputDir = temporaryDir
@TaskAction
void generate() {
new File(outputDir, "output").text = "OK"
}
}
task cacheable(type: CustomTask)
"""
}
def "produces incubation warning"() {
withBuildCache().succeeds "cacheable"
expect:
result.assertOutputContains("Build cache is an incubating feature.")
}
def "displays info about local build cache configuration"() {
withBuildCache().succeeds "cacheable"
expect:
result.assertOutputContains "Using directory (${cacheDir}) as local build cache, push is enabled."
}
def "cache entry contains expected contents"() {
when:
withBuildCache().succeeds("cacheable")
then:
def cacheFiles = listCacheFiles()
cacheFiles.size() == 1
def cacheEntry = new TarTestFixture(cacheFiles[0])
cacheEntry.assertContainsFile("property-outputDir/output")
def metadata = cacheEntry.content("METADATA")
metadata.contains("type=")
metadata.contains("path=")
metadata.contains("gradleVersion=")
metadata.contains("creationTime=")
metadata.contains("executionTime=")
metadata.contains("rootPath=")
metadata.contains("operatingSystem=")
metadata.contains("hostName=")
metadata.contains("userName=")
}
def "corrupted cache provides useful error message"() {
when:
withBuildCache().succeeds("cacheable")
then:
def cacheFiles = listCacheFiles()
cacheFiles.size() == 1
when:
file("build").deleteDir()
and:
corruptMetadata({ metadata -> metadata.text = "corrupt" })
withBuildCache().fails("cacheable")
then:
failure.assertHasDescription("Cached result format error, corrupted origin metadata.")
when:
file("build").deleteDir()
and:
corruptMetadata({ metadata -> metadata.delete() })
withBuildCache().fails("cacheable")
then:
failure.assertHasDescription("Cached result format error, no origin metadata was found.")
}
def corruptMetadata(Closure corrupter) {
def cacheFiles = listCacheFiles()
assert cacheFiles.size() == 1
def cacheEntry = cacheFiles[0]
def tgzCacheEntry = temporaryFolder.file("cache.tgz")
cacheEntry.copyTo(tgzCacheEntry)
cacheEntry.delete()
def extractDir = temporaryFolder.file("extract")
tgzCacheEntry.untarTo(extractDir)
corrupter(extractDir.file("METADATA"))
extractDir.tgzTo(cacheEntry)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy