org.gradle.integtests.publish.maven.SamplesMavenPomGenerationIntegrationTest.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.publish.maven
import groovy.text.SimpleTemplateEngine
import org.custommonkey.xmlunit.Diff
import org.custommonkey.xmlunit.XMLAssert
import org.custommonkey.xmlunit.examples.RecursiveElementNameAndTextQualifier
import org.gradle.integtests.fixtures.AbstractIntegrationTest
import org.gradle.integtests.fixtures.Sample
import org.gradle.test.fixtures.file.TestFile
import org.gradle.util.Resources
import org.hamcrest.Matchers
import org.junit.Assert
import org.junit.Before
import org.junit.Rule
import org.junit.Test
class SamplesMavenPomGenerationIntegrationTest extends AbstractIntegrationTest {
private TestFile pomProjectDir
@Rule public Resources resources = new Resources();
@Rule public final Sample sample = new Sample(testDirectoryProvider, 'maven/pomGeneration')
@Before
void setUp() {
pomProjectDir = sample.dir
using m2 //uploadArchives leaks into local ~/.m2
}
@Test
void "can deploy to local repository"() {
def repo = maven(pomProjectDir.file('pomRepo'))
def module = repo.module('deployGroup', 'mywar', '1.0MVN')
executer.inDirectory(pomProjectDir).withTasks('uploadArchives').run()
compareXmlWithIgnoringOrder(expectedPom('1.0MVN', "deployGroup"), module.pomFile.text)
module.moduleDir.file("mywar-1.0MVN.war").assertIsCopyOf(pomProjectDir.file("target/libs/mywar-1.0.war"))
pomProjectDir.file('build').assertDoesNotExist()
pomProjectDir.file('target').assertIsDir()
}
@Test
void "can install to local repository"() {
def repo = m2.mavenRepo()
def module = repo.module('installGroup', 'mywar', '1.0MVN')
module.moduleDir.deleteDir()
executer.inDirectory(pomProjectDir).withTasks('install').run()
pomProjectDir.file('build').assertDoesNotExist()
pomProjectDir.file('target').assertIsDir()
TestFile installedFile = module.moduleDir.file("mywar-1.0MVN.war")
TestFile installedJavadocFile = module.moduleDir.file("mywar-1.0MVN-javadoc.zip")
TestFile installedPom = module.moduleDir.file("mywar-1.0MVN.pom")
installedFile.assertIsCopyOf(pomProjectDir.file("target/libs/mywar-1.0.war"))
installedJavadocFile.assertIsCopyOf(pomProjectDir.file("target/distributions/mywar-1.0-javadoc.zip"))
installedPom.assertIsFile()
compareXmlWithIgnoringOrder(expectedPom("1.0MVN", "installGroup"), installedPom.text)
}
@Test
void writeNewPom() {
executer.inDirectory(pomProjectDir).withTasks('writeNewPom').run()
compareXmlWithIgnoringOrder(expectedPom(null, null, 'pomGeneration/expectedNewPom.txt'), pomProjectDir.file("target/newpom.xml").text)
}
@Test
void writeDeployerPom() {
String version = '1.0MVN'
String groupId = "deployGroup"
executer.inDirectory(pomProjectDir).withTasks('writeDeployerPom').run()
compareXmlWithIgnoringOrder(expectedPom(version, groupId), pomProjectDir.file("target/deployerpom.xml").text)
}
private String expectedPom(String version, String groupId, String path = 'pomGeneration/expectedPom.txt') {
SimpleTemplateEngine templateEngine = new SimpleTemplateEngine();
String text = resources.getResource(path).text
return templateEngine.createTemplate(text).make(version: version, groupId: groupId)
}
private static void compareXmlWithIgnoringOrder(String expectedXml, String actualXml) {
Diff diff = new Diff(expectedXml, actualXml)
diff.overrideElementQualifier(new RecursiveElementNameAndTextQualifier())
XMLAssert.assertXMLEqual(diff, true);
Assert.assertThat(actualXml, Matchers.startsWith(String.format('')))
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy