mirror of https://github.com/apache/archiva.git
fix junit
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1345591 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
297bb0fcff
commit
0c42d87da1
|
@ -22,6 +22,7 @@ import org.apache.archiva.admin.model.beans.UiConfiguration;
|
||||||
import org.apache.archiva.rest.api.model.Artifact;
|
import org.apache.archiva.rest.api.model.Artifact;
|
||||||
import org.apache.archiva.rest.api.model.SearchRequest;
|
import org.apache.archiva.rest.api.model.SearchRequest;
|
||||||
import org.apache.archiva.rest.api.services.SearchService;
|
import org.apache.archiva.rest.api.services.SearchService;
|
||||||
|
import org.fest.assertions.Assertions;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
@ -68,6 +69,7 @@ public class SearchServiceTest
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* same search but with Guest user
|
* same search but with Guest user
|
||||||
|
*
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
|
@ -225,10 +227,7 @@ public class SearchServiceTest
|
||||||
|
|
||||||
List<Artifact> artifacts = searchService.searchArtifacts( searchRequest );
|
List<Artifact> artifacts = searchService.searchArtifacts( searchRequest );
|
||||||
|
|
||||||
assertNotNull( artifacts );
|
Assertions.assertThat( artifacts ).isNotNull().hasSize( 2 );
|
||||||
assertTrue(
|
|
||||||
" not 2 results for Bundle Symbolic Name org.apache.karaf.features.core but " + artifacts.size() + ":"
|
|
||||||
+ artifacts, artifacts.size() == 2 );
|
|
||||||
|
|
||||||
for ( Artifact artifact : artifacts )
|
for ( Artifact artifact : artifacts )
|
||||||
{
|
{
|
||||||
|
@ -236,7 +235,7 @@ public class SearchServiceTest
|
||||||
String version = artifact.getVersion();
|
String version = artifact.getVersion();
|
||||||
assertEquals( "http://localhost:" + port
|
assertEquals( "http://localhost:" + port
|
||||||
+ "/repository/test-repo/org/apache/karaf/features/org.apache.karaf.features.core/"
|
+ "/repository/test-repo/org/apache/karaf/features/org.apache.karaf.features.core/"
|
||||||
+ version + "/org.apache.karaf.features.core-" + version + ".bundle", artifact.getUrl() );
|
+ version + "/org.apache.karaf.features.core-" + version + ".jar", artifact.getUrl() );
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue