blob: 0de80db9545e79fd296938c923e0a216e5bac32e [file] [log] [blame]
package org.apache.maven.index;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import java.io.File;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import org.apache.lucene.search.Query;
/** http://issues.sonatype.org/browse/NEXUS-13 */
public class Nexus658NexusIndexerTest
extends AbstractNexusIndexerTest
{
protected File repo = new File( getBasedir(), "src/test/nexus-658" );
@Override
protected void prepareNexusIndexer( NexusIndexer nexusIndexer )
throws Exception
{
context =
nexusIndexer.addIndexingContext( "nexus-658", "nexus-658", repo, indexDir, null, null, DEFAULT_CREATORS );
nexusIndexer.scan( context );
}
public void testSearchFlat()
throws Exception
{
Query q = nexusIndexer.constructQuery( MAVEN.GROUP_ID, "org.sonatype.nexus", SearchType.SCORED );
FlatSearchResponse response = nexusIndexer.searchFlat( new FlatSearchRequest( q ) );
Collection<ArtifactInfo> r = response.getResults();
assertEquals( r.toString(), 4, r.size() );
List<ArtifactInfo> list = new ArrayList<ArtifactInfo>( r );
// g a v p c #1
ArtifactInfo ai1 = list.get( 0 );
assertEquals( "org.sonatype.nexus", ai1.groupId );
assertEquals( "nexus-webapp", ai1.artifactId );
assertEquals( "1.0.0-SNAPSHOT", ai1.version );
assertEquals( "jar", ai1.packaging );
assertEquals( null, ai1.classifier );
assertEquals( ArtifactAvailablility.PRESENT, ai1.sourcesExists );
assertEquals( "nexus-658", ai1.repository );
// g a v p c #2
ArtifactInfo ai2 = list.get( 1 );
assertEquals( "org.sonatype.nexus", ai2.groupId );
assertEquals( "nexus-webapp", ai2.artifactId );
assertEquals( "1.0.0-SNAPSHOT", ai2.version );
assertEquals( "tar.gz", ai2.packaging );
assertEquals( "bundle", ai2.classifier );
assertEquals( ArtifactAvailablility.NOT_AVAILABLE, ai2.sourcesExists );
assertEquals( "nexus-658", ai2.repository );
// g a v p c #3
ArtifactInfo ai3 = list.get( 2 );
assertEquals( "org.sonatype.nexus", ai3.groupId );
assertEquals( "nexus-webapp", ai3.artifactId );
assertEquals( "1.0.0-SNAPSHOT", ai3.version );
assertEquals( "zip", ai3.packaging );
assertEquals( "bundle", ai3.classifier );
assertEquals( ArtifactAvailablility.NOT_AVAILABLE, ai3.sourcesExists );
assertEquals( "nexus-658", ai3.repository );
// g a v p c #3
ArtifactInfo ai4 = list.get( 3 );
assertEquals( "org.sonatype.nexus", ai4.groupId );
assertEquals( "nexus-webapp", ai4.artifactId );
assertEquals( "1.0.0-SNAPSHOT", ai4.version );
assertEquals( "jar", ai4.packaging );
assertEquals( "sources", ai4.classifier );
assertEquals( ArtifactAvailablility.NOT_AVAILABLE, ai4.sourcesExists );
assertEquals( "nexus-658", ai4.repository );
}
}