// this search wont work in this case
/*
* IteratorSearchResponse response = indexerManager.searchArtifactSha1ChecksumIterator(
* "a216468fbebacabdf941ab5f1b2e4f3484103f1b", null, null, null, null, null );
*/
IteratorSearchResponse response =
indexerManager.searchArtifactIterator("org.apache.maven.plugins", "maven-pmd-plugin", "2.6-SNAPSHOT",
"maven-plugin", null, snapshots.getId(), null, null, null, false,
SearchType.EXACT, null);
assertEquals("There should be one hit!", 1, response.getTotalHits());
ArtifactInfo ai = response.getResults().next();
assertEquals("Coordinates should match too!",
"org.apache.maven.plugins:maven-pmd-plugin:2.6-SNAPSHOT:null:maven-plugin", ai.toString());
}