blob: f08a27d3346c07c260517e04f5a5e7125bb8e068 [file] [log] [blame]
package org.apache.maven.scm.plugin;
/*
* 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 org.apache.maven.plugin.testing.AbstractMojoTestCase;
import org.apache.maven.scm.ScmTestCase;
import org.apache.maven.scm.provider.svn.SvnScmTestUtils;
import org.codehaus.plexus.util.FileUtils;
import org.junit.Assume;
import java.io.File;
/**
* @author <a href="mailto:evenisse@apache.org">Emmanuel Venisse</a>
*
*/
public class TagMojoTest
extends AbstractMojoTestCase
{
File checkoutDir;
File repository;
protected void setUp()
throws Exception
{
super.setUp();
checkoutDir = getTestFile( "target/checkout" );
FileUtils.forceDelete( checkoutDir );
repository = getTestFile( "target/repository" );
FileUtils.forceDelete( repository );
Assume.assumeTrue( ScmTestCase.isSystemCmd( SvnScmTestUtils.SVNADMIN_COMMAND_LINE ) );
SvnScmTestUtils.initializeRepository( repository );
CheckoutMojo checkoutMojo = (CheckoutMojo) lookupMojo( "checkout", getTestFile(
"src/test/resources/mojos/checkout/checkoutWithConnectionUrl.xml" ) );
checkoutMojo.setWorkingDirectory( new File( getBasedir() ) );
setupConnectionUrl( checkoutMojo );
checkoutMojo.setCheckoutDirectory( checkoutDir );
checkoutMojo.execute();
}
private static void setupConnectionUrl( AbstractScmMojo mojo )
{
String connectionUrl = mojo.getConnectionUrl();
connectionUrl = connectionUrl.replace( "${basedir}", getBasedir() );
connectionUrl = connectionUrl.replace( '\\', '/' );
mojo.setConnectionUrl( connectionUrl );
}
public void testTag()
throws Exception
{
TagMojo mojo = (TagMojo) lookupMojo( "tag", getTestFile( "src/test/resources/mojos/tag/tag.xml" ) );
mojo.setWorkingDirectory( checkoutDir );
setupConnectionUrl( mojo );
mojo.execute();
CheckoutMojo checkoutMojo =
(CheckoutMojo) lookupMojo( "checkout", getTestFile( "src/test/resources/mojos/tag/checkout.xml" ) );
checkoutMojo.setWorkingDirectory( new File( getBasedir() ) );
setupConnectionUrl( checkoutMojo );
File tagCheckoutDir = getTestFile( "target/tags/mytag" );
if ( tagCheckoutDir.exists() )
{
FileUtils.deleteDirectory( tagCheckoutDir );
}
checkoutMojo.setCheckoutDirectory( tagCheckoutDir );
assertFalse( new File( tagCheckoutDir, "pom.xml" ).exists() );
checkoutMojo.execute();
assertTrue( new File( tagCheckoutDir, "pom.xml" ).exists() );
}
public void testTagWithTimestamp()
throws Exception
{
TagMojo mojo =
(TagMojo) lookupMojo( "tag", getTestFile( "src/test/resources/mojos/tag/tagWithTimestamp.xml" ) );
mojo.setWorkingDirectory( checkoutDir );
setupConnectionUrl( mojo );
mojo.execute();
}
}