]> source.dussan.org Git - archiva.git/blob
0831b49b183db10bb55c8e7407a8e4cc5fcbdf65
[archiva.git] /
1 package org.apache.archiva.consumers.core.repository;
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.admin.model.beans.ManagedRepository;
24 import org.apache.archiva.metadata.repository.MetadataRepository;
25 import org.apache.archiva.metadata.repository.RepositorySession;
26 import org.apache.archiva.repository.events.RepositoryListener;
27 import org.apache.commons.io.FileUtils;
28 import org.apache.commons.lang.StringUtils;
29 import org.apache.archiva.repository.ManagedRepositoryContent;
30 import org.easymock.MockControl;
31 import org.junit.After;
32 import org.junit.Before;
33 import org.junit.runner.RunWith;
34 import org.springframework.context.ApplicationContext;
35 import org.springframework.test.context.ContextConfiguration;
36 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
37
38 import javax.inject.Inject;
39 import java.io.File;
40 import java.io.IOException;
41
42 import static org.mockito.Mockito.mock;
43 import static org.mockito.Mockito.when;
44
45 /**
46  */
47 @RunWith( SpringJUnit4ClassRunner.class )
48 @ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath:/spring-context.xml" } )
49 public abstract class AbstractRepositoryPurgeTest
50     extends TestCase
51 {
52     public static final String TEST_REPO_ID = "test-repo";
53
54     public static final String TEST_REPO_NAME = "Test Repository";
55
56     public static final int TEST_RETENTION_COUNT = 2;
57
58     public static final int TEST_DAYS_OLDER = 30;
59
60     public static final String PATH_TO_BY_DAYS_OLD_ARTIFACT =
61         "org/apache/maven/plugins/maven-install-plugin/2.2-SNAPSHOT/maven-install-plugin-2.2-20061118.060401-2.jar";
62
63     public static final String PATH_TO_BY_DAYS_OLD_METADATA_DRIVEN_ARTIFACT =
64         "org/codehaus/plexus/plexus-utils/1.4.3-SNAPSHOT/plexus-utils-1.4.3-20070113.163208-4.jar";
65
66     public static final String PATH_TO_BY_RETENTION_COUNT_ARTIFACT =
67         "org/jruby/plugins/jruby-rake-plugin/1.0RC1-SNAPSHOT/jruby-rake-plugin-1.0RC1-20070504.153317-1.jar";
68
69     public static final String PATH_TO_BY_RETENTION_COUNT_POM =
70         "org/codehaus/castor/castor-anttasks/1.1.2-SNAPSHOT/castor-anttasks-1.1.2-20070506.163513-2.pom";
71
72     public static final String PATH_TO_TEST_ORDER_OF_DELETION =
73         "org/apache/maven/plugins/maven-assembly-plugin/1.1.2-SNAPSHOT/maven-assembly-plugin-1.1.2-20070615.105019-3.jar";
74
75     protected static final String RELEASES_TEST_REPO_ID = "releases-test-repo-one";
76
77     protected static final String RELEASES_TEST_REPO_NAME = "Releases Test Repo One";
78
79     private ManagedRepository config;
80
81     private ManagedRepositoryContent repo;
82
83     protected RepositoryPurge repoPurge;
84
85     protected MockControl listenerControl;
86
87     protected RepositoryListener listener;
88
89     protected RepositorySession repositorySession;
90
91     protected MetadataRepository metadataRepository;
92
93     @Inject
94     protected ApplicationContext applicationContext;
95
96     @Before
97     public void setUp()
98         throws Exception
99     {
100         super.setUp();
101
102         listenerControl = MockControl.createControl( RepositoryListener.class );
103
104         listener = (RepositoryListener) listenerControl.getMock();
105
106         repositorySession = mock( RepositorySession.class );
107         metadataRepository = mock( MetadataRepository.class );
108         when( repositorySession.getRepository() ).thenReturn( metadataRepository );
109     }
110
111     @After
112     public void tearDown()
113         throws Exception
114     {
115         super.tearDown();
116         config = null;
117         repo = null;
118     }
119
120     public ManagedRepository getRepoConfiguration( String repoId, String repoName )
121     {
122         config = new ManagedRepository();
123         config.setId( repoId );
124         config.setName( repoName );
125         config.setDaysOlder( TEST_DAYS_OLDER );
126         config.setLocation( new File( "target/test-" + getName() + "/" + repoId ).getAbsolutePath() );
127         config.setReleases( true );
128         config.setSnapshots( true );
129         config.setDeleteReleasedSnapshots( true );
130         config.setRetentionCount( TEST_RETENTION_COUNT );
131
132         return config;
133     }
134
135     public ManagedRepositoryContent getRepository()
136         throws Exception
137     {
138         if ( repo == null )
139         {
140             repo = applicationContext.getBean( "managedRepositoryContent#default", ManagedRepositoryContent.class );
141             repo.setRepository( getRepoConfiguration( TEST_REPO_ID, TEST_REPO_NAME ) );
142         }
143
144         return repo;
145     }
146
147     protected void assertDeleted( String path )
148     {
149         assertFalse( "File should have been deleted: " + path, new File( path ).exists() );
150     }
151
152     protected void assertExists( String path )
153     {
154         assertTrue( "File should exist: " + path, new File( path ).exists() );
155     }
156
157     protected File getTestRepoRoot()
158     {
159         return new File( "target/test-" + getName() + "/" + TEST_REPO_ID );
160     }
161
162     protected String prepareTestRepos()
163         throws IOException
164     {
165         File testDir = getTestRepoRoot();
166         FileUtils.deleteDirectory( testDir );
167         FileUtils.copyDirectory( new File( "target/test-classes/" + TEST_REPO_ID ), testDir );
168
169         File releasesTestDir = new File( "target/test-" + getName() + "/" + RELEASES_TEST_REPO_ID );
170         FileUtils.deleteDirectory( releasesTestDir );
171         FileUtils.copyDirectory( new File( "target/test-classes/" + RELEASES_TEST_REPO_ID ), releasesTestDir );
172
173         return testDir.getAbsolutePath();
174     }
175
176     @Override
177     public String getName()
178     {
179         return StringUtils.substringAfterLast( getClass().getName(), "." );
180     }
181 }