forked from gradle/gradle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issue with simultaneous attempts to initialize a shared cache (gr…
…adle#2793) Fixes gradle#2737
- Loading branch information
Showing
3 changed files
with
126 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
99 changes: 99 additions & 0 deletions
99
...vy/org/gradle/cache/internal/FixedSharedModeCrossProcessCacheAccessIntegrationTest.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
/* | ||
* Copyright 2017 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.cache.FileLock | ||
import org.gradle.cache.FileLockManager | ||
import org.gradle.cache.internal.filelock.LockOptionsBuilder | ||
import org.gradle.integtests.fixtures.AbstractIntegrationSpec | ||
import spock.lang.Issue | ||
import spock.lang.Subject | ||
|
||
import static org.gradle.test.fixtures.ConcurrentTestUtil.poll | ||
|
||
@Subject(FixedSharedModeCrossProcessCacheAccess) | ||
class FixedSharedModeCrossProcessCacheAccessIntegrationTest extends AbstractIntegrationSpec { | ||
|
||
@Issue("https://github.com/gradle/gradle/issues/2737") | ||
def "parallel initialization attempt of a shared cache does not timeout one of the processes"() { | ||
given: | ||
executer.requireOwnGradleUserHomeDir().withDaemonBaseDir(file("daemon")).requireDaemon() | ||
buildFile << """ | ||
task doWork(type: WorkerTask) | ||
class WorkerTask extends DefaultTask { | ||
@javax.inject.Inject | ||
WorkerExecutor getWorkerExecutor() { throw new UnsupportedOperationException() } | ||
@TaskAction | ||
void doWork() { | ||
workerExecutor.submit(TestRunnable) { WorkerConfiguration config -> | ||
config.isolationMode = IsolationMode.PROCESS | ||
} | ||
new File("started").createNewFile() | ||
while (!new File("finished").exists()) { Thread.sleep(100) } | ||
} | ||
} | ||
class TestRunnable implements Runnable { void run() { } } | ||
""" | ||
|
||
when: | ||
//start a build with a IsolationMode.PROCESS worker that will initialize the worker classpath cache and wait until the cache was initialized | ||
def build = executer.withTasks("doWork").start() | ||
poll { | ||
assert file("started").exists() | ||
} | ||
|
||
//simulate another "build" that tries to initialize the cache as well before recognizing that it has been done already | ||
def cacheAccess = simulateAnotherInitializationOfAlreadyInitializedWorkerClasspathCache() | ||
cacheAccess.open() | ||
file("finished").createFile() | ||
build.waitForFinish() | ||
|
||
then: | ||
noExceptionThrown() | ||
|
||
cleanup: | ||
cacheAccess?.close() | ||
} | ||
|
||
/** | ||
* This setups a {@link FixedSharedModeCrossProcessCacheAccess} that does initially not see that the cache is already initialised | ||
* (or in the process of being initialised). This simulates a situation, where two processes happen to find a the cache in an empty state | ||
* simultaneously. Then the the second one, attempting to initialize the cache, will fail to obtain an exclusive lock on the cache. Instead | ||
* of failing, it should recheck if initialization was performed by calling {@link CacheInitializationAction#requiresInitialization(org.gradle.cache.FileLock)} | ||
* again. This is simulated here by an requiresInitialization() implementation that returns false after a number of calls to itself. | ||
*/ | ||
private simulateAnotherInitializationOfAlreadyInitializedWorkerClasspathCache() { | ||
def cacheDir = file("user-home/caches/${distribution.version.version}/workerMain") | ||
def countingInitAction = new CacheInitializationAction() { | ||
def count = 0 | ||
|
||
boolean requiresInitialization(FileLock fileLock) { | ||
assert fileLock != null | ||
count++ | ||
println "Checking initialized $count" | ||
return count < 4 | ||
} | ||
|
||
void initialize(FileLock fileLock) {} | ||
} | ||
def lockOptions = LockOptionsBuilder.mode(FileLockManager.LockMode.Shared) | ||
def lockManager1 = DefaultFileLockManagerTestHelper.createDefaultFileLockManager(100) | ||
new FixedSharedModeCrossProcessCacheAccess("<cache>", cacheDir, lockOptions, lockManager1, countingInitAction, {}, {}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters