View Javadoc

1   package org.apache.maven.index;
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 java.io.File;
23  
24  import junit.framework.Assert;
25  
26  import org.apache.lucene.search.BooleanClause.Occur;
27  import org.apache.lucene.search.BooleanQuery;
28  import org.apache.lucene.search.Query;
29  
30  public class Nexus3881NexusIndexerTest
31      extends AbstractNexusIndexerTest
32  {
33      protected File repo = new File( getBasedir(), "src/test/nexus-3881" );
34  
35      @Override
36      protected void prepareNexusIndexer( NexusIndexer nexusIndexer )
37          throws Exception
38      {
39          context =
40              nexusIndexer.addIndexingContext( "nexus-3881", "nexus-3881", repo, indexDir, null, null, DEFAULT_CREATORS );
41          nexusIndexer.scan( context );
42      }
43  
44      public void testRelevances()
45          throws Exception
46      {
47          Query q1 = nexusIndexer.constructQuery( MAVEN.GROUP_ID, "solution", SearchType.SCORED );
48          Query q2 = nexusIndexer.constructQuery( MAVEN.ARTIFACT_ID, "solution", SearchType.SCORED );
49  
50          BooleanQuery bq = new BooleanQuery();
51          bq.add( q1, Occur.SHOULD );
52          bq.add( q2, Occur.SHOULD );
53  
54          IteratorSearchRequest request = new IteratorSearchRequest( bq );
55          request.setLuceneExplain( true );
56          
57          IteratorSearchResponse response = nexusIndexer.searchIterator( request );
58  
59          Assert.assertEquals( "All artifacts has 'solution' in their GA!", 4, response.getTotalHits() );
60          
61  
62          // for (ArtifactInfo ai : response) {
63          // System.out.println(ai.toString());
64          // System.out.println(ai.getAttributes().get( Explanation.class.getName() ));
65          // System.out.println();
66          // }
67  
68          float firstRel = response.getResults().next().getLuceneScore();
69  
70          float lastRel = 0;
71          for ( ArtifactInfo ai : response )
72          {
73              lastRel = ai.getLuceneScore();
74          }
75  
76          Assert.assertTrue(
77              String.format( "The relevance span should be small! (%s)",
78                  new Object[] { Float.valueOf( firstRel - lastRel ) } ), firstRel - lastRel < 0.35 );
79      }
80  }