]> source.dussan.org Git - archiva.git/blob
f8a9dd3bd6bdf77b2fd141d3660e0c7041af6243
[archiva.git] /
1 package $package;
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.admin.model.RepositoryAdminException;
23 import org.apache.archiva.admin.model.beans.ManagedRepository;
24 import org.apache.archiva.admin.model.managed.ManagedRepositoryAdmin;
25 import org.apache.archiva.metadata.repository.MetadataRepository;
26 import org.apache.archiva.metadata.repository.RepositorySession;
27 import org.apache.archiva.metadata.repository.RepositorySessionFactory;
28 import org.junit.Before;
29 import org.junit.Test;
30 import org.junit.runner.RunWith;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.springframework.test.context.ContextConfiguration;
34 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
35
36 import javax.inject.Inject;
37 import java.io.File;
38 import java.util.Date;
39
40 import static org.mockito.Mockito.*;
41
42 /**
43  * <code>SimpleArtifactConsumerTest</code>
44  */
45 @RunWith(SpringJUnit4ClassRunner.class)
46 @ContextConfiguration(locations = { "classpath*:/META-INF/spring-context.xml", "classpath:/spring-context.xml" })
47 public class SimpleArtifactConsumerTest
48 {
49     @Inject
50     private SimpleArtifactConsumer consumer;
51
52     @Inject
53     private ManagedRepositoryAdmin managedRepositoryAdmin;
54
55     @Inject
56     private RepositorySessionFactory repositorySessionFactory;
57
58     private ManagedRepository testRepository;
59
60     private Logger log = LoggerFactory.getLogger( SimpleArtifactConsumer.class );
61
62     private MetadataRepository metadataRepository;
63
64     @Before
65     public void setUp()
66         throws Exception
67     {
68         setUpMockRepository();
69     }
70
71     private void setUpMockRepository()
72         throws RepositoryAdminException
73     {
74         File repoDir = new File( "target/test-consumer-repo" );
75         repoDir.mkdirs();
76         repoDir.deleteOnExit();
77
78         testRepository = new ManagedRepository();
79         testRepository.setName( "Test-Consumer-Repository" );
80         testRepository.setId( "test-consumer-repository" );
81         testRepository.setLocation( repoDir.getAbsolutePath() );
82
83         when( managedRepositoryAdmin.getManagedRepository( testRepository.getId() ) ).thenReturn( testRepository );
84     }
85
86     @Test
87     public void testBeginScan()
88         throws Exception
89     {
90         log.info( "Beginning scan of repository [test-consumer-repository]" );
91
92         consumer.beginScan( testRepository, new Date() );
93     }
94
95     @Test
96     public void testProcessFile()
97         throws Exception
98     {
99         consumer.beginScan( testRepository, new Date() );
100         consumer.processFile( "org/simple/test/testartifact/testartifact/1.0/testartifact-1.0.pom" );
101         consumer.processFile( "org/simple/test/testartifact/testartifact/1.1/testartifact-1.1.pom" );
102         
103     }
104
105 }