mirror of https://github.com/apache/archiva.git
add test
PR: MRM-9 git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@349590 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
41c7634b39
commit
7f0762951b
|
@ -22,4 +22,18 @@
|
|||
<artifactId>maven-artifact</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<!-- TODO: why are these needed? -->
|
||||
<reporting>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-clover-plugin</artifactId>
|
||||
<configuration>
|
||||
<flushPolicy>threaded</flushPolicy>
|
||||
<flushInterval>100</flushInterval>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</reporting>
|
||||
|
||||
</project>
|
||||
|
|
|
@ -0,0 +1,70 @@
|
|||
package org.apache.maven.repository.discovery;
|
||||
|
||||
/*
|
||||
* Copyright 2001-2005 The Apache Software Foundation.
|
||||
*
|
||||
* Licensed 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.codehaus.plexus.PlexusTestCase;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Test the default artifact discoverer.
|
||||
*
|
||||
* @author <a href="mailto:brett@apache.org">Brett Porter</a>
|
||||
* @version $Id$
|
||||
*/
|
||||
public class DefaultArtifactDiscovererTest
|
||||
extends PlexusTestCase
|
||||
{
|
||||
private ArtifactDiscoverer discoverer;
|
||||
|
||||
private File repositoryLocation;
|
||||
|
||||
protected void setUp()
|
||||
throws Exception
|
||||
{
|
||||
super.setUp();
|
||||
|
||||
discoverer = (ArtifactDiscoverer) lookup( ArtifactDiscoverer.ROLE, "default" );
|
||||
|
||||
repositoryLocation = getTestFile( "src/test/repository" );
|
||||
}
|
||||
|
||||
public void testDefaultExcludes()
|
||||
{
|
||||
List artifacts = discoverer.discoverArtifacts( repositoryLocation, null, false );
|
||||
assertNotNull( "Check artifacts returned", artifacts );
|
||||
assertTrue( "Check no artifacts returned", artifacts.isEmpty() );
|
||||
boolean found = false;
|
||||
for ( Iterator i = discoverer.getExcludedPathsIterator(); i.hasNext(); )
|
||||
{
|
||||
String path = (String) i.next();
|
||||
|
||||
if ( !path.startsWith( ".svn" ) )
|
||||
{
|
||||
assertEquals( "Check the excluded path", "KEYS", path );
|
||||
if ( found )
|
||||
{
|
||||
fail( "KEYS entry found twice" );
|
||||
}
|
||||
found = true;
|
||||
}
|
||||
}
|
||||
assertTrue( "Check exclusion was found", found );
|
||||
}
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
test KEYS file
|
Loading…
Reference in New Issue