]> source.dussan.org Git - archiva.git/commitdiff
add test
authorBrett Porter <brett@apache.org>
Tue, 29 Nov 2005 02:25:03 +0000 (02:25 +0000)
committerBrett Porter <brett@apache.org>
Tue, 29 Nov 2005 02:25:03 +0000 (02:25 +0000)
PR: MRM-9

git-svn-id: https://svn.apache.org/repos/asf/maven/repository-manager/trunk@349590 13f79535-47bb-0310-9956-ffa450edef68

maven-repository-discovery/pom.xml
maven-repository-discovery/src/test/java/org/apache/maven/repository/discovery/DefaultArtifactDiscovererTest.java [new file with mode: 0644]
maven-repository-discovery/src/test/repository/KEYS [new file with mode: 0644]

index 651c4f4e225e7cca8f94f3ad15971cd60aae5739..48b1abb4f273e7b48c50dc78576e7829d1754613 100755 (executable)
       <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>
diff --git a/maven-repository-discovery/src/test/java/org/apache/maven/repository/discovery/DefaultArtifactDiscovererTest.java b/maven-repository-discovery/src/test/java/org/apache/maven/repository/discovery/DefaultArtifactDiscovererTest.java
new file mode 100644 (file)
index 0000000..ce2d1ab
--- /dev/null
@@ -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 );
+    }
+}
diff --git a/maven-repository-discovery/src/test/repository/KEYS b/maven-repository-discovery/src/test/repository/KEYS
new file mode 100644 (file)
index 0000000..d3b34d5
--- /dev/null
@@ -0,0 +1 @@
+test KEYS file
\ No newline at end of file