org.gradle.api.publish.maven.MavenPublishSftpIntegrationTest.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.api.publish.maven
import org.gradle.integtests.fixtures.publish.maven.AbstractMavenPublishIntegTest
import org.gradle.test.fixtures.server.sftp.MavenSftpRepository
import org.gradle.test.fixtures.server.sftp.SFTPServer
import org.junit.Rule
class MavenPublishSftpIntegrationTest extends AbstractMavenPublishIntegTest {
@Rule
final SFTPServer server = new SFTPServer(temporaryFolder)
MavenSftpRepository getMavenSftpRepo() {
new MavenSftpRepository(server, '/repo')
}
def "can publish to a SFTP repository"() {
given:
def mavenSftpRepo = getMavenSftpRepo()
def module = mavenSftpRepo.module('org.group.name', 'publish', '2')
settingsFile << 'rootProject.name = "publish"'
buildFile << """
apply plugin: 'java'
apply plugin: 'maven-publish'
version = '2'
group = 'org.group.name'
publishing {
repositories {
maven {
url "${mavenSftpRepo.uri}"
credentials {
username 'sftp'
password 'sftp'
}
}
}
publications {
maven(MavenPublication) {
from components.java
}
}
}
"""
when:
module.artifact.expectParentMkdir()
module.artifact.expectFileUpload()
// TODO - should not check on each upload to a particular directory
module.artifact.sha1.expectParentCheckdir()
module.artifact.sha1.expectFileUpload()
module.artifact.md5.expectParentCheckdir()
module.artifact.md5.expectFileUpload()
module.rootMavenMetadata.expectLstatMissing()
module.rootMavenMetadata.expectParentCheckdir()
module.rootMavenMetadata.expectFileUpload()
module.rootMavenMetadata.sha1.expectParentCheckdir()
module.rootMavenMetadata.sha1.expectFileUpload()
module.rootMavenMetadata.md5.expectParentCheckdir()
module.rootMavenMetadata.md5.expectFileUpload()
module.pom.expectParentCheckdir()
module.pom.expectFileUpload()
module.pom.sha1.expectParentCheckdir()
module.pom.sha1.expectFileUpload()
module.pom.md5.expectParentCheckdir()
module.pom.md5.expectFileUpload()
and:
succeeds 'publish'
then:
module.backingModule.assertPublishedAsJavaModule()
module.parsedPom.scopes.isEmpty()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy