]> source.dussan.org Git - archiva.git/blob
deab25e769ba1f8f8fd494c7ca47833577bac5ca
[archiva.git] /
1 /*
2  *  Copyright 2008 jdumay.
3  * 
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  * 
8  *       http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *  under the License.
16  */
17
18 package org.apache.archiva.consumers;
19
20 import java.io.File;
21 import java.util.Date;
22 import junit.framework.TestCase;
23 import org.apache.commons.io.FileUtils;
24 import org.apache.maven.archiva.configuration.ManagedRepositoryConfiguration;
25
26 /**
27  *
28  * @author jdumay
29  */
30 public class OBRRepositoryConsumerTest extends TestCase
31 {
32     private OBRRepositoryConsumer consumer;
33
34     private File testRepo;
35
36     private ManagedRepositoryConfiguration configuration;
37
38     @Override
39     protected void setUp() throws Exception {
40         super.setUp();
41
42         File testRepoData = new File("src/test/resources/repository");
43         testRepo = new File("target/obrtestrepo").getAbsoluteFile();
44         testRepo.mkdirs();
45         consumer = new OBRRepositoryConsumer();
46         FileUtils.copyDirectory(testRepoData, testRepo);
47         configuration = new ManagedRepositoryConfiguration();
48         configuration.setName("My Test OSGi repository");
49         configuration.setId("test-obr-osgi-repo");
50         configuration.setLocation(testRepo.getAbsolutePath());
51         consumer.beginScan(configuration, new Date());
52     }
53
54     @Override
55     protected void tearDown()
56         throws Exception
57     {
58         super.tearDown();
59         //FileUtils.deleteDirectory(testRepo);
60     }
61
62     public void testCreatesRepositoryXml() throws Exception
63     {
64         File repositoryXml = new File(configuration.getLocation(), "repository.xml");
65         assertFalse("repository.xml should not exist", repositoryXml.exists());
66         consumer.processFile(new File(testRepo, "./commons-codec/commons-codec/1.3.0/commons-codec-1.3.0.jar").getAbsolutePath());
67
68         assertTrue(".repository.xml iterim file should exist", new File(testRepo, "commons-codec/commons-codec/1.3.0/.repository.xml").exists());
69         assertTrue("repository.xml should exist", repositoryXml.exists());
70     }
71 }