org.gradle.integtests.resolve.caching.ParallelDependencyResolutionIntegrationTest.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 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.integtests.resolve.caching
import org.gradle.integtests.fixtures.AbstractHttpDependencyResolutionTest
import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
import org.gradle.test.fixtures.server.http.BlockingHttpServer
import org.junit.Rule
import spock.lang.IgnoreIf
@IgnoreIf({ GradleContextualExecuter.parallel })
// no point, always runs in parallel
class ParallelDependencyResolutionIntegrationTest extends AbstractHttpDependencyResolutionTest {
@Rule BlockingHttpServer blockingServer = new BlockingHttpServer()
def setup() {
executer.withArgument('--parallel')
executer.withArgument('--max-workers=3') // needs to be set to the maximum number of expectConcurrentExecution() calls
executer.withArgument('--info')
executer.requireOwnGradleUserHomeDir()
}
def "dependency is only downloaded at most once per build using Maven"() {
def module = mavenHttpRepo.module("com.acme", "dummy", "1.0-SNAPSHOT").publish()
given:
module.metaData.expectGet()
('a'..'z').each {
settingsFile << "include '$it'\n"
file("${it}/build.gradle") << """
apply plugin: 'java-library'
repositories {
maven {
url '${mavenHttpRepo.uri}'
}
}
dependencies {
implementation 'com.acme:dummy:1.0-SNAPSHOT'
}
task resolveDependencies {
doLast {
configurations.compileClasspath.resolve()
}
}
"""
}
module.pom.expectGet()
module.artifact.expectGet()
when:
run 'resolveDependencies'
then:
noExceptionThrown()
}
def "dependency is only downloaded at most once per build using Ivy"() {
def module = ivyHttpRepo.module('com.acme', 'dummy', '1.0-SNAPSHOT').publish()
given:
('a'..'z').each {
settingsFile << "include '$it'\n"
file("${it}/build.gradle") << """
apply plugin: 'java-library'
repositories {
ivy {
url '${ivyHttpRepo.uri}'
}
}
dependencies {
implementation 'com.acme:dummy:1.0-SNAPSHOT'
}
task resolveDependencies {
doLast {
configurations.compileClasspath.resolve()
}
}
"""
}
module.ivy.expectGet()
module.artifact.expectGet()
when:
run 'resolveDependencies'
then:
noExceptionThrown()
}
def "tasks resolving in parallel do not access Projects in parallel"() {
given:
['project1', 'project2'].each {
settingsFile << "include '$it'\n"
file("$it/build.gradle") << """
apply plugin: 'java-library'
task resolveDependencies {
doLast {
configurations.compileClasspath.resolve()
}
}
"""
}
('a'..'z').each {
settingsFile << "include '$it'\n"
file("${it}/build.gradle") << """
apply plugin: 'java-library'
"""
['project1', 'project2'].each { downstream ->
file("$downstream/build.gradle") << """
dependencies {
implementation project(":$it")
}
"""
}
}
when:
run 'project1:resolveDependencies', 'project2:resolveDependencies'
then:
noExceptionThrown()
}
def "long running task in producing project does not block task in consuming project"() {
blockingServer.start()
settingsFile << """
include "producer"
include "consumer"
"""
buildFile << """
allprojects {
configurations { create("default") }
}
project(":producer") {
task producer {
ext.output = objects.fileProperty()
outputs.file output
output.set(file("out"))
}
task longRunning {
dependsOn producer
doLast {
${blockingServer.callFromBuild("longRunning")}
}
}
artifacts {
"default"(producer.output)
}
}
project(":consumer") {
dependencies { "default"(project(":producer")) }
task guard {
doLast {
Thread.sleep(500)
}
}
task consumer {
inputs.files configurations.default
outputs.file file("out")
dependsOn guard
doLast {
${blockingServer.callFromBuild("consumer")}
}
}
}
"""
given:
blockingServer.expectConcurrent("longRunning", "consumer")
expect:
succeeds("longRunning", "consumer")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy