blob: d5fc34d9a6c8bc0c724caba0630e82ea47ce38b8 [file] [log] [blame]
package org.apache.maven.plugin.project.deploy;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import static org.junit.Assert.assertTrue;
import java.io.File;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import io.takari.maven.testing.TestResources;
import io.takari.maven.testing.executor.MavenExecutionResult;
import io.takari.maven.testing.executor.MavenRuntime;
import io.takari.maven.testing.executor.MavenRuntime.MavenRuntimeBuilder;
import io.takari.maven.testing.executor.MavenVersions;
import io.takari.maven.testing.executor.junit.MavenJUnitTestRunner;
/**
* This will check if the ProjectDeployer works for all Maven versions 3.0.5, 3.1.1, 3.2.5, 3.3.1, 3.3.9, 3.5.0, 3.5.2,
* 3.5.3. This is done by using the test plugin <code>maven-project-deployer-plugin</code> which uses the
* ProjectDeplyoer as component. By using this way we get a real runtime environment which supports all Maven versions.
*
* @author Karl Heinz Marbaise
*/
@RunWith( MavenJUnitTestRunner.class )
@MavenVersions( { "3.0.5", "3.1.1", "3.2.5", "3.3.1", "3.3.9", "3.5.0", "3.5.2", "3.5.3", "3.5.4" } )
public class ProjectDeployerTest
{
@Rule
public final TestResources resources = new TestResources();
public final MavenRuntime mavenRuntime;
public ProjectDeployerTest( MavenRuntimeBuilder builder )
throws Exception
{
this.mavenRuntime = builder.build();
}
@Test
public void buildExample()
throws Exception
{
File basedir = resources.getBasedir( "example" );
//@formatter:off
MavenExecutionResult result =
mavenRuntime
.forProject( basedir )
.withCliOption( "-DmvnVersion=" + mavenRuntime.getMavenVersion() ) // Might be superfluous
.withCliOption( "-B" )
.withCliOption( "-V" )
// We use verify to prevent running maven-install-plugin.
.execute( "clean", "verify" );
//@formatter:on
result.assertErrorFreeLog();
// Check that the current plugins has been called at least once.
result.assertLogText( "[INFO] --- maven-project-deployer-plugin:1.0.0:project-deployer (id-project-deployer) @ maven-project-deployer-plugin-it ---" );
String mvnVersion = mavenRuntime.getMavenVersion() + "/";
// The "." will be replaced by "/" in the running of the artifact-installer-plugin so I need to do the same
// here.
// Maybe there is a more elegant way to do that?
mvnVersion = mvnVersion.replaceAll( "\\.", "/" );
String mavenRepoLocal = System.getProperty( "maven.repo.local" );
File localRepo = new File( mavenRepoLocal );
System.out.println( "localRepo='" + localRepo.getAbsolutePath() + "'" );
System.out.println( "mvnVersion='" + mvnVersion + "'" );
// Thats needed cause the transfer of other variables seemed to be not working (Or I do something wrong).
File repositoryBase = new File( localRepo.getParent(), "dist" );
File baseDirectoy =
new File( repositoryBase, "PROJECT-DEPLOYER-GROUPID-" + mvnVersion + "maven-project-deployer-plugin-it/" );
checkForMetadata( baseDirectoy );
baseDirectoy = new File( baseDirectoy, "1.0.0-A" );
checkForPomFile( baseDirectoy );
checkForJarFile( baseDirectoy );
checkForJarClassifierFile( baseDirectoy );
}
private void checkForMetadata( File baseDirectoy )
{
File metadataFile = new File( baseDirectoy, "maven-metadata.xml" );
assertTrue( "metadataFile '" + metadataFile.getAbsolutePath() + "'", metadataFile.exists() );
assertTrue( "metadataFile md5 not found.", new File( metadataFile.getAbsolutePath() + ".md5" ).exists() );
assertTrue( "metadataFile sha1 not found.", new File( metadataFile.getAbsolutePath() + ".sha1" ).exists() );
}
private void checkForJarClassifierFile( File baseDirectoy )
{
File jarClassifierFile = new File( baseDirectoy, "maven-project-deployer-plugin-it-1.0.0-A-classifier.jar" );
assertTrue( "jarClassifierFile '" + jarClassifierFile.getAbsolutePath() + "'", jarClassifierFile.exists() );
assertTrue( "jarClassifier md5 not found.", new File( jarClassifierFile.getAbsolutePath() + ".md5" ).exists() );
assertTrue( "jarClassifier sha1 not found.",
new File( jarClassifierFile.getAbsolutePath() + ".sha1" ).exists() );
}
private void checkForJarFile( File baseDirectoy )
{
File jarFile = new File( baseDirectoy, "maven-project-deployer-plugin-it-1.0.0-A.jar" );
assertTrue( "jarFile '" + jarFile.getAbsolutePath() + "'", jarFile.exists() );
assertTrue( "jar md5 not found.", new File( jarFile.getAbsolutePath() + ".md5" ).exists() );
assertTrue( "jar sha1 not found.", new File( jarFile.getAbsolutePath() + ".sha1" ).exists() );
}
private void checkForPomFile( File baseDirectoy )
{
File pomFile = new File( baseDirectoy, "maven-project-deployer-plugin-it-1.0.0-A.pom" );
assertTrue( "pomFile '" + pomFile.getAbsolutePath() + "'", pomFile.exists() );
assertTrue( "pom md5 not found.", new File( pomFile.getAbsolutePath() + ".md5" ).exists() );
assertTrue( "pom sha1 not found.", new File( pomFile.getAbsolutePath() + ".sha1" ).exists() );
}
}