+++ /dev/null
-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.
--- /dev/null
+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));
+ }
+}