org.gradle.integtests.resolve.ClientModuleDependenciesResolveIntegrationTest.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 2009 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
import org.gradle.integtests.fixtures.AbstractHttpDependencyResolutionTest
import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
class ClientModuleDependenciesResolveIntegrationTest extends AbstractHttpDependencyResolutionTest {
@ToBeFixedForConfigurationCache
def "uses metadata from Client Module and looks up artifact in declared repositories"() {
given:
def repo1 = ivyHttpRepo("repo1")
def repo2 = mavenHttpRepo("repo2")
def projectAInRepo1 = repo1.module('group', 'projectA', '1.2')
def projectAInRepo2 = repo2.module('group', 'projectA', '1.2').publish()
def projectB = repo1.module('group', 'projectB', '1.3').publish()
and:
buildFile << """
repositories {
ivy { url "${repo1.uri}" }
maven { url "${repo2.uri}" }
}
configurations { compile }
dependencies {
compile module("group:projectA:1.2") {
dependency("group:projectB:1.3")
}
}
task listJars {
doLast {
assert configurations.compile.collect { it.name } == ['projectA-1.2.jar', 'projectB-1.3.jar']
}
}
"""
when:
projectB.ivy.expectGet()
projectB.jar.expectGet()
projectAInRepo1.ivy.expectGetMissing()
projectAInRepo2.pom.expectGet()
projectAInRepo2.artifact.expectGet()
then:
succeeds('listJars')
when:
server.resetExpectations()
then:
succeeds('listJars')
}
@ToBeFixedForConfigurationCache
def "can resolve nested Client Module"() {
given:
def repo = mavenHttpRepo("repo")
def projectA = repo.module('test', 'projectA', '1.2').publish()
def projectB = repo.module('test', 'projectB', '1.5').publish()
def projectC = repo.module('test', 'projectC', '2.0').publish()
and:
buildFile << """
repositories {
maven { url "${repo.uri}" }
}
configurations { compile }
dependencies {
compile module('test:projectA:1.2') {
module('test:projectB:1.5') {
dependencies('test:projectC:2.0')
}
}
}
task listJars {
doLast {
assert configurations.compile.collect { it.name } == ['projectA-1.2.jar', 'projectB-1.5.jar', 'projectC-2.0.jar']
}
}
"""
when:
projectA.pom.expectGet()
projectA.artifact.expectGet()
projectB.pom.expectGet()
projectB.artifact.expectGet()
projectC.pom.expectGet()
projectC.artifact.expectGet()
then:
succeeds('listJars')
when:
server.resetExpectations()
then:
succeeds('listJars')
}
@ToBeFixedForConfigurationCache
def "client module dependency ignores published artifact listing and resolves single jar file"() {
given:
def projectA = ivyHttpRepo.module('group', 'projectA', '1.2')
.artifact()
.artifact(classifier: "extra")
.publish()
buildFile << """
repositories {
ivy { url "${ivyHttpRepo.uri}" }
}
configurations {
regular
clientModule
}
dependencies {
regular "group:projectA:1.2"
clientModule module("group:projectA:1.2")
}
task listJars {
doLast {
assert configurations.regular.collect { it.name } == ['projectA-1.2.jar', 'projectA-1.2-extra.jar']
}
}
task listClientModuleJars {
doLast {
assert configurations.clientModule.collect { it.name } == ['projectA-1.2.jar']
}
}
"""
when:
projectA.ivy.expectGet()
projectA.jar.expectGet()
then:
succeeds('listClientModuleJars')
when:
server.resetExpectations()
projectA.getArtifact(classifier: "extra").expectGet()
then:
succeeds('listJars')
when:
server.resetExpectations()
then:
succeeds('listClientModuleJars')
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy