org.gradle.integtests.fixtures.DirectoryBuildCacheFixture.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.integtests.fixtures
import groovy.transform.SelfType
import org.gradle.test.fixtures.file.TestFile
import org.junit.Before
@SelfType(AbstractIntegrationSpec)
trait DirectoryBuildCacheFixture {
private TestBuildCache buildCache
@Before
void setupCacheDirectory() {
// Make sure cache dir is empty for every test execution
buildCache = new TestBuildCache(temporaryFolder.file("cache-dir").deleteDir().createDir())
settingsFile << buildCache.localCacheConfiguration()
}
// Spock 2 executes @Before after the setup() methods
// this is a workaround for tests that use this fixture from their setup() methods
private void initIfNeeded() {
if (buildCache == null) {
setupCacheDirectory()
}
}
def localCacheConfiguration() {
initIfNeeded()
buildCache.localCacheConfiguration()
}
TestFile getCacheDir() {
initIfNeeded()
buildCache.cacheDir
}
TestFile gcFile() {
initIfNeeded()
buildCache.gcFile()
}
List listCacheFiles() {
initIfNeeded()
buildCache.listCacheFiles()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy