/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.test.integration.management.cli; import static org.junit.Assert.assertEquals; import static org.junit.Assert.fail; import org.jboss.as.cli.CommandContext; import org.jboss.as.cli.CommandLineException; import org.jboss.as.test.integration.management.cli.ifelse.CLISystemPropertyTestBase; import org.jboss.as.test.integration.management.util.CLITestUtil; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import org.junit.Test; import org.junit.runner.RunWith; import org.wildfly.core.testrunner.WildflyTestRunner; /** * * @author Alexey Loubyansky */ @RunWith(WildflyTestRunner.class) public class TryCatchFinallyTestCase extends CLISystemPropertyTestBase { @Test public void testSuccessfulTry() throws Exception { cliOut.reset(); final CommandContext ctx = CLITestUtil.getCommandContext(cliOut); try { ctx.connectController(); ctx.handle("try"); ctx.handle(getAddPropertyReq("try")); ctx.handle("catch"); ctx.handle(getRemovePropertyReq()); ctx.handle("end-try"); cliOut.reset(); ctx.handle(getReadPropertyReq()); assertEquals("try", getValue()); } finally { ctx.handleSafe(getRemovePropertyReq()); ctx.terminateSession(); cliOut.reset(); } } @Test public void testCatchException() throws Exception { cliOut.reset(); final CommandContext ctx = CLITestUtil.getCommandContext(cliOut); try { ctx.connectController(); ctx.handle("try"); ctx.handle("echo try block"); ctx.handle("fail try"); ctx.handle("catch"); ctx.handle("echo catch block"); ctx.handle("fail catch"); ctx.handle("finally"); ctx.handle("echo finally block"); ctx.handle("fail finally"); ctx.handleSafe("end-try"); String out = cliOut.toString(); assertFalse(out.contains("fail try")); assertTrue(out.contains("fail catch")); assertTrue(out.contains("fail finally")); } finally { ctx.handleSafe(getRemovePropertyReq()); ctx.terminateSession(); cliOut.reset(); } } @Test public void testTryException() throws Exception { cliOut.reset(); final CommandContext ctx = CLITestUtil.getCommandContext(cliOut); try { ctx.connectController(); ctx.handle("try"); ctx.handle("echo try block"); ctx.handle("fail try"); ctx.handle("finally"); ctx.handle("echo finally block"); ctx.handle("fail finally"); ctx.handleSafe("end-try"); String out = cliOut.toString(); assertTrue(out.contains("fail try")); assertTrue(out.contains("fail finally")); } finally { ctx.handleSafe(getRemovePropertyReq()); ctx.terminateSession(); cliOut.reset(); } } @Test public void testCatch() throws Exception { cliOut.reset(); final CommandContext ctx = CLITestUtil.getCommandContext(cliOut); try { ctx.connectController(); ctx.handle("try"); ctx.handle(this.getReadNonexistingPropReq()); ctx.handle("catch"); ctx.handle(getAddPropertyReq("catch")); ctx.handle("end-try"); cliOut.reset(); ctx.handle(getReadPropertyReq()); assertEquals("catch", getValue()); } finally { ctx.handleSafe(getRemovePropertyReq()); ctx.terminateSession(); cliOut.reset(); } } @Test public void testErrorInCatch() throws Exception { cliOut.reset(); final CommandContext ctx = CLITestUtil.getCommandContext(cliOut); try { ctx.connectController(); ctx.handle("try"); ctx.handle(this.getReadNonexistingPropReq()); ctx.handle("catch"); ctx.handle(this.getReadNonexistingPropReq()); ctx.handle("end-try"); fail("catch is expected to throw an exception"); } catch(CommandLineException e) { // expected } finally { ctx.handleSafe(getRemovePropertyReq()); ctx.terminateSession(); cliOut.reset(); } } @Test public void testTryFinally() throws Exception { cliOut.reset(); final CommandContext ctx = CLITestUtil.getCommandContext(cliOut); try { ctx.connectController(); ctx.handle("try"); ctx.handle(this.getAddPropertyReq("try")); ctx.handle("finally"); ctx.handle(this.getWritePropertyReq("finally")); ctx.handle("end-try"); cliOut.reset(); ctx.handle(getReadPropertyReq()); assertEquals("finally", getValue()); } finally { ctx.handleSafe(getRemovePropertyReq()); ctx.terminateSession(); cliOut.reset(); } } @Test public void testErrorInTryCatchFinally() throws Exception { cliOut.reset(); final CommandContext ctx = CLITestUtil.getCommandContext(cliOut); try { ctx.connectController(); ctx.handle("try"); ctx.handle(this.getReadNonexistingPropReq()); ctx.handle("catch"); ctx.handle(this.getAddPropertyReq("catch")); ctx.handle("finally"); ctx.handle(this.getWritePropertyReq("finally")); ctx.handle("end-try"); cliOut.reset(); ctx.handle(getReadPropertyReq()); assertEquals("finally", getValue()); } finally { ctx.handleSafe(getRemovePropertyReq()); ctx.terminateSession(); cliOut.reset(); } } @Test public void testErrorInTryErrorInCatchFinally() throws Exception { cliOut.reset(); final CommandContext ctx = CLITestUtil.getCommandContext(cliOut); try { ctx.connectController(); ctx.handle("try"); ctx.handle(this.getReadNonexistingPropReq()); ctx.handle("catch"); ctx.handle(this.getReadNonexistingPropReq()); ctx.handle("finally"); ctx.handle(this.getAddPropertyReq("finally")); ctx.handle("end-try"); fail("catch is expceted to throw an exception"); } catch(CommandLineException e) { cliOut.reset(); ctx.handle(getReadPropertyReq()); assertEquals("finally", getValue()); } finally { ctx.handleSafe(getRemovePropertyReq()); ctx.terminateSession(); cliOut.reset(); } } @Test public void testErrorInFinally() throws Exception { cliOut.reset(); final CommandContext ctx = CLITestUtil.getCommandContext(cliOut); try { ctx.connectController(); ctx.handle("try"); ctx.handle(this.getAddPropertyReq("try")); ctx.handle("finally"); ctx.handle(this.getReadNonexistingPropReq()); ctx.handle("end-try"); fail("finally is expceted to throw an exception"); } catch(CommandLineException e) { cliOut.reset(); ctx.handle(getReadPropertyReq()); assertEquals("try", getValue()); } finally { ctx.handleSafe(getRemovePropertyReq()); ctx.terminateSession(); cliOut.reset(); } } @Test public void testNonBatchedBlocks() throws Exception { cliOut.reset(); final CommandContext ctx = CLITestUtil.getCommandContext(cliOut); try { ctx.connectController(); ctx.handle(getAddPropertyReq("try", "1")); ctx.handle(getAddPropertyReq("catch", "1")); ctx.handle(getAddPropertyReq("finally", "1")); ctx.handle("try"); ctx.handle(getWritePropertyReq("try", "2")); ctx.handle(getReadNonexistingPropReq()); ctx.handle("catch"); ctx.handle(getWritePropertyReq("catch", "2")); ctx.handle(getReadNonexistingPropReq()); ctx.handle("finally"); ctx.handle(getWritePropertyReq("finally", "2")); ctx.handle(getReadNonexistingPropReq()); ctx.handle("end-try"); fail("catch is expceted to throw an exception"); } catch(CommandLineException e) { cliOut.reset(); ctx.handle(getReadPropertyReq("try")); assertEquals("2", getValue()); cliOut.reset(); ctx.handle(getReadPropertyReq("catch")); assertEquals("2", getValue()); cliOut.reset(); ctx.handle(getReadPropertyReq("finally")); assertEquals("2", getValue()); } finally { ctx.handleSafe(getRemovePropertyReq("try")); ctx.handleSafe(getRemovePropertyReq("catch")); ctx.handleSafe(getRemovePropertyReq("finally")); ctx.terminateSession(); cliOut.reset(); } } @Test public void testBatchedBlocks() throws Exception { cliOut.reset(); final CommandContext ctx = CLITestUtil.getCommandContext(cliOut); try { ctx.connectController(); ctx.handle(getAddPropertyReq("try", "1")); ctx.handle(getAddPropertyReq("catch", "1")); ctx.handle(getAddPropertyReq("finally", "1")); ctx.handle("try"); ctx.handle("batch"); ctx.handle(getWritePropertyReq("try", "2")); ctx.handle(getReadNonexistingPropReq()); ctx.handle("run-batch"); ctx.handle("catch"); ctx.handle("batch"); ctx.handle(getWritePropertyReq("catch", "2")); ctx.handle(getReadNonexistingPropReq()); ctx.handle("run-batch"); ctx.handle("finally"); ctx.handle("batch"); ctx.handle(getWritePropertyReq("finally", "2")); ctx.handle(getReadNonexistingPropReq()); ctx.handle("run-batch"); ctx.handle("end-try"); fail("expceted an exception"); } catch(CommandLineException e) { cliOut.reset(); ctx.handle(getReadPropertyReq("try")); assertEquals("1", getValue()); cliOut.reset(); ctx.handle(getReadPropertyReq("catch")); assertEquals("1", getValue()); cliOut.reset(); ctx.handle(getReadPropertyReq("finally")); assertEquals("1", getValue()); } finally { ctx.handleSafe(getRemovePropertyReq("try")); ctx.handleSafe(getRemovePropertyReq("catch")); ctx.handleSafe(getRemovePropertyReq("finally")); ctx.terminateSession(); cliOut.reset(); } } }