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