1 package org.apache.archiva.consumers.core;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
22 import org.apache.archiva.common.utils.BaseFile;
23 import org.apache.archiva.configuration.ArchivaConfiguration;
24 import org.apache.archiva.configuration.FileType;
25 import org.apache.archiva.configuration.FileTypes;
26 import org.apache.archiva.consumers.KnownRepositoryContentConsumer;
27 import org.apache.archiva.consumers.functors.ConsumerWantsFilePredicate;
28 import org.apache.archiva.test.utils.ArchivaSpringJUnit4ClassRunner;
29 import org.apache.commons.lang.StringUtils;
30 import org.apache.maven.index.NexusIndexer;
31 import org.apache.maven.index.context.IndexingContext;
32 import org.junit.After;
33 import org.junit.Before;
34 import org.junit.Test;
35 import org.junit.runner.RunWith;
36 import org.springframework.context.ApplicationContext;
37 import org.springframework.test.context.ContextConfiguration;
39 import javax.inject.Inject;
41 import java.nio.file.Path;
42 import java.nio.file.Paths;
44 import static org.junit.Assert.assertEquals;
45 import static org.junit.Assert.assertFalse;
47 @RunWith( ArchivaSpringJUnit4ClassRunner.class )
48 @ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath:/spring-context.xml" } )
49 public abstract class AbstractArtifactConsumerTest
51 private Path repoLocation;
53 protected KnownRepositoryContentConsumer consumer;
56 protected ApplicationContext applicationContext;
59 ArchivaConfiguration archivaConfiguration;
62 protected NexusIndexer nexusIndexer;
70 (FileType) archivaConfiguration.getConfiguration().getRepositoryScanning().getFileTypes().get( 0 );
71 assertEquals( FileTypes.ARTIFACTS, fileType.getId() );
72 fileType.addPattern( "**/*.xml" );
74 repoLocation = Paths.get( "target/test-" + getName() + "/test-repo" );
78 public void tearDown()
81 for ( IndexingContext indexingContext : nexusIndexer.getIndexingContexts().values() )
83 nexusIndexer.removeIndexingContext( indexingContext, false );
89 public void testConsumption()
92 repoLocation.resolve( "org/apache/maven/plugins/maven-plugin-plugin/2.4.1/maven-metadata.xml" );
94 ConsumerWantsFilePredicate predicate = new ConsumerWantsFilePredicate();
95 BaseFile baseFile = new BaseFile( repoLocation.toFile(), localFile.toFile() );
96 predicate.setBasefile( baseFile );
98 assertFalse( predicate.evaluate( consumer ) );
102 public void testConsumptionOfOtherMetadata()
105 repoLocation.resolve( "org/apache/maven/plugins/maven-plugin-plugin/2.4.1/maven-metadata-central.xml" );
107 ConsumerWantsFilePredicate predicate = new ConsumerWantsFilePredicate();
108 BaseFile baseFile = new BaseFile( repoLocation.toFile(), localFile.toFile() );
109 predicate.setBasefile( baseFile );
111 assertFalse( predicate.evaluate( consumer ) );
114 public String getName()
116 return StringUtils.substringAfterLast( getClass().getName(), "." );