Package org.apache.maven.scm
Class ScmTestCase
- java.lang.Object
-
- junit.framework.Assert
-
- junit.framework.TestCase
-
- org.codehaus.plexus.PlexusTestCase
-
- org.apache.maven.scm.ScmTestCase
-
- All Implemented Interfaces:
junit.framework.Test
- Direct Known Subclasses:
AbstractCvsScmTest,ScmTckTestCase
public abstract class ScmTestCase extends org.codehaus.plexus.PlexusTestCaseBase class for all scm tests. Consumers will typically extend this class while tck test would extend ScmTckTestCase.
This class basically defines default locations for the test environment and implements convenience methods.- Author:
- Jason van Zyl
-
-
Field Summary
Fields Modifier and Type Field Description protected static TimeZoneGMT_TIME_ZONE
-
Constructor Summary
Constructors Constructor Description ScmTestCase()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidassertCommandLine(String expectedCommand, File expectedWorkingDirectory, org.codehaus.plexus.util.cli.Commandline actualCommand)protected voidassertFile(File root, String fileName)voidassertPath(String expectedPath, String actualPath)TODO This method is bogus.protected voidassertResultIsSuccess(ScmResult result)protected voiddeleteDirectory(File directory)static voidexecute(File workingDirectory, String executable, String arguments)Execute the command lineprotected FilegetAssertionCopy()static DategetDate(int year, int month, int day)protected static DategetDate(int year, int month, int day, int hourOfDay, int minute, int second, TimeZone tz)protected static DategetDate(int year, int month, int day, TimeZone tz)protected StringgetModule()protected FilegetRepository()protected FilegetRepositoryRoot()protected ScmFileSetgetScmFileSet()protected ScmManagergetScmManager()org.sonatype.plexus.components.sec.dispatcher.SecDispatchergetSecDispatcher()If you wish to use this component, make sure to configure your TCK implementation to include plexus component configuration as doc at https://issues.apache.org/jira/browse/MNG-4384protected FilegetUpdatingCopy()protected FilegetWorkingCopy()protected FilegetWorkingDirectory()Legacy method - same as getWorkingCopy()static booleanisSystemCmd(String cmd)protected static voidmakeDirectory(File basedir, String fileName)protected static voidmakeFile(File basedir, String fileName)static voidmakeFile(File basedir, String fileName, String contents)protected ScmRepositorymakeScmRepository(String scmUrl)protected voidprintOutputError(ScmResult result)protected static voidsetDebugExecute(boolean debugExecute)protected voidsetUp()-
Methods inherited from class org.codehaus.plexus.PlexusTestCase
customizeComponentConfiguration, customizeContainerConfiguration, customizeContext, getBasedir, getClassLoader, getConfiguration, getConfiguration, getConfigurationName, getContainer, getCustomConfigurationName, getResourceAsStream, getTestConfiguration, getTestConfiguration, getTestFile, getTestFile, getTestPath, getTestPath, lookup, lookup, lookup, lookup, release, setupContainer, tearDown
-
Methods inherited from class junit.framework.TestCase
assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, countTestCases, createResult, fail, fail, failNotEquals, failNotSame, failSame, format, getName, run, run, runBare, runTest, setName, toString
-
-
-
-
Field Detail
-
GMT_TIME_ZONE
protected static final TimeZone GMT_TIME_ZONE
-
-
Method Detail
-
setUp
protected void setUp() throws Exception- Overrides:
setUpin classorg.codehaus.plexus.PlexusTestCase- Throws:
Exception
-
getModule
protected String getModule()
-
getRepositoryRoot
protected File getRepositoryRoot()
- Returns:
- default location of the test read/write repository
-
getRepository
protected File getRepository()
- Returns:
- Location of the revisioned (read only) repository
-
getWorkingCopy
protected File getWorkingCopy()
- Returns:
- location of the working copy (always checkout)
-
getWorkingDirectory
protected File getWorkingDirectory()
Legacy method - same as getWorkingCopy()- Returns:
- location of the working copy (always checkout)
-
getAssertionCopy
protected File getAssertionCopy()
- Returns:
- default location for doing assertions on a working tree
-
getUpdatingCopy
protected File getUpdatingCopy()
- Returns:
- default location for doing update operations on a working tree
-
getScmManager
protected ScmManager getScmManager() throws Exception
- Throws:
Exception
-
getSecDispatcher
public org.sonatype.plexus.components.sec.dispatcher.SecDispatcher getSecDispatcher() throws ExceptionIf you wish to use this component, make sure to configure your TCK implementation to include plexus component configuration as doc at https://issues.apache.org/jira/browse/MNG-4384- Returns:
- SecDispatcher
- Throws:
Exception
-
makeScmRepository
protected ScmRepository makeScmRepository(String scmUrl) throws Exception
- Throws:
Exception
-
assertPath
public void assertPath(String expectedPath, String actualPath) throws Exception
TODO This method is bogus. ActualPatch is not used and if used, it breaks some unit tests.- Throws:
Exception
-
assertFile
protected void assertFile(File root, String fileName) throws Exception
- Throws:
Exception
-
assertResultIsSuccess
protected void assertResultIsSuccess(ScmResult result)
-
printOutputError
protected void printOutputError(ScmResult result)
-
getScmFileSet
protected ScmFileSet getScmFileSet()
-
setDebugExecute
protected static void setDebugExecute(boolean debugExecute)
-
execute
public static void execute(File workingDirectory, String executable, String arguments) throws Exception
Execute the command line- Parameters:
workingDirectory- not nullexecutable- not null, should be a system commandarguments- not null- Throws:
Exception- if any- See Also:
CommandLineUtils.executeCommandLine(Commandline, org.codehaus.plexus.util.cli.StreamConsumer, org.codehaus.plexus.util.cli.StreamConsumer)
-
makeFile
protected static void makeFile(File basedir, String fileName) throws IOException
- Throws:
IOException
-
makeFile
public static void makeFile(File basedir, String fileName, String contents) throws IOException
- Throws:
IOException
-
deleteDirectory
protected void deleteDirectory(File directory) throws IOException
- Throws:
IOException
-
getDate
public static Date getDate(int year, int month, int day)
-
getDate
protected static Date getDate(int year, int month, int day, int hourOfDay, int minute, int second, TimeZone tz)
-
assertCommandLine
public void assertCommandLine(String expectedCommand, File expectedWorkingDirectory, org.codehaus.plexus.util.cli.Commandline actualCommand) throws IOException
- Throws:
IOException
-
isSystemCmd
public static boolean isSystemCmd(String cmd)
- Parameters:
cmd- the executable to run, not null.- Returns:
true
-
-