]> source.dussan.org Git - archiva.git/blob
fb9fe0b8769936c1da93580984015818df329718
[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.*;
23 import org.apache.archiva.components.registry.Registry;
24 import org.apache.archiva.components.registry.RegistryException;
25 import org.apache.archiva.components.registry.RegistryListener;
26 import org.apache.commons.lang3.StringUtils;
27 import org.easymock.EasyMock;
28 import org.easymock.IMocksControl;
29 import org.springframework.stereotype.Service;
30
31 import javax.annotation.PostConstruct;
32 import java.nio.file.Path;
33 import java.nio.file.Paths;
34 import java.util.*;
35
36 /**
37  * MockConfiguration
38  *
39  *
40  */
41 @Service( "archivaConfiguration#mock" )
42 public class MockConfiguration
43     implements ArchivaConfiguration
44 {
45
46     private Configuration configuration = new Configuration();
47
48     private Set<RegistryListener> registryListeners = new HashSet<RegistryListener>();
49
50     private Set<ConfigurationListener> configListeners = new HashSet<ConfigurationListener>();
51
52     private IMocksControl registryControl;
53
54     private Registry registryMock;
55
56     public MockConfiguration()
57     {
58         registryControl = EasyMock.createNiceControl( );
59         registryMock = registryControl.createMock( Registry.class );
60     }
61
62     @PostConstruct
63     public void initialize()
64         throws Exception
65     {
66
67         configuration.setRepositoryScanning( new RepositoryScanningConfiguration()
68         {
69             @Override
70             public List<FileType> getFileTypes()
71             {
72                 FileType fileType = new FileType();
73                 fileType.setId( FileTypes.ARTIFACTS );
74                 fileType.setPatterns( Collections.singletonList( "**/*" ) );
75                 return Collections.singletonList( fileType );
76             }
77         } );
78         ArchivaRuntimeConfiguration rt = new ArchivaRuntimeConfiguration();
79         List<String> checksums = new ArrayList<>();
80         checksums.add("MD5");
81         checksums.add("SHA1");
82         checksums.add("SHA256");
83         rt.setChecksumTypes(checksums);
84         configuration.setArchivaRuntimeConfiguration(rt);
85
86     }
87
88     @Override
89     public void addChangeListener( org.apache.archiva.components.registry.RegistryListener listener )
90     {
91         registryListeners.add( listener );
92     }
93
94
95     @Override
96     public void removeChangeListener( RegistryListener listener )
97     {
98         registryListeners.remove( listener );
99     }
100
101     @Override
102     public Configuration getConfiguration()
103     {
104         return configuration;
105     }
106
107     @Override
108     public void save( Configuration configuration )
109         throws RegistryException
110     {
111         /* do nothing */
112     }
113
114     @Override
115     public void save( Configuration configuration, String eventTag ) throws RegistryException, IndeterminateConfigurationException
116     {
117         // do nothing
118     }
119
120     public void triggerChange( String name, String value )
121     {
122         for ( org.apache.archiva.components.registry.RegistryListener listener : registryListeners )
123         {
124             try
125             {
126                 listener.afterConfigurationChange( registryMock, name, value );
127             }
128             catch ( Exception e )
129             {
130                 e.printStackTrace();
131             }
132         }
133
134         for (ConfigurationListener listener : configListeners) {
135             listener.configurationEvent( new ConfigurationEvent( ConfigurationEvent.CHANGED ) );
136         }
137     }
138
139     @Override
140     public void addListener( ConfigurationListener listener )
141     {
142         configListeners.add( listener );
143     }
144
145     @Override
146     public void removeListener( ConfigurationListener listener )
147     {
148         configListeners.remove( listener );
149     }
150
151     @Override
152     public boolean isDefaulted()
153     {
154         return false;
155     }
156
157     @Override
158     public void reload()
159     {
160         // no op
161     }
162
163     @Override
164     public Locale getDefaultLocale( )
165     {
166         return Locale.getDefault();
167     }
168
169     @Override
170     public List<Locale.LanguageRange> getLanguagePriorities( )
171     {
172         return Locale.LanguageRange.parse( "en,fr,de" );
173     }
174
175     @Override
176     public Path getAppServerBaseDir() {
177         if (System.getProperties().containsKey("appserver.base")) {
178             return Paths.get(System.getProperty("appserver.base"));
179         } else {
180             return Paths.get("");
181         }
182     }
183
184
185     @Override
186     public Path getRepositoryBaseDir() {
187         return getDataDirectory().resolve("repositories");
188     }
189
190     @Override
191     public Path getRemoteRepositoryBaseDir() {
192         return getDataDirectory().resolve("remotes");
193     }
194
195     @Override
196     public Path getRepositoryGroupBaseDir() {
197         return getDataDirectory().resolve("groups");
198     }
199
200     @Override
201     public Path getDataDirectory() {
202         if (configuration!=null && StringUtils.isNotEmpty(configuration.getArchivaRuntimeConfiguration().getDataDirectory())) {
203             return Paths.get(configuration.getArchivaRuntimeConfiguration().getDataDirectory());
204         } else {
205             return getAppServerBaseDir().resolve("data");
206         }
207     }
208 }