org.gradle.integtests.resource.gcs.maven.MavenGcsSnapshotRepoIntegrationTest.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.resource.gcs.maven
import org.gradle.integtests.resource.gcs.AbstractGcsDependencyResolutionTest
import org.gradle.integtests.resource.gcs.fixtures.MavenGcsModule
class MavenGcsSnapshotRepoIntegrationTest extends AbstractGcsDependencyResolutionTest {
String artifactVersion = "1.45-SNAPSHOT"
MavenGcsModule module
def setup() {
module = getMavenGcsRepo().module("org.gradle", "test", artifactVersion)
}
def "resolves a maven snapshot module stored in Gcs"() {
setup:
module.publish()
buildFile << mavenGcsRepoDsl()
buildFile << """
configurations { compile }
dependencies{
compile 'org.gradle:test:$artifactVersion'
}
task retrieve(type: Sync) {
from configurations.compile
into 'libs'
}
"""
expect:
module.pom.expectDownload()
module.metaData.expectDownload()
module.artifact.expectDownload()
and:
succeeds 'retrieve'
and:
file('libs').assertHasDescendants('test-1.45-SNAPSHOT.jar')
}
def "resolves a dynamic maven snapshot module stored in Gcs"() {
setup:
module.publish()
and:
buildFile << mavenGcsRepoDsl()
buildFile << """
configurations { compile }
dependencies{
compile 'org.gradle:test:$artifactVersion+'
}
task retrieve(type: Sync) {
from configurations.compile
into 'libs'
}
"""
expect:
module.rootMetaData.expectDownload()
module.metaData.expectDownload()
module.pom.expectDownload()
module.artifact.expectDownload()
and:
succeeds 'retrieve'
and:
file('libs').assertHasDescendants('test-1.45-SNAPSHOT.jar')
}
def "should download snapshot artifacts when maven local artifacts are different to remote"() {
setup:
module.publishWithChangedContent()
m2.generateGlobalSettingsFile()
def localModule = m2.mavenRepo().module("org.gradle", "test", artifactVersion).publish()
buildFile << mavenGcsRepoDsl()
buildFile << """
configurations { compile }
dependencies{
compile 'org.gradle:test:$artifactVersion'
}
task retrieve(type: Sync) {
from configurations.compile
into 'libs'
}
"""
and:
module.metaData.expectDownload()
module.pom.expectDownload()
module.artifact.expectDownload()
when:
using m2
run 'retrieve'
then:
succeeds 'retrieve'
and:
localModule.artifactFile.assertIsDifferentFrom(module.artifactFile)
localModule.pomFile.assertIsDifferentFrom(module.pomFile)
file("libs/test-${artifactVersion}.jar").assertIsCopyOf(module.artifactFile)
}
def "should list a dynamic snapshot module when maven root metadata is missing"() {
setup:
module.publish()
m2.generateGlobalSettingsFile()
def localModule = m2.mavenRepo().module("org.gradle", "test", artifactVersion).publishWithChangedContent()
buildFile << """
buildscript {
${mavenGcsRepoDsl()}
dependencies {
classpath 'org.gradle:test:$artifactVersion+'
}
}
"""
and:
module.rootMetaData.expectDownloadMissing()
mavenGcsRepo.directoryList("org.gradle", "test").expectDownload()
module.metaData.expectDownload()
module.pom.expectDownload()
module.artifact.expectDownload()
when:
using m2
then:
succeeds 'dependencies'
and:
localModule.artifactFile.assertIsDifferentFrom(module.artifactFile)
localModule.pomFile.assertIsDifferentFrom(module.pomFile)
}
@Override
String getRepositoryPath() {
return '/maven/snapshot/'
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy