]> source.dussan.org Git - archiva.git/blob
442b5cdf8208c1c118e25282aaecf1e2c9adb027
[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.repository.base.RepositoryHandlerDependencies;
28 import org.apache.archiva.test.utils.ArchivaSpringJUnit4ClassRunner;
29 import org.junit.After;
30 import org.junit.Test;
31 import org.junit.runner.RunWith;
32 import org.springframework.test.context.ContextConfiguration;
33
34 import javax.inject.Inject;
35 import java.util.Arrays;
36
37 /**
38  * @author Olivier Lamy
39  */
40 @RunWith( ArchivaSpringJUnit4ClassRunner.class )
41 @ContextConfiguration( locations = { "classpath*:/META-INF/spring-context.xml", "classpath:/spring-context.xml" } )
42 public class MavenRepositorySearchPaginateTest
43     extends TestCase
44 {
45
46     @Inject
47     ArchivaRepositoryRegistry repositoryRegistry;
48
49     @SuppressWarnings( "unused" )
50     @Inject
51     RepositoryHandlerDependencies repositoryHandlerDependencies;
52
53     @After
54     public void endTests() {
55         assert repositoryRegistry!=null;
56         repositoryRegistry.destroy();
57     }
58
59     @Test
60     public void nonPaginatedResult()
61         throws Exception
62     {
63         MavenRepositorySearch search = new MavenRepositorySearch();
64
65         SearchResults searchResults = build( 10, new SearchResultLimits( 0 ) );
66
67         searchResults = search.paginate( searchResults );
68
69         assertEquals( 10, searchResults.getReturnedHitsCount() );
70
71     }
72
73     @Test
74     public void nonPaginatedHugeResult()
75         throws Exception
76     {
77         MavenRepositorySearch search = new MavenRepositorySearch();
78
79         SearchResults origSearchResults = build( 63, new SearchResultLimits( 0 ) );
80
81         SearchResults searchResults = search.paginate( origSearchResults );
82
83         assertEquals( 30, searchResults.getReturnedHitsCount() );
84
85         origSearchResults = build( 63, new SearchResultLimits( 1 ) );
86
87         searchResults = search.paginate( origSearchResults );
88
89         assertEquals( 30, searchResults.getReturnedHitsCount() );
90
91     }
92
93     @Test
94     public void paginatedResult()
95         throws Exception
96     {
97         MavenRepositorySearch search = new MavenRepositorySearch();
98
99         SearchResults searchResults = build( 32, new SearchResultLimits( 1 ) );
100
101         searchResults = search.paginate( searchResults );
102
103         assertEquals( 2, searchResults.getReturnedHitsCount() );
104
105     }
106
107
108     SearchResults build( int number, SearchResultLimits limits )
109     {
110         SearchResults searchResults = new SearchResults();
111         searchResults.setLimits( limits );
112         for ( int i = 0; i < number; i++ )
113         {
114             SearchResultHit hit = new SearchResultHit();
115             hit.setGroupId( "commons-foo" );
116             hit.setArtifactId( "commons-bar-" + i );
117             hit.setPackaging( "jar" );
118             hit.setVersions( Arrays.asList( "1.0" ) );
119             String id =
120                 SearchUtil.getHitId( hit.getGroupId(), hit.getArtifactId(), hit.getClassifier(), hit.getPackaging() );
121             searchResults.addHit( id, hit );
122         }
123
124         searchResults.setTotalHits( number );
125         return searchResults;
126
127     }
128 }