Last active
August 29, 2015 14:03
-
-
Save maggandalf/93ca5a57ffd97403fee5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RunWith(Arquillian.class) | |
public class BookTest { | |
@Deployment(testable = false, name = "bookservice") | |
public static WebArchive createDeploymentBookInfoService() { | |
return ShrinkWrap.create(WebArchive.class, "bookservice.war").addClasses(BookInfoService.class, ApplicationResource.class); | |
} | |
@Deployment(testable = false, name = "bookcomments") | |
public static WebArchive createDeploymentCommentsService() { | |
return ShrinkWrap.create(WebArchive.class, "bookcomments.war").addClasses(CommentsService.class, ApplicationResource.class); | |
} | |
@Deployment(testable = false, name = "book") | |
public static WebArchive createDeploymentBookService() { | |
WebArchive webArchive = ShrinkWrap.create(WebArchive.class, "book.war").addClasses(BookService.class, ApplicationResource.class) | |
.addAsLibraries(Maven.resolver().loadPomFromFile("pom.xml").resolve("com.netflix.rxjava:rxjava-core").withTransitivity().as(JavaArchive.class)); | |
return webArchive; | |
} | |
@ArquillianResource | |
URL base; | |
@Test | |
@OperateOnDeployment("book") | |
public void should_return_book() throws MalformedURLException { | |
Client client = ClientBuilder.newClient(); | |
JsonObject book = client.target(URI.create(new URL(base, "rest/").toExternalForm())).path("book/1111").request().get(JsonObject.class); | |
//assertions | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment