org.gradle.api.CrossProcessFileLockIntegrationTest.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 2013 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;
import org.gradle.integtests.fixtures.AbstractIntegrationSpec
import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
import static org.gradle.test.fixtures.ConcurrentTestUtil.poll
class CrossProcessFileLockIntegrationTest extends AbstractIntegrationSpec {
@ToBeFixedForConfigurationCache(skip = INVESTIGATE)
def "the task history lock can be acquired when the initial owner is busy executing tasks"() {
createDirs("a", "b")
settingsFile << "include 'a', 'b'"
file("a/src/main/java/A.java") << "public class A {}"
file("b/src/main/java/B.java") << "public class B {}"
when:
buildFile """
def waitForStop() {
def sanityWaitUntil = System.currentTimeMillis() + 120000
println 'waiting for file...'
while(!file('stop.txt').exists()) {
Thread.sleep(300)
assert System.currentTimeMillis() < sanityWaitUntil : "Timeout waiting for file"
}
println 'no more waiting!'
}
def stopNow() {
assert file('stop.txt').createNewFile()
}
subprojects {
apply plugin: 'java'
}
project(":a") {
compileJava.doFirst { waitForStop() }
}
project(":b") {
compileJava.doFirst { stopNow() }
}
"""
then:
def handle1 = executer.withArguments(':a:build', '-i').start()
poll(120) {
assert handle1.standardOutput.contains('waiting for file...')
}
//first build is waiting for file, so the lock should be releasable now (for example: the task history lock)
and:
def handle2 = executer.withArguments('b:build', '-is').start()
handle2.waitForFinish()
handle1.waitForFinish()
and:
file("a/build/libs/a.jar").assertExists()
file("b/build/libs/b.jar").assertExists()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy