]> source.dussan.org Git - archiva.git/blob
9caaaf70e0e4fef3d54c33498c70865f6d2809f0
[archiva.git] /
1 package org.apache.maven.archiva.proxy;
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.apache.maven.archiva.configuration.FileType;
26 import org.apache.maven.archiva.configuration.FileTypes;
27 import org.apache.maven.archiva.configuration.RepositoryScanningConfiguration;
28 import org.codehaus.plexus.registry.Registry;
29 import org.codehaus.plexus.registry.RegistryException;
30 import org.codehaus.plexus.registry.RegistryListener;
31 import org.easymock.MockControl;
32 import org.springframework.stereotype.Service;
33
34 import java.util.Collections;
35 import java.util.HashSet;
36 import java.util.List;
37 import java.util.Set;
38 import javax.annotation.PostConstruct;
39
40 /**
41  * MockConfiguration
42  *
43  * @version $Id$
44  *          <p/>
45  *          plexus.component role="org.apache.maven.archiva.configuration.ArchivaConfiguration"
46  *          role-hint="mock"
47  */
48 @Service( "archivaConfiguration#mock" )
49 public class MockConfiguration
50     implements ArchivaConfiguration
51 {
52
53     private Configuration configuration = new Configuration();
54
55     private Set<RegistryListener> registryListeners = new HashSet<RegistryListener>();
56
57     private Set<ConfigurationListener> configListeners = new HashSet<ConfigurationListener>();
58
59     private MockControl registryControl;
60
61     private Registry registryMock;
62
63     public MockConfiguration()
64     {
65         registryControl = MockControl.createNiceControl( Registry.class );
66         registryMock = (Registry) registryControl.getMock();
67     }
68
69     @PostConstruct
70     public void initialize()
71         throws Exception
72     {
73
74         configuration.setRepositoryScanning( new RepositoryScanningConfiguration()
75         {
76             @Override
77             public List<FileType> getFileTypes()
78             {
79                 FileType fileType = new FileType();
80                 fileType.setId( FileTypes.ARTIFACTS );
81                 fileType.setPatterns( Collections.singletonList( "**/*" ) );
82                 return Collections.singletonList( fileType );
83             }
84         } );
85     }
86
87     public void addChangeListener( RegistryListener listener )
88     {
89         registryListeners.add( listener );
90     }
91
92     public Configuration getConfiguration()
93     {
94         return configuration;
95     }
96
97     public void save( Configuration configuration )
98         throws RegistryException
99     {
100         /* do nothing */
101     }
102
103     public void triggerChange( String name, String value )
104     {
105         for ( RegistryListener listener : registryListeners )
106         {
107             try
108             {
109                 listener.afterConfigurationChange( registryMock, name, value );
110             }
111             catch ( Exception e )
112             {
113                 e.printStackTrace();
114             }
115         }
116     }
117
118     public void addListener( ConfigurationListener listener )
119     {
120         configListeners.add( listener );
121     }
122
123     public void removeListener( ConfigurationListener listener )
124     {
125         configListeners.remove( listener );
126     }
127
128     public boolean isDefaulted()
129     {
130         return false;
131     }
132
133     public void reload()
134     {
135         // no op
136     }
137 }