// Copyright 2012 Georg-August-Universität Göttingen, Germany // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package de.ugoe.cs.util.console.defaultcommands; import java.security.Permission; import java.util.ArrayList; import java.util.List; import org.junit.*; import de.ugoe.cs.util.console.Console; import de.ugoe.cs.util.console.mock.MockOutputListener; import static org.junit.Assert.*; /** * The class CMDexitTest contains tests for the class * {@link CMDexit}. * * @author Steffen Herbold * @version 1.0 */ public class CMDexitTest { final static String ENDLINE = System.getProperty("line.separator"); private static class ExitException extends SecurityException { private static final long serialVersionUID = 1L; } private static class NoExitSecurityManager extends SecurityManager { @Override public void checkPermission(Permission perm) { // allow anything. } @Override public void checkPermission(Permission perm, Object context) { // allow anything. } @Override public void checkExit(int status) { super.checkExit(status); throw new ExitException(); } } @Test public void testHelp_1() throws Exception { CMDexit fixture = new CMDexit(); MockOutputListener mockListener = new MockOutputListener(); Console.getInstance().registerOutputListener(mockListener); String expected = "exit"; assertEquals(expected, fixture.help()); } @Test(expected = ExitException.class) public void testRun_1() throws Exception { CMDexit fixture = new CMDexit(); List parameters = new ArrayList(); fixture.run(parameters); } @Test(expected = ExitException.class) public void testRun_2() throws Exception { CMDexit fixture = new CMDexit(); List parameters = new ArrayList(); parameters.add("test"); fixture.run(parameters); } @Before public void setUp() throws Exception { System.setSecurityManager(new NoExitSecurityManager()); } @After public void tearDown() throws Exception { System.setSecurityManager(null); } public static void main(String[] args) { new org.junit.runner.JUnitCore().run(CMDexitTest.class); } }