]> source.dussan.org Git - archiva.git/blob
72cc69fc93e2d666db2aeee0428a95e89c356563
[archiva.git] /
1 package org.apache.archiva.indexer.maven.search;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import junit.framework.TestCase;
22 import org.apache.archiva.indexer.search.SearchResultHit;
23 import org.apache.archiva.indexer.search.SearchResultLimits;
24 import org.apache.archiva.indexer.search.SearchResults;
25 import org.apache.archiva.indexer.util.SearchUtil;
26 import org.apache.archiva.repository.base.ArchivaRepositoryRegistry;
27 import org.apache.archiva.test.utils.ArchivaSpringJUnit4ClassRunner;
28 import org.junit.After;
29 import org.junit.Test;
30 import org.junit.runner.RunWith;
31 import org.springframework.beans.factory.annotation.Autowired;
32 import org.springframework.test.context.ContextConfiguration;
33
34 import java.util.Arrays;
35
36 /**
37  * @author Olivier Lamy
38  */
39 @RunWith( ArchivaSpringJUnit4ClassRunner.class )
40 @ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath:/spring-context.xml" } )
41 public class MavenRepositorySearchPaginateTest
42     extends TestCase
43 {
44
45     @Autowired
46     ArchivaRepositoryRegistry repositoryRegistry;
47
48     @After
49     public void endTests() {
50         assert repositoryRegistry!=null;
51         repositoryRegistry.destroy();
52     }
53
54     @Test
55     public void nonPaginatedResult()
56         throws Exception
57     {
58         MavenRepositorySearch search = new MavenRepositorySearch();
59
60         SearchResults searchResults = build( 10, new SearchResultLimits( 0 ) );
61
62         searchResults = search.paginate( searchResults );
63
64         assertEquals( 10, searchResults.getReturnedHitsCount() );
65
66     }
67
68     @Test
69     public void nonPaginatedHugeResult()
70         throws Exception
71     {
72         MavenRepositorySearch search = new MavenRepositorySearch();
73
74         SearchResults origSearchResults = build( 63, new SearchResultLimits( 0 ) );
75
76         SearchResults searchResults = search.paginate( origSearchResults );
77
78         assertEquals( 30, searchResults.getReturnedHitsCount() );
79
80         origSearchResults = build( 63, new SearchResultLimits( 1 ) );
81
82         searchResults = search.paginate( origSearchResults );
83
84         assertEquals( 30, searchResults.getReturnedHitsCount() );
85
86     }
87
88     @Test
89     public void paginatedResult()
90         throws Exception
91     {
92         MavenRepositorySearch search = new MavenRepositorySearch();
93
94         SearchResults searchResults = build( 32, new SearchResultLimits( 1 ) );
95
96         searchResults = search.paginate( searchResults );
97
98         assertEquals( 2, searchResults.getReturnedHitsCount() );
99
100     }
101
102
103     SearchResults build( int number, SearchResultLimits limits )
104     {
105         SearchResults searchResults = new SearchResults();
106         searchResults.setLimits( limits );
107         for ( int i = 0; i < number; i++ )
108         {
109             SearchResultHit hit = new SearchResultHit();
110             hit.setGroupId( "commons-foo" );
111             hit.setArtifactId( "commons-bar-" + i );
112             hit.setPackaging( "jar" );
113             hit.setVersions( Arrays.asList( "1.0" ) );
114             String id =
115                 SearchUtil.getHitId( hit.getGroupId(), hit.getArtifactId(), hit.getClassifier(), hit.getPackaging() );
116             searchResults.addHit( id, hit );
117         }
118
119         searchResults.setTotalHits( number );
120         return searchResults;
121
122     }
123 }