]> source.dussan.org Git - archiva.git/blob
095873c6262bc59ae0d5772f3c0334776666911e
[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         RepositorySession repositorySession = mock( RepositorySession.class );
71         when( repositorySessionFactory.createSession() ).thenReturn( repositorySession );
72
73         metadataRepository = mock( MetadataRepository.class );
74         when( repositorySession.getRepository() ).thenReturn( metadataRepository );
75     }
76
77     private void setUpMockRepository()
78         throws RepositoryAdminException
79     {
80         File repoDir = new File( "target/test-consumer-repo" );
81         repoDir.mkdirs();
82         repoDir.deleteOnExit();
83
84         testRepository = new ManagedRepository();
85         testRepository.setName( "Test-Consumer-Repository" );
86         testRepository.setId( "test-consumer-repository" );
87         testRepository.setLocation( repoDir.getAbsolutePath() );
88
89         when( managedRepositoryAdmin.getManagedRepository( testRepository.getId() ) ).thenReturn( testRepository );
90     }
91
92     @Test
93     public void testBeginScan()
94         throws Exception
95     {
96         log.info( "Beginning scan of repository [test-consumer-repository]" );
97
98         consumer.beginScan( testRepository, new Date() );
99     }
100
101     @Test
102     public void testProcessFile()
103         throws Exception
104     {
105         consumer.beginScan( testRepository, new Date() );
106         consumer.processFile( "org/simple/test/testartifact/testartifact/1.0/testartifact-1.0.pom" );
107         consumer.processFile( "org/simple/test/testartifact/testartifact/1.1/testartifact-1.1.pom" );
108
109         verify( metadataRepository ).getArtifacts( testRepository.getId(), "org.simple.test.testartifact",
110                                                    "testartifact", "1.0" );
111         verify( metadataRepository ).getArtifacts( testRepository.getId(), "org.simple.test.testartifact",
112                                                    "testartifact", "1.1" );
113     }
114
115 }