blob: 3547f22a467a0a093aa0f9683255d71db406180a [file] [log] [blame]
package org.apache.maven.scm.provider.svn.svnexe.command.branch;
/*
* 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.scm.ScmBranchParameters;
import org.apache.maven.scm.provider.svn.command.branch.SvnBranchCommandTckTest;
import org.apache.maven.scm.provider.svn.repository.SvnScmProviderRepository;
import org.apache.maven.scm.repository.ScmRepository;
import org.codehaus.plexus.util.cli.Commandline;
import java.io.File;
/**
* This test tests the branch command.
*
* @author <a href="mailto:evenisse@apache.org">Emmanuel Venisse</a>
*
*/
public class SvnExeBranchCommandTckTest
extends SvnBranchCommandTckTest
{
//--no-auth-cache
public void testBranchUserNameSvnHttpsRemoteBranchingWithRev()
throws Exception
{
File messageFile = File.createTempFile( "maven-scm", "commit" );
messageFile.deleteOnExit();
ScmBranchParameters scmBranchParameters = new ScmBranchParameters();
scmBranchParameters.setRemoteBranching( true );
scmBranchParameters.setPinExternals( false );
scmBranchParameters.setScmRevision( "2" );
testCommandLine( "scm:svn:https://foo.com/svn/trunk", "svnbranch", messageFile, "user",
"svn --username user --no-auth-cache --non-interactive copy --parents --file " + messageFile.getAbsolutePath()
+ " --encoding UTF-8 --revision 2 https://foo.com/svn/trunk@ https://foo.com/svn/branches/svnbranch@",
scmBranchParameters );
}
public void testBranchUserNameSvnHttpsRemoteBranchingWithRevWithPinExternals()
throws Exception
{
File messageFile = File.createTempFile( "maven-scm", "commit" );
messageFile.deleteOnExit();
ScmBranchParameters scmBranchParameters = new ScmBranchParameters();
scmBranchParameters.setRemoteBranching( true );
scmBranchParameters.setPinExternals( true );
scmBranchParameters.setScmRevision( "2" );
testCommandLine( "scm:svn:https://foo.com/svn/trunk", "svnbranch", messageFile, "user",
"svn --username user --no-auth-cache --non-interactive copy --parents --file " + messageFile.getAbsolutePath()
+ " --encoding UTF-8 --pin-externals --revision 2 https://foo.com/svn/trunk@ https://foo.com/svn/branches/svnbranch@",
scmBranchParameters );
}
public void testBranchUserNameSvnHttpsRemoteBranchingNoRev()
throws Exception
{
File messageFile = File.createTempFile( "maven-scm", "commit" );
messageFile.deleteOnExit();
ScmBranchParameters scmBranchParameters = new ScmBranchParameters();
scmBranchParameters.setRemoteBranching( true );
scmBranchParameters.setPinExternals( false );
testCommandLine( "scm:svn:https://foo.com/svn/trunk", "svnbranch", messageFile, "user",
"svn --username user --no-auth-cache --non-interactive copy --parents --file " + messageFile.getAbsolutePath()
+ " --encoding UTF-8 https://foo.com/svn/trunk@ https://foo.com/svn/branches/svnbranch@", scmBranchParameters );
}
public void testBranchUserNameSvnHttpsRemoteBranchingNoRevWithPinExternals()
throws Exception
{
File messageFile = File.createTempFile( "maven-scm", "commit" );
messageFile.deleteOnExit();
ScmBranchParameters scmBranchParameters = new ScmBranchParameters();
scmBranchParameters.setRemoteBranching( true );
scmBranchParameters.setPinExternals( true );
testCommandLine( "scm:svn:https://foo.com/svn/trunk", "svnbranch", messageFile, "user",
"svn --username user --no-auth-cache --non-interactive copy --parents --file " + messageFile.getAbsolutePath()
+ " --encoding UTF-8 --pin-externals https://foo.com/svn/trunk@ https://foo.com/svn/branches/svnbranch@", scmBranchParameters );
}
public void testBranchUserNameSvnHttps()
throws Exception
{
File messageFile = File.createTempFile( "maven-scm", "commit" );
messageFile.deleteOnExit();
testCommandLine( "scm:svn:https://foo.com/svn/trunk", "svnbranch", messageFile, "user",
"svn --username user --no-auth-cache --non-interactive copy --parents --file " + messageFile.getAbsolutePath()
+ " --encoding UTF-8 . https://foo.com/svn/branches/svnbranch@", null );
}
public void testBranchUserNameSvnSsh()
throws Exception
{
File messageFile = File.createTempFile( "maven-scm", "commit" );
messageFile.deleteOnExit();
testCommandLine( "scm:svn:svn+ssh://foo.com/svn/trunk", "svnbranch", messageFile, "user",
"svn --username user --no-auth-cache --non-interactive copy --parents --file " + messageFile.getAbsolutePath()
+ " --encoding UTF-8 . svn+ssh://user@foo.com/svn/branches/svnbranch@" );
}
private void testCommandLine( String scmUrl, String branch, File messageFile, String user, String commandLine,
ScmBranchParameters scmBranchParameters )
throws Exception
{
File workingDirectory = getTestFile( "target/svn-update-command-test" );
ScmRepository repository = getScmManager().makeScmRepository( scmUrl );
SvnScmProviderRepository svnRepository = (SvnScmProviderRepository) repository.getProviderRepository();
svnRepository.setUser( user );
Commandline cl = null;
if ( scmBranchParameters == null )
{
cl = SvnBranchCommand.createCommandLine( svnRepository, workingDirectory, branch, messageFile );
}
else
{
cl = SvnBranchCommand.createCommandLine( svnRepository, workingDirectory, branch, messageFile,
scmBranchParameters );
}
assertCommandLine( commandLine, workingDirectory, cl );
}
private void testCommandLine( String scmUrl, String branch, File messageFile, String user, String commandLine )
throws Exception
{
testCommandLine( scmUrl, branch, messageFile, user, commandLine, null );
}
}