]> source.dussan.org Git - archiva.git/blob
ca59d65d2e072b9cd4a9011cc232ab3e24393a04
[archiva.git] /
1 package org.apache.archiva.indexer.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.junit.Test;
23
24 import java.io.File;
25 import java.util.Arrays;
26 import java.util.Collections;
27 import java.util.List;
28
29 /**
30  * @author Olivier Lamy
31  */
32 public class MavenRepositorySearchOSGITest
33     extends AbstractMavenRepositorySearch
34 {
35
36     @Test
37     public void searchFelixWithSymbolicName()
38         throws Exception
39     {
40
41         createIndex( TEST_REPO_1, Collections.<File>emptyList(), true );
42
43         List<String> selectedRepos = Arrays.asList( TEST_REPO_1 );
44
45         // search artifactId
46         archivaConfigControl.expectAndReturn( archivaConfig.getConfiguration(), config, 1, 2 );
47
48         archivaConfigControl.replay();
49
50         SearchFields searchFields = new SearchFields();
51         searchFields.setBundleSymbolicName( "org.apache.felix.bundlerepository" );
52         searchFields.setBundleVersion( "1.6.6" );
53         searchFields.setRepositories( selectedRepos );
54
55         SearchResults results = search.search( "user", searchFields, null );
56
57         archivaConfigControl.verify();
58
59         assertNotNull( results );
60         assertEquals( 1, results.getTotalHits() );
61
62         SearchResultHit hit = results.getHits().get( 0 );
63         assertEquals( "org.apache.felix", hit.getGroupId() );
64         assertEquals( "org.apache.felix.bundlerepository", hit.getArtifactId() );
65         assertEquals( "1.6.6", hit.getVersions().get( 0 ) );
66
67         assertEquals( "org.apache.felix.bundlerepository;uses:=\"org.osgi.framework\";version=\"2.0\"",
68                       hit.getBundleExportPackage() );
69         assertEquals( "org.apache.felix.bundlerepository.RepositoryAdmin,org.osgi.service.obr.RepositoryAdmin",
70                       hit.getBundleExportService() );
71         assertEquals( "org.apache.felix.bundlerepository", hit.getBundleSymbolicName() );
72         assertEquals( "1.6.6", hit.getBundleVersion() );
73     }
74
75 }