]> source.dussan.org Git - archiva.git/blob
8ec1d5f2cc9787266b4db91f75bbf5ed89f138cd
[archiva.git] /
1 package org.apache.maven.archiva.database.browsing;
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.maven.archiva.database.AbstractArchivaDatabaseTestCase;
23 import org.apache.maven.archiva.database.ArchivaDAO;
24 import org.apache.maven.archiva.database.ArtifactDAO;
25 import org.apache.maven.archiva.model.ArchivaArtifact;
26 import org.apache.maven.archiva.model.ArchivaProjectModel;
27
28 import java.util.ArrayList;
29 import java.util.Date;
30 import java.util.List;
31
32 /**
33  * RepositoryBrowsingTest 
34  *
35  * @version $Id$
36  */
37 public class RepositoryBrowsingTest
38     extends AbstractArchivaDatabaseTestCase
39 {
40     private static final List<String> GUEST_REPO_IDS;
41
42     private static final String USER_GUEST = "guest";
43     
44     static
45     {
46         GUEST_REPO_IDS = new ArrayList<String>();
47         GUEST_REPO_IDS.add( "central" );
48         GUEST_REPO_IDS.add( "snapshots" );
49     }
50     
51     private ArtifactDAO artifactDao;
52
53     public ArchivaArtifact createArtifact( String groupId, String artifactId, String version )
54     {
55         ArchivaArtifact artifact = artifactDao.createArtifact( groupId, artifactId, version, "", "jar", "central" );
56         artifact.getModel().setLastModified( new Date() ); // mandatory field.
57         artifact.getModel().setRepositoryId( "central" );
58         return artifact;
59     }
60
61     public RepositoryBrowsing lookupBrowser()
62         throws Exception
63     {
64         RepositoryBrowsing browser = (RepositoryBrowsing) lookup( RepositoryBrowsing.class );
65         assertNotNull( "RepositoryBrowsing should not be null.", browser );
66         return browser;
67     }
68
69     public void saveTestData()
70         throws Exception
71     {
72         ArchivaArtifact artifact;
73
74         // Setup artifacts in fresh DB.
75         artifact = createArtifact( "commons-lang", "commons-lang", "2.0" );
76         artifactDao.saveArtifact( artifact );
77
78         artifact = createArtifact( "commons-lang", "commons-lang", "2.1" );
79         artifactDao.saveArtifact( artifact );
80
81         artifact = createArtifact( "org.apache.maven.test", "test-one", "1.2" );
82         artifactDao.saveArtifact( artifact );
83
84         artifact = createArtifact( "org.apache.maven.test.foo", "test-two", "1.0" );
85         artifactDao.saveArtifact( artifact );
86
87         artifact = createArtifact( "org.apache.maven.shared", "test-two", "2.0" );
88         artifactDao.saveArtifact( artifact );
89
90         artifact = createArtifact( "org.apache.maven.shared", "test-two", "2.1-SNAPSHOT" );
91         artifactDao.saveArtifact( artifact );
92         
93         artifact = createArtifact( "org.apache.maven.shared", "test-two", "2.1-20070522.143249-1" );
94         artifactDao.saveArtifact( artifact );
95         
96         artifact = createArtifact( "org.apache.maven.shared", "test-two", "2.1-20070522.153141-2" );
97         artifactDao.saveArtifact( artifact );
98
99         artifact = createArtifact( "org.apache.maven.shared", "test-two", "2.1.1" );
100         artifactDao.saveArtifact( artifact );
101
102         artifact = createArtifact( "org.apache.maven.shared", "test-two", "2.1-alpha-1" );
103         artifactDao.saveArtifact( artifact );
104
105         artifact = createArtifact( "org.apache.maven.shared", "test-bar", "2.1" );
106         artifactDao.saveArtifact( artifact );
107
108         artifact = createArtifact( "org.codehaus.modello", "modellong", "3.0" );
109         artifactDao.saveArtifact( artifact );
110     }
111
112     public void testBrowseIntoGroupWithSubgroups()
113         throws Exception
114     {
115         saveTestData();
116
117         RepositoryBrowsing browser = lookupBrowser();
118         BrowsingResults results = browser.selectGroupId( USER_GUEST, GUEST_REPO_IDS, "org.apache.maven.test" );
119         assertNotNull( "Browsing Results should not be null.", results );
120
121         String expectedSubGroupIds[] = new String[] { "org.apache.maven.test.foo" };
122         assertGroupIds( "Browsing Results (subgroup org.apache.maven.test)", results.getGroupIds(), expectedSubGroupIds );
123     }
124
125     public void testSimpleBrowse()
126         throws Exception
127     {
128         saveTestData();
129
130         RepositoryBrowsing browser = lookupBrowser();
131         BrowsingResults results = browser.getRoot( USER_GUEST, GUEST_REPO_IDS );
132         assertNotNull( "Browsing Results should not be null.", results );
133
134         String expectedRootGroupIds[] = new String[] { "commons-lang", "org" };
135
136         assertGroupIds( "Browsing Results (root)", results.getGroupIds(), expectedRootGroupIds );
137     }
138
139     public void testViewArtifact()
140         throws Exception
141     {
142         saveTestData();
143
144         RepositoryBrowsing browser = lookupBrowser();
145         ArchivaProjectModel artifact = browser.selectVersion( USER_GUEST, GUEST_REPO_IDS, "org.apache.commons", "commons-lang", "2.0" );
146         assertNotNull( "Artifact should not be null.", artifact );
147                 assertEquals( "org.apache.commons", artifact.getGroupId() );
148                 assertEquals( "commons-lang", artifact.getArtifactId() );
149                 assertEquals( "2.0", artifact.getVersion() );
150     }
151     
152     public void testSelectArtifactId()
153         throws Exception
154     {
155         saveTestData();
156         
157         RepositoryBrowsing browser = lookupBrowser();
158         BrowsingResults results =
159             browser.selectArtifactId( USER_GUEST, GUEST_REPO_IDS, "org.apache.maven.shared", "test-two" );
160         assertNotNull( "Browsing results should not be null.", results );
161         assertEquals( 4, results.getVersions().size() );
162         assertTrue( results.getVersions().contains( "2.0" ) );
163         assertTrue( results.getVersions().contains( "2.1-SNAPSHOT" ) );
164         assertTrue( results.getVersions().contains( "2.1.1" ) );
165         assertTrue( results.getVersions().contains( "2.1-alpha-1" ) ); 
166     }
167     
168     public void testGetOtherSnapshotVersionsRequestedVersionIsGeneric()
169         throws Exception
170     {
171         saveTestData();
172         
173         RepositoryBrowsing browser = lookupBrowser();
174         List<String> results =
175             browser.getOtherSnapshotVersions( GUEST_REPO_IDS, "org.apache.maven.shared", "test-two", "2.1-SNAPSHOT" );
176         assertNotNull( "Returned list of versions should not be null.", results );
177         assertEquals( 3, results.size() );
178         assertTrue( results.contains( "2.1-SNAPSHOT" ) );
179         assertTrue( results.contains( "2.1-20070522.143249-1" ) );
180         assertTrue( results.contains( "2.1-20070522.153141-2" ) ); 
181     }
182     
183     public void testGetOtherSnapshotVersionsRequestedVersionIsUnique()
184         throws Exception
185     {
186         saveTestData();
187         
188         RepositoryBrowsing browser = lookupBrowser();
189         List<String> results =
190             browser.getOtherSnapshotVersions( GUEST_REPO_IDS, "org.apache.maven.shared", "test-two", "2.1-20070522.143249-1" );
191         assertNotNull( "Returned list of versions should not be null.", results );
192         assertEquals( 3, results.size() );
193         assertTrue( results.contains( "2.1-SNAPSHOT" ) );
194         assertTrue( results.contains( "2.1-20070522.143249-1" ) );
195         assertTrue( results.contains( "2.1-20070522.153141-2" ) ); 
196     }
197     
198     private void assertGroupIds( String msg, List actualGroupIds, String[] expectedGroupIds )
199     {
200         assertEquals( msg + ": groupIds.length", expectedGroupIds.length, actualGroupIds.size() );
201
202         for ( int i = 0; i < expectedGroupIds.length; i++ )
203         {
204             String expectedGroupId = expectedGroupIds[i];
205             assertTrue( msg + ": actual groupIds.contains(" + expectedGroupId + ")", actualGroupIds
206                 .contains( expectedGroupId ) );
207         }
208     }
209
210     @Override
211     protected void setUp()
212         throws Exception
213     {
214         super.setUp();
215
216         ArchivaDAO dao = (ArchivaDAO) lookup( ArchivaDAO.ROLE, "jdo" );
217         artifactDao = dao.getArtifactDAO();
218     }
219 }