]> source.dussan.org Git - archiva.git/commitdiff
MRM-781
authorJames William Dumay <jdumay@apache.org>
Tue, 6 May 2008 11:32:22 +0000 (11:32 +0000)
committerJames William Dumay <jdumay@apache.org>
Tue, 6 May 2008 11:32:22 +0000 (11:32 +0000)
* Tests for RepositoryPathUtil
* Remove itcould webdav readme

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@653748 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-web/archiva-webdav/README-it.could-webdav.txt [deleted file]
archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/maven/archiva/webdav/util/RepositoryPathUtilTest.java [new file with mode: 0644]

diff --git a/archiva-modules/archiva-web/archiva-webdav/README-it.could-webdav.txt b/archiva-modules/archiva-web/archiva-webdav/README-it.could-webdav.txt
deleted file mode 100644 (file)
index 5206a34..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-This library contains the patched sources to the it.could simple WebDAV library r280, licensed under the Apache License 2.0.
-
-http://could.it/main/a-simple-approach-to-webdav.html
-
-To later return to a released version (after the patches have been incorporated and released):
-- remove src/main/java/it and src/main/java/org/betaversion
-- remove <build> <resources> from the POM
-- replace the servlet-api dependency in the POM with it.could webdav.
diff --git a/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/maven/archiva/webdav/util/RepositoryPathUtilTest.java b/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/maven/archiva/webdav/util/RepositoryPathUtilTest.java
new file mode 100644 (file)
index 0000000..0294b3e
--- /dev/null
@@ -0,0 +1,49 @@
+package org.apache.maven.archiva.webdav.util;
+
+/*
+ * 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 junit.framework.TestCase;
+
+/**
+ * @author <a href="mailto:james@atlassian.com">James William Dumay</a>
+ */
+public class RepositoryPathUtilTest extends TestCase
+{
+    public void testGetRepositoryId()
+    {
+        String href = "/path/to/my/resource";
+        assertEquals("to", RepositoryPathUtil.getRepositoryName(href));
+
+        href = "path/to/my/resource";
+        assertEquals("to", RepositoryPathUtil.getRepositoryName(href));
+
+        href = "mypath";
+        assertEquals("/", RepositoryPathUtil.getLogicalResource(href));
+    }
+
+    public void testGetLogicalPath()
+    {
+        String href = "/repository/internal/org/apache/maven/someartifact.jar";
+        assertEquals("/org/apache/maven/someartifact.jar", RepositoryPathUtil.getLogicalResource(href));
+
+        href = "repository/internal/org/apache/maven/someartifact.jar";
+        assertEquals("/org/apache/maven/someartifact.jar", RepositoryPathUtil.getLogicalResource(href));
+    }
+}