]> source.dussan.org Git - archiva.git/blob
ce0dbb8f40e153ade79933fd2155c44830fd1f58
[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
27 import java.util.ArrayList;
28 import java.util.Date;
29 import java.util.List;
30
31 /**
32  * RepositoryBrowsingTest 
33  *
34  * @version $Id$
35  */
36 public class RepositoryBrowsingTest
37     extends AbstractArchivaDatabaseTestCase
38 {
39     private static final List<String> GUEST_REPO_IDS;
40
41     private static final String USER_GUEST = "guest";
42     
43     static
44     {
45         GUEST_REPO_IDS = new ArrayList<String>();
46         GUEST_REPO_IDS.add( "central" );
47         GUEST_REPO_IDS.add( "snapshots" );
48     }
49     
50     private ArtifactDAO artifactDao;
51
52     public ArchivaArtifact createArtifact( String groupId, String artifactId, String version )
53     {
54         ArchivaArtifact artifact = artifactDao.createArtifact( groupId, artifactId, version, "", "jar", "central" );
55         artifact.getModel().setLastModified( new Date() ); // mandatory field.
56         artifact.getModel().setRepositoryId( "central" );
57         return artifact;
58     }
59
60     public RepositoryBrowsing lookupBrowser()
61         throws Exception
62     {
63         RepositoryBrowsing browser = (RepositoryBrowsing) lookup( RepositoryBrowsing.class );
64         assertNotNull( "RepositoryBrowsing should not be null.", browser );
65         return browser;
66     }
67
68     public void saveTestData()
69         throws Exception
70     {
71         ArchivaArtifact artifact;
72
73         // Setup artifacts in fresh DB.
74         artifact = createArtifact( "commons-lang", "commons-lang", "2.0" );
75         artifactDao.saveArtifact( artifact );
76
77         artifact = createArtifact( "commons-lang", "commons-lang", "2.1" );
78         artifactDao.saveArtifact( artifact );
79
80         artifact = createArtifact( "org.apache.maven.test", "test-one", "1.2" );
81         artifactDao.saveArtifact( artifact );
82
83         artifact = createArtifact( "org.apache.maven.test.foo", "test-two", "1.0" );
84         artifactDao.saveArtifact( artifact );
85
86         artifact = createArtifact( "org.apache.maven.shared", "test-two", "2.0" );
87         artifactDao.saveArtifact( artifact );
88
89         artifact = createArtifact( "org.apache.maven.shared", "test-two", "2.1-SNAPSHOT" );
90         artifactDao.saveArtifact( artifact );
91
92         artifact = createArtifact( "org.apache.maven.shared", "test-two", "2.1.1" );
93         artifactDao.saveArtifact( artifact );
94
95         artifact = createArtifact( "org.apache.maven.shared", "test-two", "2.1-alpha-1" );
96         artifactDao.saveArtifact( artifact );
97
98         artifact = createArtifact( "org.apache.maven.shared", "test-bar", "2.1" );
99         artifactDao.saveArtifact( artifact );
100
101         artifact = createArtifact( "org.codehaus.modello", "modellong", "3.0" );
102         artifactDao.saveArtifact( artifact );
103     }
104
105     public void testBrowseIntoGroupWithSubgroups()
106         throws Exception
107     {
108         saveTestData();
109
110         RepositoryBrowsing browser = lookupBrowser();
111         BrowsingResults results = browser.selectGroupId( USER_GUEST, GUEST_REPO_IDS, "org.apache.maven.test" );
112         assertNotNull( "Browsing Results should not be null.", results );
113
114         String expectedSubGroupIds[] = new String[] { "org.apache.maven.test.foo" };
115         assertGroupIds( "Browsing Results (subgroup org.apache.maven.test)", results.getGroupIds(), expectedSubGroupIds );
116     }
117
118     public void testSimpleBrowse()
119         throws Exception
120     {
121         saveTestData();
122
123         RepositoryBrowsing browser = lookupBrowser();
124         BrowsingResults results = browser.getRoot( USER_GUEST, GUEST_REPO_IDS );
125         assertNotNull( "Browsing Results should not be null.", results );
126
127         String expectedRootGroupIds[] = new String[] { "commons-lang", "org" };
128
129         assertGroupIds( "Browsing Results (root)", results.getGroupIds(), expectedRootGroupIds );
130     }
131
132     private void assertGroupIds( String msg, List actualGroupIds, String[] expectedGroupIds )
133     {
134         assertEquals( msg + ": groupIds.length", expectedGroupIds.length, actualGroupIds.size() );
135
136         for ( int i = 0; i < expectedGroupIds.length; i++ )
137         {
138             String expectedGroupId = expectedGroupIds[i];
139             assertTrue( msg + ": actual groupIds.contains(" + expectedGroupId + ")", actualGroupIds
140                 .contains( expectedGroupId ) );
141         }
142     }
143
144     @Override
145     protected void setUp()
146         throws Exception
147     {
148         super.setUp();
149
150         ArchivaDAO dao = (ArchivaDAO) lookup( ArchivaDAO.ROLE, "jdo" );
151         artifactDao = dao.getArtifactDAO();
152     }
153 }