]> source.dussan.org Git - archiva.git/blob
79fa9874063b227607f0f673c6b61b80d614046a
[archiva.git] /
1 package org.apache.archiva.indexer.maven.search;
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.archiva.indexer.search.SearchFields;
23 import org.apache.archiva.indexer.search.SearchResultHit;
24 import org.apache.archiva.indexer.search.SearchResults;
25 import org.apache.archiva.repository.base.ArchivaRepositoryRegistry;
26 import org.apache.archiva.repository.base.RepositoryHandlerDependencies;
27 import org.easymock.EasyMock;
28 import org.junit.After;
29 import org.junit.Test;
30
31 import javax.inject.Inject;
32 import java.nio.file.Path;
33 import java.util.Arrays;
34 import java.util.Collections;
35 import java.util.List;
36
37 /**
38  * @author Olivier Lamy
39  */
40 public class MavenRepositorySearchOSGITest
41     extends AbstractMavenRepositorySearch
42 {
43
44     @Inject
45     ArchivaRepositoryRegistry repositoryRegistry;
46
47     @SuppressWarnings( "unused" )
48     @Inject
49     RepositoryHandlerDependencies repositoryHandlerDependencies;
50
51
52     @After
53     @Override
54     public void tearDown() throws Exception {
55         super.tearDown();
56         repositoryRegistry.destroy();
57     }
58
59     @Test
60     public void searchFelixWithSymbolicName()
61         throws Exception
62     {
63
64         createIndex( TEST_REPO_1, Collections.<Path>emptyList(), true );
65
66         List<String> selectedRepos = Arrays.asList( TEST_REPO_1 );
67
68         // search artifactId
69         // EasyMock.expect( archivaConfig.getDefaultLocale() ).andReturn( Locale.getDefault( ) ).anyTimes();
70         EasyMock.expect( archivaConfig.getConfiguration()).andReturn(config).anyTimes();
71
72         archivaConfigControl.replay();
73
74         SearchFields searchFields = new SearchFields();
75         searchFields.setBundleSymbolicName( "org.apache.felix.bundlerepository" );
76         searchFields.setBundleVersion( "1.6.6" );
77         searchFields.setRepositories( selectedRepos );
78
79         SearchResults results = search.search( "user", searchFields, null );
80
81         archivaConfigControl.verify();
82
83         assertNotNull( results );
84         assertEquals( 1, results.getTotalHits() );
85
86         SearchResultHit hit = results.getHits().get( 0 );
87         assertEquals( "org.apache.felix", hit.getGroupId() );
88         assertEquals( "org.apache.felix.bundlerepository", hit.getArtifactId() );
89         assertEquals( "1.6.6", hit.getVersions().get( 0 ) );
90
91         assertEquals( "org.apache.felix.bundlerepository;uses:=\"org.osgi.framework\";version=\"2.0\"",
92                       hit.getBundleExportPackage() );
93         assertEquals( "org.apache.felix.bundlerepository.RepositoryAdmin,org.osgi.service.obr.RepositoryAdmin",
94                       hit.getBundleExportService() );
95         assertEquals( "org.apache.felix.bundlerepository", hit.getBundleSymbolicName() );
96         assertEquals( "1.6.6", hit.getBundleVersion() );
97     }
98
99 }