]> source.dussan.org Git - archiva.git/blob
b7730c94dc6ba14b1373e776e3bb3d76393ed153
[archiva.git] /
1 package org.apache.maven.archiva.webdav;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import junit.framework.TestCase;
23
24 /**
25  * @author <a href="mailto:james@atlassian.com">James William Dumay</a>
26  */
27 public class ArchivaDavResourceLocatorTest extends TestCase
28 {
29     ArchivaDavLocatorFactory factory;
30
31     @Override
32     protected void setUp()
33         throws Exception
34     {
35         super.setUp();
36         factory = new ArchivaDavLocatorFactory();
37     }
38
39     public void testLocatorWithPrefixHref()
40         throws Exception
41     {
42         String prefix = "http://myproxy/";
43         String href = "/repository/internal";
44         ArchivaDavResourceLocator locator = (ArchivaDavResourceLocator)factory.createResourceLocator(prefix, href);
45
46         assertEquals("internal", locator.getRepositoryId());
47         assertEquals("", locator.getWorkspaceName());
48         assertEquals("", locator.getWorkspacePath());
49         assertEquals("http://myproxy/", locator.getPrefix());
50         assertEquals("http://myproxy/repository/internal", locator.getHref(false));
51         assertEquals("http://myproxy/repository/internal/", locator.getHref(true));
52         assertEquals("/repository/internal", locator.getResourcePath());
53         assertEquals("/repository/internal", locator.getRepositoryPath());
54     }
55
56     public void testLocatorWithHrefThatContainsPrefix()
57         throws Exception
58     {
59         String prefix = "http://myproxy/";
60         String href = "http://myproxy/repository/internal";
61         ArchivaDavResourceLocator locator = (ArchivaDavResourceLocator)factory.createResourceLocator(prefix, href);
62
63         assertEquals("internal", locator.getRepositoryId());
64         assertEquals("", locator.getWorkspaceName());
65         assertEquals("", locator.getWorkspacePath());
66         assertEquals("http://myproxy/", locator.getPrefix());
67         assertEquals("http://myproxy/repository/internal", locator.getHref(false));
68         assertEquals("http://myproxy/repository/internal/", locator.getHref(true));
69         assertEquals("repository/internal", locator.getResourcePath());
70         assertEquals("repository/internal", locator.getRepositoryPath());
71     }
72
73     public void testLocatorWithRootHref()
74         throws Exception
75     {
76         String prefix = "http://myproxy/";
77         String href = "/";
78         ArchivaDavResourceLocator locator = (ArchivaDavResourceLocator)factory.createResourceLocator(prefix, href);
79
80         assertEquals("", locator.getRepositoryId());
81         assertEquals("", locator.getWorkspaceName());
82         assertEquals("", locator.getWorkspacePath());
83         assertEquals("http://myproxy/", locator.getPrefix());
84         assertEquals("http://myproxy/", locator.getHref(false));
85         assertEquals("http://myproxy/", locator.getHref(true));
86         assertEquals("/", locator.getResourcePath());
87         assertEquals("/", locator.getRepositoryPath());
88     }
89 }