org.gradle.api.publish.ivy.IvyPublishDescriptorCustomizationIntegTest.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 2012 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.ivy
import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
import spock.lang.IgnoreIf
import spock.lang.Unroll
import javax.xml.namespace.QName
import org.gradle.test.fixtures.ivy.IvyDescriptor
class IvyPublishDescriptorCustomizationIntegTest extends AbstractIvyPublishIntegTest {
def module = ivyRepo.module("org.gradle", "publish", "2")
def setup() {
settingsFile << """
rootProject.name = "${module.module}"
"""
buildFile << """
apply plugin: 'java'
apply plugin: 'ivy-publish'
version = '${module.revision}'
group = '${module.organisation}'
publishing {
repositories {
ivy { url "${ivyRepo.uri}" }
}
publications {
ivy(IvyPublication) {
from components.java
}
}
}
"""
}
@IgnoreIf({GradleContextualExecuter.parallel})
def "can customize descriptor xml during publication"() {
when:
succeeds 'publish'
then:
":jar" in executedTasks
and:
module.parsedIvy.revision == "2"
when:
buildFile << """
publishing {
publications {
ivy {
descriptor {
status "custom-status"
branch "custom-branch"
extraInfo 'http://my.extra.info1', 'foo', 'fooValue'
extraInfo 'http://my.extra.info2', 'bar', 'barValue'
withXml {
asNode().info[0].@resolver = 'test'
}
}
}
}
}
"""
succeeds 'publish'
then:
":jar" in skippedTasks
and:
module.parsedIvy.resolver == "test"
module.parsedIvy.status == "custom-status"
module.parsedIvy.branch == "custom-branch"
module.parsedIvy.extraInfo.size() == 2
module.parsedIvy.extraInfo[new QName('http://my.extra.info1', 'foo')] == 'fooValue'
module.parsedIvy.extraInfo[new QName('http://my.extra.info2', 'bar')] == 'barValue'
}
def "can generate ivy.xml without publishing"() {
given:
def moduleName = module.module
buildFile << """
model {
tasks.generateDescriptorFileForIvyPublication {
destination = 'generated-ivy.xml'
}
}
"""
when:
succeeds 'generateDescriptorFileForIvyPublication'
then:
file('generated-ivy.xml').assertIsFile()
IvyDescriptor ivy = new IvyDescriptor(file('generated-ivy.xml'))
ivy.expectArtifact(moduleName).hasAttributes("jar", "jar", ["runtime"])
module.ivyFile.assertDoesNotExist()
}
def "produces sensible error when withXML fails"() {
when:
buildFile << """
publishing {
publications {
ivy {
descriptor.withXml {
asNode().foo = "3"
}
}
}
}
"""
fails 'publish'
then:
failure.assertHasDescription("Execution failed for task ':generateDescriptorFileForIvyPublication'.")
failure.assertHasFileName("Build file '${buildFile}'")
failure.assertHasLineNumber(23)
failure.assertHasCause("Could not apply withXml() to Ivy module descriptor")
failure.assertHasCause("No such property: foo for class: groovy.util.Node")
}
def "produces sensible error when withXML modifies publication coordinates"() {
when:
buildFile << """
publishing {
publications {
ivy {
descriptor.withXml {
asNode().info[0].@revision = "2.1"
}
}
}
}
"""
fails 'publish'
then:
failure.assertHasDescription("Execution failed for task ':publishIvyPublicationToIvyRepository'.")
failure.assertHasCause("Failed to publish publication 'ivy' to repository 'ivy'")
failure.assertHasCause("Invalid publication 'ivy': supplied revision does not match ivy descriptor (cannot edit revision directly in the ivy descriptor file).")
}
@Unroll
def "produces sensible error with invalid extra info elements" () {
buildFile << """
publishing {
publications {
ivy {
descriptor {
extraInfo 'http://my.extra.info', '${sq(name)}', 'fooValue'
}
}
}
}
"""
when:
fails 'publish'
then:
failure.assertHasDescription("A problem occurred configuring root project 'publish'.")
failure.assertHasCause("Exception thrown while executing model rule: PublishingPlugin.Rules#publishing")
failure.assertHasCause("Invalid ivy extra info element name: '${name}'")
where:
name | _
'' | _
'foo\\n' | _
'foo<' | _
'1foo' | _
}
@Unroll
def "produces sensible error with extra info containing null values" () {
buildFile << """
publishing {
publications {
ivy {
descriptor {
extraInfo ${namespace}, ${name}, 'fooValue'
}
}
}
}
"""
when:
fails 'publish'
then:
failure.assertHasDescription("A problem occurred configuring root project 'publish'.")
failure.assertHasFileName("Build file '${buildFile}'")
failure.assertHasLineNumber(23)
failure.assertHasCause("Cannot add an extra info element with null ")
where:
namespace | name
null | "'foo'"
"'http://my.extra.info'" | null
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy