use of org.jboss.as.cli.CommandContext in project eap-additional-testsuite by jboss-set.
the class BatchWithHeadersTestCase method testSuccessfulTry.
@Test
public void testSuccessfulTry() throws Exception {
final CommandContext ctx = CLITestUtil.getCommandContext();
try {
ctx.connectController();
ctx.handle("batch");
ctx.handle(":write-attribute(name=name,value=test");
final ModelNode batchRequest = ctx.buildRequest("run-batch --headers={allow-resource-service-restart=true}");
assertTrue(batchRequest.hasDefined("operation"));
assertEquals("composite", batchRequest.get("operation").asString());
assertTrue(batchRequest.hasDefined("address"));
assertTrue(batchRequest.get("address").asList().isEmpty());
assertTrue(batchRequest.hasDefined("steps"));
List<ModelNode> steps = batchRequest.get("steps").asList();
assertEquals(1, steps.size());
final ModelNode op = steps.get(0);
assertTrue(op.hasDefined("address"));
assertTrue(op.get("address").asList().isEmpty());
assertTrue(op.hasDefined("operation"));
assertEquals("write-attribute", op.get("operation").asString());
assertEquals("name", op.get("name").asString());
assertEquals("test", op.get("value").asString());
assertTrue(batchRequest.hasDefined("operation-headers"));
final ModelNode headers = batchRequest.get("operation-headers");
assertEquals("true", headers.get("allow-resource-service-restart").asString());
ctx.handle("discard-batch");
} finally {
ctx.terminateSession();
}
}
use of org.jboss.as.cli.CommandContext in project eap-additional-testsuite by jboss-set.
the class ArchiveTestCase method testDeployArchive.
@Test
public void testDeployArchive() throws Exception {
final CommandContext ctx = CLITestUtil.getCommandContext();
try {
ctx.connectController();
ctx.handle("deploy " + cliArchiveFile.getAbsolutePath() + " --script=install.scr");
// check that now both wars are deployed
String response = HttpRequest.get(getBaseURL(url) + "deployment0/SimpleServlet", 10, TimeUnit.SECONDS);
assertTrue("Invalid response: " + response, response.indexOf("SimpleServlet") >= 0);
response = HttpRequest.get(getBaseURL(url) + "deployment1/SimpleServlet", 10, TimeUnit.SECONDS);
assertTrue("Invalid response: " + response, response.indexOf("SimpleServlet") >= 0);
assertTrue(checkUndeployed(getBaseURL(url) + "deployment2/SimpleServlet"));
ctx.handle("deploy " + cliArchiveFile.getAbsolutePath() + " --script=uninstall.scr");
// check that both wars are undeployed
assertTrue(checkUndeployed(getBaseURL(url) + "deployment0/SimpleServlet"));
assertTrue(checkUndeployed(getBaseURL(url) + "deployment1/SimpleServlet"));
} finally {
ctx.terminateSession();
}
}
Aggregations