blob: eeca60b52f9e042c42349ab4fb06198d77dfddfe [file] [log] [blame]
package org.apache.maven.scm.provider.clearcase.command.checkout;
/*
* 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.ScmTestCase;
import org.codehaus.plexus.util.cli.Commandline;
import java.io.File;
import java.io.IOException;
/**
* @author <a href="mailto:wim.deblauwe@gmail.com">Wim Deblauwe</a>
* @author <a href="mailto:frederic.mura@laposte.net">Frederic Mura</a>
*/
public class ClearCaseCheckOutCommandTest
extends ScmTestCase
{
public void testCreateViewCommandLine()
throws IOException
{
ClearCaseCheckOutCommand.setIsClearCaseLT( false );
Commandline commandLine =
ClearCaseCheckOutCommand.createCreateViewCommandLine( getWorkingDirectory(), "testView" );
System.out.println( "==>cleartool mkview -snapshot -tag testView -vws " +
ClearCaseCheckOutCommand.getViewStore() + "testView.vws " + getWorkingDirectory() );
System.out.println( "==>" + commandLine.toString() );
assertEquals( "cleartool mkview -snapshot -tag testView -vws " + ClearCaseCheckOutCommand.getViewStore() +
"testView.vws " + getWorkingDirectory().getCanonicalPath(), commandLine.toString() );
ClearCaseCheckOutCommand.setUseVWS( false );
commandLine = ClearCaseCheckOutCommand.createCreateViewCommandLine( getWorkingDirectory(), "testView" );
assertEquals( "cleartool mkview -snapshot -tag testView " + getWorkingDirectory().getCanonicalPath(),
commandLine.toString() );
ClearCaseCheckOutCommand.setIsClearCaseLT( true );
ClearCaseCheckOutCommand.setUseVWS( true );
commandLine = ClearCaseCheckOutCommand.createCreateViewCommandLine( getWorkingDirectory(), "testView" );
assertEquals( "cleartool mkview -snapshot -tag testView " + getWorkingDirectory().getCanonicalPath(),
commandLine.toString() );
}
public void testUpdateConfigSpec()
{
ClearCaseCheckOutCommand.setIsClearCaseLT( false );
File configSpecLocation;
if ( System.getProperty( "os.name" ).toLowerCase().indexOf( "windows" ) >= 0 )
{
configSpecLocation = new File( "\\\\myserver\\configspecs\\testconfigspec.txt" );
}
else
{
configSpecLocation = new File( "/clearcase/configspecs/testconfigspec.txt" );
}
Commandline commandLine = ClearCaseCheckOutCommand.createUpdateConfigSpecCommandLine( getWorkingDirectory(),
configSpecLocation,
"testView" );
assertEquals( "cleartool setcs -tag testView " + configSpecLocation, commandLine.toString() );
ClearCaseCheckOutCommand.setIsClearCaseLT( true );
commandLine = ClearCaseCheckOutCommand.createUpdateConfigSpecCommandLine( getWorkingDirectory(),
configSpecLocation, "testView" );
assertEquals( "cleartool setcs -tag testView " + configSpecLocation, commandLine.toString() );
}
}