]> source.dussan.org Git - archiva.git/blob
90582b761be220b8bae5db2dfb8a3eea1507b62c
[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 junit.framework.TestCase;
23 import org.apache.archiva.common.plexusbridge.PlexusSisuBridge;
24 import org.apache.archiva.common.utils.BaseFile;
25 import org.apache.archiva.configuration.ArchivaConfiguration;
26 import org.apache.archiva.configuration.FileType;
27 import org.apache.archiva.configuration.FileTypes;
28 import org.apache.archiva.consumers.KnownRepositoryContentConsumer;
29 import org.apache.archiva.consumers.functors.ConsumerWantsFilePredicate;
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;
38 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
39
40 import javax.inject.Inject;
41 import java.io.File;
42
43 @RunWith( SpringJUnit4ClassRunner.class )
44 @ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath:/spring-context.xml" } )
45 public abstract class AbstractArtifactConsumerTest
46     extends TestCase
47 {
48     private File repoLocation;
49
50     protected KnownRepositoryContentConsumer consumer;
51
52     @Inject
53     protected ApplicationContext applicationContext;
54
55     @Inject
56     ArchivaConfiguration archivaConfiguration;
57
58     @Inject
59     protected PlexusSisuBridge plexusSisuBridge;
60
61
62     @Before
63     public void setUp()
64         throws Exception
65     {
66         super.setUp();
67
68         FileType fileType =
69             (FileType) archivaConfiguration.getConfiguration().getRepositoryScanning().getFileTypes().get( 0 );
70         assertEquals( FileTypes.ARTIFACTS, fileType.getId() );
71         fileType.addPattern( "**/*.xml" );
72
73         repoLocation = new File( "target/test-" + getName() + "/test-repo" );
74     }
75
76     @After
77     public void tearDown()
78         throws Exception
79     {
80         NexusIndexer nexusIndexer = plexusSisuBridge.lookup( NexusIndexer.class );
81         for ( IndexingContext indexingContext : nexusIndexer.getIndexingContexts().values() )
82         {
83             nexusIndexer.removeIndexingContext( indexingContext, false );
84         }
85     }
86
87
88     @Test
89     public void testConsumption()
90     {
91         File localFile =
92             new File( repoLocation, "org/apache/maven/plugins/maven-plugin-plugin/2.4.1/maven-metadata.xml" );
93
94         ConsumerWantsFilePredicate predicate = new ConsumerWantsFilePredicate();
95         BaseFile baseFile = new BaseFile( repoLocation, localFile );
96         predicate.setBasefile( baseFile );
97
98         assertFalse( predicate.evaluate( consumer ) );
99     }
100
101     @Test
102     public void testConsumptionOfOtherMetadata()
103     {
104         File localFile =
105             new File( repoLocation, "org/apache/maven/plugins/maven-plugin-plugin/2.4.1/maven-metadata-central.xml" );
106
107         ConsumerWantsFilePredicate predicate = new ConsumerWantsFilePredicate();
108         BaseFile baseFile = new BaseFile( repoLocation, localFile );
109         predicate.setBasefile( baseFile );
110
111         assertFalse( predicate.evaluate( consumer ) );
112     }
113 }