blob: 3fd563e4897e492565df50237ca8cc5f1ca8bde6 [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.provider.svn.SvnScmTestUtils;
import org.codehaus.plexus.util.FileUtils;
import org.codehaus.plexus.util.StringUtils;
import java.io.File;
/**
* @author <a href="mailto:evenisse@apache.org">Emmanuel Venisse</a>
* @version $Id$
*/
public class BranchMojoTest
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 );
SvnScmTestUtils.initializeRepository( repository );
CheckoutMojo checkoutMojo = (CheckoutMojo) lookupMojo( "checkout", getTestFile(
"src/test/resources/mojos/checkout/checkoutWithConnectionUrl.xml" ) );
checkoutMojo.setWorkingDirectory( new File( getBasedir() ) );
String connectionUrl = checkoutMojo.getConnectionUrl();
connectionUrl = StringUtils.replace( connectionUrl, "${basedir}", getBasedir() );
connectionUrl = StringUtils.replace( connectionUrl, "\\", "/" );
checkoutMojo.setConnectionUrl( connectionUrl );
checkoutMojo.setCheckoutDirectory( checkoutDir );
checkoutMojo.execute();
}
public void testBranch()
throws Exception
{
BranchMojo mojo =
(BranchMojo) lookupMojo( "branch", getTestFile( "src/test/resources/mojos/branch/branch.xml" ) );
mojo.setWorkingDirectory( checkoutDir );
String connectionUrl = mojo.getConnectionUrl();
connectionUrl = StringUtils.replace( connectionUrl, "${basedir}", getBasedir() );
connectionUrl = StringUtils.replace( connectionUrl, "\\", "/" );
mojo.setConnectionUrl( connectionUrl );
mojo.execute();
CheckoutMojo checkoutMojo =
(CheckoutMojo) lookupMojo( "checkout", getTestFile( "src/test/resources/mojos/branch/checkout.xml" ) );
checkoutMojo.setWorkingDirectory( new File( getBasedir() ) );
connectionUrl = checkoutMojo.getConnectionUrl();
connectionUrl = StringUtils.replace( connectionUrl, "${basedir}", getBasedir() );
connectionUrl = StringUtils.replace( connectionUrl, "\\", "/" );
checkoutMojo.setConnectionUrl( connectionUrl );
File branchCheckoutDir = getTestFile( "target/branches/mybranch" );
if ( branchCheckoutDir.exists() )
{
FileUtils.deleteDirectory( branchCheckoutDir );
}
checkoutMojo.setCheckoutDirectory( branchCheckoutDir );
assertFalse( new File( branchCheckoutDir, "pom.xml" ).exists() );
checkoutMojo.execute();
assertTrue( new File( branchCheckoutDir, "pom.xml" ).exists() );
}
}