]> source.dussan.org Git - archiva.git/blob
e56bf2aa137690f6bba092f8c44b891f425a179d
[archiva.git] /
1 package org.apache.maven.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 org.codehaus.plexus.PlexusTestCase;
23
24 import java.io.File;
25 import java.io.FileInputStream;
26 import java.io.IOException;
27 import java.util.List;
28 import java.util.Properties;
29
30 /**
31  * @author Edwin Punzalan
32  */
33 public class MavenProxyPropertyLoaderTest
34     extends PlexusTestCase
35 {
36     private static final int DEFAULT_CACHE_PERIOD = 3600;
37
38     private MavenProxyPropertyLoader loader;
39
40     public void testLoadValidMavenProxyConfiguration()
41         throws IOException, InvalidConfigurationException
42     {
43         File confFile = getTestFile( "src/test/conf/maven-proxy-complete.conf" );
44
45         Configuration configuration = new Configuration();
46         Proxy proxy = new Proxy();
47         proxy.setHost( "original-host" );
48         configuration.setProxy( proxy ); // overwritten
49         configuration.setIndexPath( "index-path" ); // existing value
50
51         loader.load( new FileInputStream( confFile ), configuration );
52
53         List list = configuration.getRepositories();
54         assertEquals( "check single managed repository", 1, list.size() );
55         RepositoryConfiguration managedRepository = (RepositoryConfiguration) list.iterator().next();
56         assertEquals( "cache path changed", "target", managedRepository.getDirectory() );
57
58         assertEquals( "Count repositories", 4, configuration.getProxiedRepositories().size() );
59
60         list = configuration.getProxiedRepositories();
61         ProxiedRepositoryConfiguration repo = (ProxiedRepositoryConfiguration) list.get( 0 );
62         assertEquals( "Repository name not as expected", "local-repo", repo.getId() );
63         assertEquals( "Repository url does not match its name", "file://target", repo.getUrl() );
64         assertEquals( "Repository cache period check failed", 0, repo.getSnapshotsInterval() );
65         assertFalse( "Repository failure caching check failed", repo.isCacheFailures() );
66
67         repo = (ProxiedRepositoryConfiguration) list.get( 1 );
68         assertEquals( "Repository name not as expected", "www-ibiblio-org", repo.getId() );
69         assertEquals( "Repository url does not match its name", "http://www.ibiblio.org/maven2", repo.getUrl() );
70         assertEquals( "Repository cache period check failed", DEFAULT_CACHE_PERIOD, repo.getSnapshotsInterval() );
71         assertTrue( "Repository failure caching check failed", repo.isCacheFailures() );
72
73         repo = (ProxiedRepositoryConfiguration) list.get( 2 );
74         assertEquals( "Repository name not as expected", "dist-codehaus-org", repo.getId() );
75         assertEquals( "Repository url does not match its name", "http://dist.codehaus.org", repo.getUrl() );
76         assertEquals( "Repository cache period check failed", DEFAULT_CACHE_PERIOD, repo.getSnapshotsInterval() );
77         assertTrue( "Repository failure caching check failed", repo.isCacheFailures() );
78
79         repo = (ProxiedRepositoryConfiguration) list.get( 3 );
80         assertEquals( "Repository name not as expected", "private-example-com", repo.getId() );
81         assertEquals( "Repository url does not match its name", "http://private.example.com/internal", repo.getUrl() );
82         assertEquals( "Repository cache period check failed", DEFAULT_CACHE_PERIOD, repo.getSnapshotsInterval() );
83         assertFalse( "Repository failure caching check failed", repo.isCacheFailures() );
84     }
85
86     public void testInvalidConfiguration()
87     {
88         Configuration configuration = new Configuration();
89         try
90         {
91             loader.load( new Properties(), configuration );
92             fail( "Incomplete config should have failed" );
93         }
94         catch ( InvalidConfigurationException e )
95         {
96             assertTrue( true );
97         }
98     }
99
100     protected void setUp()
101         throws Exception
102     {
103         super.setUp();
104         loader = new MavenProxyPropertyLoader();
105     }
106 }