]> source.dussan.org Git - archiva.git/blob
dae8575e472f421d23aa2b52c82ba4ae66ae65b3
[archiva.git] /
1 package org.apache.archiva.consumers.core;
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.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.junit.Before;
31 import org.junit.Test;
32 import org.junit.runner.RunWith;
33 import org.springframework.context.ApplicationContext;
34 import org.springframework.test.context.ContextConfiguration;
35
36 import javax.inject.Inject;
37 import java.nio.file.Path;
38 import java.nio.file.Paths;
39
40 import static org.junit.Assert.assertEquals;
41 import static org.junit.Assert.assertFalse;
42
43 @RunWith( ArchivaSpringJUnit4ClassRunner.class )
44 @ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath:/spring-context.xml" } )
45 public abstract class AbstractArtifactConsumerTest
46 {
47     private Path repoLocation;
48
49     protected KnownRepositoryContentConsumer consumer;
50
51     @Inject
52     protected ApplicationContext applicationContext;
53
54     @Inject
55     ArchivaConfiguration archivaConfiguration;
56
57
58     @Before
59     public void setUp()
60         throws Exception
61     {
62         FileType fileType =
63             (FileType) archivaConfiguration.getConfiguration().getRepositoryScanning().getFileTypes().get( 0 );
64         assertEquals( FileTypes.ARTIFACTS, fileType.getId() );
65         fileType.addPattern( "**/*.xml" );
66
67         repoLocation = Paths.get( "target/test-" + getName() + "/test-repo" );
68     }
69
70
71     @Test
72     public void testConsumption()
73     {
74         Path localFile =
75             repoLocation.resolve( "org/apache/maven/plugins/maven-plugin-plugin/2.4.1/maven-metadata.xml" );
76
77         ConsumerWantsFilePredicate predicate = new ConsumerWantsFilePredicate();
78         BaseFile baseFile = new BaseFile( repoLocation.toFile(), localFile.toFile() );
79         predicate.setBasefile( baseFile );
80
81         assertFalse( predicate.evaluate( consumer ) );
82     }
83
84     @Test
85     public void testConsumptionOfOtherMetadata()
86     {
87         Path localFile =
88             repoLocation.resolve( "org/apache/maven/plugins/maven-plugin-plugin/2.4.1/maven-metadata-central.xml" );
89
90         ConsumerWantsFilePredicate predicate = new ConsumerWantsFilePredicate();
91         BaseFile baseFile = new BaseFile( repoLocation.toFile(), localFile.toFile() );
92         predicate.setBasefile( baseFile );
93
94         assertFalse( predicate.evaluate( consumer ) );
95     }
96     
97     public String getName()
98     {
99         return StringUtils.substringAfterLast( getClass().getName(), "." );
100     }
101 }