org.gradle.cache.internal.DefaultCacheRepositoryTest.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 2011 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.cache.internal
import org.gradle.api.Action
import org.gradle.cache.CacheBuilder
import org.gradle.cache.PersistentCache
import org.gradle.test.fixtures.file.TestFile
import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
import org.junit.Rule
import spock.lang.Specification
import static org.gradle.cache.FileLockManager.LockMode.None
import static org.gradle.cache.FileLockManager.LockMode.Shared
import static org.gradle.cache.internal.filelock.LockOptionsBuilder.mode
class DefaultCacheRepositoryTest extends Specification {
@Rule
public final TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider()
private final TestFile homeDir = tmpDir.createDir("home")
private final TestFile sharedCacheDir = homeDir.file("caches")
private final Map properties = [a: "value", b: "value2"]
private final CacheFactory cacheFactory = Mock()
private final PersistentCache cache = Mock()
private final CacheScopeMapping scopeMapping = Mock()
private final DefaultCacheRepository repository = new DefaultCacheRepository(scopeMapping, cacheFactory)
void createsGlobalDirectoryBackedCache() {
when:
def result = repository.cache("a/b/c").open()
then:
result == cache
1 * scopeMapping.getBaseDirectory(null, "a/b/c", VersionStrategy.CachePerVersion) >> sharedCacheDir
1 * cacheFactory.open(sharedCacheDir, null, [:], CacheBuilder.LockTarget.DefaultTarget, mode(Shared), null, null) >> cache
0 * cacheFactory._
}
void createsGlobalCacheWithProperties() {
when:
repository.cache("a/b/c").withProperties(properties).open()
then:
1 * scopeMapping.getBaseDirectory(null, "a/b/c", VersionStrategy.CachePerVersion) >> sharedCacheDir
1 * cacheFactory.open(sharedCacheDir, null, properties, CacheBuilder.LockTarget.DefaultTarget, mode(Shared), null, null) >> cache
}
void createsScopedCache() {
when:
repository.cache("scope", "a/b/c").open()
then:
1 * scopeMapping.getBaseDirectory("scope", "a/b/c", VersionStrategy.CachePerVersion) >> sharedCacheDir
1 * cacheFactory.open(sharedCacheDir, null, [:], CacheBuilder.LockTarget.DefaultTarget, mode(Shared), null, null) >> cache
}
void createsCacheWithBaseDirectory() {
when:
repository.cache(sharedCacheDir).open()
then:
1 * cacheFactory.open(sharedCacheDir, null, [:], CacheBuilder.LockTarget.DefaultTarget, mode(Shared), null, null) >> cache
}
void createsCrossVersionCache() {
when:
repository.cache("scope", "a/b/c").withCrossVersionCache(CacheBuilder.LockTarget.CachePropertiesFile).open()
then:
1 * scopeMapping.getBaseDirectory("scope", "a/b/c", VersionStrategy.SharedCache) >> sharedCacheDir
1 * cacheFactory.open(sharedCacheDir, null, [:], CacheBuilder.LockTarget.CachePropertiesFile, mode(Shared), null, null) >> cache
}
void canSpecifyInitializerActionForDirectoryCache() {
Action> action = Mock()
when:
repository.cache("a").withInitializer(action).open()
then:
1 * scopeMapping.getBaseDirectory(null, "a", VersionStrategy.CachePerVersion) >> sharedCacheDir
1 * cacheFactory.open(sharedCacheDir, null, [:], CacheBuilder.LockTarget.DefaultTarget, mode(Shared), action, null) >> cache
}
void canSpecifyLockModeForDirectoryCache() {
when:
repository.cache("a").withLockOptions(mode(None)).open()
then:
1 * scopeMapping.getBaseDirectory(null, "a", VersionStrategy.CachePerVersion) >> sharedCacheDir
1 * cacheFactory.open(sharedCacheDir, null, [:], CacheBuilder.LockTarget.DefaultTarget, mode(None), null, null) >> cache
}
void canSpecifyDisplayNameForDirectoryCache() {
when:
repository.cache("a").withDisplayName("").open()
then:
1 * scopeMapping.getBaseDirectory(null, "a", VersionStrategy.CachePerVersion) >> sharedCacheDir
1 * cacheFactory.open(sharedCacheDir, "", [:], CacheBuilder.LockTarget.DefaultTarget, mode(Shared), null, null) >> cache
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy