]> source.dussan.org Git - archiva.git/blob
08a4b22df981f2fe7327cea74d64c64c2a1ded0c
[archiva.git] /
1 package org.apache.archiva.configuration;
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 import org.junit.Before;
24 import org.junit.Test;
25 import org.junit.runner.RunWith;
26 import org.junit.runners.JUnit4;
27
28 import java.io.File;
29 import java.io.FileInputStream;
30 import java.io.IOException;
31 import java.util.Map;
32 import java.util.Properties;
33
34 /**
35  */
36 @RunWith( JUnit4.class )
37 public class MavenProxyPropertyLoaderTest
38     extends TestCase
39 {
40     private MavenProxyPropertyLoader loader;
41
42     @Test
43     public void testLoadValidMavenProxyConfiguration()
44         throws IOException, InvalidConfigurationException
45     {
46         File confFile = ArchivaConfigurationTest.getTestFile( "src/test/conf/maven-proxy-complete.conf" );
47
48         Configuration configuration = new Configuration();
49         NetworkProxyConfiguration proxy = new NetworkProxyConfiguration();
50         proxy.setHost( "original-host" );
51         configuration.addNetworkProxy( proxy ); // overwritten
52
53         loader.load( new FileInputStream( confFile ), configuration );
54
55         Map<String, ManagedRepositoryConfiguration> repositoryIdMap = configuration.getManagedRepositoriesAsMap();
56         assertEquals( "Count repositories", 1, repositoryIdMap.size() );
57         assertRepositoryExists( "maven-proxy", "target", repositoryIdMap.get( "maven-proxy" ) );
58
59         Map<String, RemoteRepositoryConfiguration> remoteRepositoryMap = configuration.getRemoteRepositoriesAsMap();
60         assertEquals( "Count repositories", 4, remoteRepositoryMap.size() );
61         assertRepositoryExists( "local-repo", "file://target", remoteRepositoryMap.get( "local-repo" ) );
62         assertRepositoryExists( "www-ibiblio-org", "http://www.ibiblio.org/maven2",
63                                 remoteRepositoryMap.get( "www-ibiblio-org" ) );
64         assertRepositoryExists( "dist-codehaus-org", "http://dist.codehaus.org",
65                                 remoteRepositoryMap.get( "dist-codehaus-org" ) );
66         assertRepositoryExists( "private-example-com", "http://private.example.com/internal",
67                                 remoteRepositoryMap.get( "private-example-com" ) );
68     }
69
70     private void assertRepositoryExists( String id, String expectedLocation, ManagedRepositoryConfiguration repo )
71     {
72         assertNotNull( "Repository id [" + id + "] should not be null", repo );
73         assertEquals( "Repository id", id, repo.getId() );
74         assertEquals( "Repository url", expectedLocation, repo.getLocation() );
75     }
76
77     private void assertRepositoryExists( String id, String expectedUrl, RemoteRepositoryConfiguration repo )
78     {
79         assertNotNull( "Repository id [" + id + "] should not be null", repo );
80         assertEquals( "Repository id", id, repo.getId() );
81         assertEquals( "Repository url", expectedUrl, repo.getUrl() );
82     }
83
84     @Test
85     public void testInvalidConfiguration()
86     {
87         Configuration configuration = new Configuration();
88         try
89         {
90             loader.load( new Properties(), configuration );
91             fail( "Incomplete config should have failed" );
92         }
93         catch ( InvalidConfigurationException e )
94         {
95             assertTrue( true );
96         }
97     }
98
99     @Before
100     public void setUp()
101         throws Exception
102     {
103         super.setUp();
104         loader = new MavenProxyPropertyLoader();
105     }
106 }