From 09477b72a9b595753f1ede8af37511077e0487de Mon Sep 17 00:00:00 2001 From: James William Dumay Date: Tue, 6 May 2008 11:32:22 +0000 Subject: [PATCH] MRM-781 * 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-webdav/README-it.could-webdav.txt | 8 --- .../webdav/util/RepositoryPathUtilTest.java | 49 +++++++++++++++++++ 2 files changed, 49 insertions(+), 8 deletions(-) delete mode 100644 archiva-modules/archiva-web/archiva-webdav/README-it.could-webdav.txt create mode 100644 archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/maven/archiva/webdav/util/RepositoryPathUtilTest.java 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 index 5206a3429..000000000 --- a/archiva-modules/archiva-web/archiva-webdav/README-it.could-webdav.txt +++ /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 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 index 000000000..0294b3e29 --- /dev/null +++ b/archiva-modules/archiva-web/archiva-webdav/src/test/java/org/apache/maven/archiva/webdav/util/RepositoryPathUtilTest.java @@ -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 James William Dumay + */ +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)); + } +} -- 2.39.5