]> source.dussan.org Git - archiva.git/blob
83267d14c9c37e811d691e50fb7d4d5f9b7a7d50
[archiva.git] /
1 package org.apache.archiva.repository;
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
23 import org.apache.archiva.model.RepositoryURL;
24
25 import java.net.MalformedURLException;
26
27 import junit.framework.TestCase;
28
29 /**
30  * RepositoryURLTest 
31  *
32  * @version $Id$
33  */
34 public class RepositoryURLTest
35     extends TestCase
36 {
37     private void assertURL( String actualURL, String protocol, String username, String password, String hostname,
38                             String port, String path )
39     {
40         RepositoryURL url = new RepositoryURL( actualURL );
41
42         assertEquals( protocol, url.getProtocol() );
43         assertEquals( username, url.getUsername() );
44         assertEquals( password, url.getPassword() );
45         assertEquals( hostname, url.getHost() );
46         assertEquals( port, url.getPort() );
47         assertEquals( path, url.getPath() );
48     }
49
50     public void testProtocolHttp()
51         throws MalformedURLException
52     {
53         assertURL( "http://localhost/path/to/resource.txt", "http", null, null, "localhost", null,
54                    "/path/to/resource.txt" );
55     }
56
57     public void testProtocolWagonWebdav()
58         throws MalformedURLException
59     {
60         assertURL( "dav:http://localhost/path/to/resource.txt", "dav:http", null, null, "localhost", null,
61                    "/path/to/resource.txt" );
62     }
63
64     public void testProtocolHttpWithPort()
65         throws MalformedURLException
66     {
67         assertURL( "http://localhost:9090/path/to/resource.txt", "http", null, null, "localhost", "9090",
68                    "/path/to/resource.txt" );
69     }
70
71     public void testProtocolHttpWithUsername()
72         throws MalformedURLException
73     {
74         assertURL( "http://user@localhost/path/to/resource.txt", "http", "user", null, "localhost", null,
75                    "/path/to/resource.txt" );
76     }
77
78     public void testProtocolHttpWithUsernamePassword()
79         throws MalformedURLException
80     {
81         assertURL( "http://user:pass@localhost/path/to/resource.txt", "http", "user", "pass", "localhost", null,
82                    "/path/to/resource.txt" );
83     }
84
85     public void testProtocolHttpWithUsernamePasswordPort()
86         throws MalformedURLException
87     {
88         assertURL( "http://user:pass@localhost:9090/path/to/resource.txt", "http", "user", "pass", "localhost", "9090",
89                    "/path/to/resource.txt" );
90     }
91 }