package org.apache.archiva.proxy; /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import org.apache.archiva.configuration.*; import org.apache.archiva.components.registry.Registry; import org.apache.archiva.components.registry.RegistryException; import org.apache.archiva.components.registry.RegistryListener; import org.apache.commons.lang3.StringUtils; import org.easymock.EasyMock; import org.easymock.IMocksControl; import org.springframework.stereotype.Service; import javax.annotation.PostConstruct; import java.nio.file.Path; import java.nio.file.Paths; import java.util.*; /** * MockConfiguration * * */ @Service( "archivaConfiguration#mock" ) public class MockConfiguration implements ArchivaConfiguration { private Configuration configuration = new Configuration(); private Set registryListeners = new HashSet(); private Set configListeners = new HashSet(); private IMocksControl registryControl; private Registry registryMock; public MockConfiguration() { registryControl = EasyMock.createNiceControl( ); registryMock = registryControl.createMock( Registry.class ); } @PostConstruct public void initialize() throws Exception { configuration.setRepositoryScanning( new RepositoryScanningConfiguration() { @Override public List getFileTypes() { FileType fileType = new FileType(); fileType.setId( FileTypes.ARTIFACTS ); fileType.setPatterns( Collections.singletonList( "**/*" ) ); return Collections.singletonList( fileType ); } } ); ArchivaRuntimeConfiguration rt = new ArchivaRuntimeConfiguration(); List checksums = new ArrayList<>(); checksums.add("MD5"); checksums.add("SHA1"); checksums.add("SHA256"); rt.setChecksumTypes(checksums); configuration.setArchivaRuntimeConfiguration(rt); } @Override public void addChangeListener( org.apache.archiva.components.registry.RegistryListener listener ) { registryListeners.add( listener ); } @Override public void removeChangeListener( RegistryListener listener ) { registryListeners.remove( listener ); } @Override public Configuration getConfiguration() { return configuration; } @Override public void save( Configuration configuration ) throws RegistryException { /* do nothing */ } @Override public void save( Configuration configuration, String eventTag ) throws RegistryException, IndeterminateConfigurationException { // do nothing } public void triggerChange( String name, String value ) { for ( org.apache.archiva.components.registry.RegistryListener listener : registryListeners ) { try { listener.afterConfigurationChange( registryMock, name, value ); } catch ( Exception e ) { e.printStackTrace(); } } for (ConfigurationListener listener : configListeners) { listener.configurationEvent( new ConfigurationEvent( ConfigurationEvent.CHANGED ) ); } } @Override public void addListener( ConfigurationListener listener ) { configListeners.add( listener ); } @Override public void removeListener( ConfigurationListener listener ) { configListeners.remove( listener ); } @Override public boolean isDefaulted() { return false; } @Override public void reload() { // no op } @Override public Locale getDefaultLocale( ) { return Locale.getDefault(); } @Override public List getLanguagePriorities( ) { return Locale.LanguageRange.parse( "en,fr,de" ); } @Override public Path getAppServerBaseDir() { if (System.getProperties().containsKey("appserver.base")) { return Paths.get(System.getProperty("appserver.base")); } else { return Paths.get(""); } } @Override public Path getRepositoryBaseDir() { return getDataDirectory().resolve("repositories"); } @Override public Path getRemoteRepositoryBaseDir() { return getDataDirectory().resolve("remotes"); } @Override public Path getRepositoryGroupBaseDir() { return getDataDirectory().resolve("groups"); } @Override public Path getDataDirectory() { if (configuration!=null && StringUtils.isNotEmpty(configuration.getArchivaRuntimeConfiguration().getDataDirectory())) { return Paths.get(configuration.getArchivaRuntimeConfiguration().getDataDirectory()); } else { return getAppServerBaseDir().resolve("data"); } } @Override public Registry getRegistry( ) { return null; } }