org.gradle.integtests.resource.s3.maven.MavenS3RepoErrorsIntegrationTest.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 2014 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.s3.maven
import org.gradle.api.credentials.AwsCredentials
import org.gradle.integtests.resource.s3.AbstractS3DependencyResolutionTest
import org.gradle.integtests.resource.s3.fixtures.MavenS3Module
class MavenS3RepoErrorsIntegrationTest extends AbstractS3DependencyResolutionTest {
final String artifactVersion = "1.85"
MavenS3Module module;
@Override
String getRepositoryPath() {
return '/maven/release/'
}
def setup() {
module = mavenS3Repo.module("org.gradle", "test", artifactVersion)
buildFile << """
configurations { compile }
dependencies{
compile 'org.gradle:test:$artifactVersion'
}
task retrieve(type: Sync) {
from configurations.compile
into 'libs'
}
"""
}
def "should fail with an AWS S3 authentication error"() {
setup:
buildFile << mavenAwsRepoDsl()
when:
module.pom.expectDownloadAuthencicationError()
then:
fails 'retrieve'
and:
failure.assertHasDescription("Could not resolve all dependencies for configuration ':compile'.")
.assertHasCause('Could not resolve org.gradle:test:1.85')
.assertHasCause("Could not get resource '${module.pom.uri}'.")
.assertHasCause("The AWS Access Key Id you provided does not exist in our records.")
}
def "fails when providing PasswordCredentials with decent error"() {
setup:
buildFile << """
repositories {
maven {
url "${mavenS3Repo.uri}"
credentials {
username "someUserName"
password "someSecret"
}
}
}
"""
when:
fails 'retrieve'
then:
//TODO would be good to have a reference of the wrong configured repository in the error message
failure.assertHasDescription("Could not resolve all dependencies for configuration ':compile'.")
.assertHasCause("Credentials must be an instance of '${AwsCredentials.class.getName()}'.")
}
def "fails when no credentials provided"() {
setup:
buildFile << """
repositories {
maven {
url "${mavenS3Repo.uri}"
}
}
"""
when:
fails 'retrieve'
then:
failure.assertHasDescription("Could not resolve all dependencies for configuration ':compile'.")
.assertHasCause("AwsCredentials must be set for S3 backed repository.")
}
def "should include resource uri when file not found"() {
setup:
buildFile << mavenAwsRepoDsl()
when:
module.pom.expectDownloadMissing()
module.artifact.expectMetadataRetrieveMissing()
then:
fails 'retrieve'
and:
failure.assertHasDescription("Could not resolve all dependencies for configuration ':compile'.")
failure.assertHasCause(
"""Could not find org.gradle:test:1.85.
Searched in the following locations:
${module.pom.uri}
${module.artifact.uri}
Required by:
""")
}
def "cannot add invalid authentication types for s3 repo"() {
given:
module.publish()
and:
buildFile << """
repositories {
maven {
url "${mavenS3Repo.uri}"
authentication {
auth(BasicAuthentication)
}
}
}
"""
expect:
fails 'retrieve'
and:
failure.assertHasCause("Authentication scheme 'auth'(BasicAuthentication) is not supported by protocol 's3'")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy