]> source.dussan.org Git - archiva.git/blob
713d5bb13b380d292597561d1a9fd3e7f56fe72b
[archiva.git] /
1 package org.apache.maven.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 import org.apache.maven.archiva.configuration.ArchivaConfiguration;
23 import org.apache.maven.archiva.configuration.Configuration;
24 import org.apache.maven.archiva.configuration.ConfigurationListener;
25 import org.codehaus.plexus.registry.Registry;
26 import org.codehaus.plexus.registry.RegistryException;
27 import org.codehaus.plexus.registry.RegistryListener;
28 import org.easymock.MockControl;
29 import org.springframework.stereotype.Service;
30
31 import java.util.HashSet;
32 import java.util.Set;
33
34 /**
35  * MockConfiguration 
36  *
37  * @version $Id$
38  * 
39  * plexus.component role="org.apache.maven.archiva.configuration.ArchivaConfiguration"
40  *                   role-hint="mock"
41  */
42 @Service("archivaConfiguration#mock")
43 public class MockConfiguration
44     implements ArchivaConfiguration
45 {
46     private Configuration configuration = new Configuration();
47
48     private Set<RegistryListener> registryListeners = new HashSet<RegistryListener>();
49     private Set<ConfigurationListener> configListeners = new HashSet<ConfigurationListener>();
50
51     private MockControl registryControl;
52
53     private Registry registryMock;
54
55     public MockConfiguration()
56     {
57         registryControl = MockControl.createNiceControl( Registry.class );
58         registryMock = (Registry) registryControl.getMock();
59     }
60
61     public void addChangeListener( RegistryListener listener )
62     {
63         registryListeners.add( listener );
64     }
65
66     public Configuration getConfiguration()
67     {
68         return configuration;
69     }
70
71     public void save( Configuration configuration )
72         throws RegistryException
73     {
74         /* do nothing */
75     }
76
77     public void triggerChange( String name, String value )
78     {
79         for(RegistryListener listener: registryListeners)
80         {
81             try
82             {
83                 listener.afterConfigurationChange( registryMock, name, value );
84             }
85             catch ( Exception e )
86             {
87                 e.printStackTrace();
88             }
89         }
90     }
91
92     public void addListener( ConfigurationListener listener )
93     {
94         configListeners.add(listener);
95     }
96
97     public void removeListener( ConfigurationListener listener )
98     {
99         configListeners.remove( listener );
100     }
101     
102     public boolean isDefaulted()
103     {
104         return false;
105     }
106
107     public void reload()
108     {
109         // no op
110     }
111 }