blob: a58bfd80c70bb7922d8aec5c7cbba4a859016a2c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.commons.exec.issues;
import org.apache.commons.exec.AbstractExecTest;
import org.apache.commons.exec.CommandLine;
import org.apache.commons.exec.DefaultExecutor;
import org.apache.commons.exec.ExecuteException;
import org.apache.commons.exec.ExecuteWatchdog;
import org.apache.commons.exec.OS;
import org.apache.commons.exec.PumpStreamHandler;
import org.junit.Assume;
import org.junit.Test;
import static org.junit.Assert.assertTrue;
import java.io.File;
/**
* Test to show that watchdog can destroy 'sudo' and 'sleep'.
*
* @see <a href="https://issues.apache.org/jira/browse/EXEC-65">EXEC-65</a>
*/
public class Exec65Test extends AbstractExecTest {
@Test(expected = ExecuteException.class, timeout = TEST_TIMEOUT)
public void testExec65WitSleepUsingSleepCommandDirectly() throws Exception {
if (!OS.isFamilyUnix()) {
throw new ExecuteException(testNotSupportedForCurrentOperatingSystem(), 0);
}
final ExecuteWatchdog watchdog = new ExecuteWatchdog(WATCHDOG_TIMEOUT);
final DefaultExecutor executor = new DefaultExecutor();
final CommandLine command = new CommandLine("sleep");
command.addArgument("60");
executor.setStreamHandler(new PumpStreamHandler(System.out, System.err));
executor.setWatchdog(watchdog);
executor.execute(command);
}
/**
* This test currently only works for Mac OS X
* <ul>
* <li>Linux hangs on the process stream while the process is finished</li>
* <li>Windows seems to have similar problems</li>
* </ul>
*
* @TODO Fix tests for Windows & Linux
*/
@Test(expected = ExecuteException.class, timeout = TEST_TIMEOUT)
public void testExec65WithSleepUsingShellScript() throws Exception {
if (!OS.isFamilyMac()) {
throw new ExecuteException(testNotSupportedForCurrentOperatingSystem(), 0);
}
final DefaultExecutor executor = new DefaultExecutor();
executor.setStreamHandler(new PumpStreamHandler(System.out, System.err));
executor.setWatchdog(new ExecuteWatchdog(WATCHDOG_TIMEOUT));
final CommandLine command = new CommandLine(resolveTestScript("sleep"));
executor.execute(command);
}
/**
* This is the original code snippet from the JIRA to show that
* killing the process actually works with JDK only but it does
* not re-direct any streams.
*/
@Test(timeout = TEST_TIMEOUT)
public void testExec65WithSleepUsingShellScriptAndJDKOnly() throws Exception {
final Process process = Runtime.getRuntime().exec(resolveTestScript("sleep").getAbsolutePath());
Thread.sleep(WATCHDOG_TIMEOUT);
process.destroy();
process.waitFor();
assertTrue(process.exitValue() != 0);
}
/**
* Please note that this tests make assumptions about the environment. It assumes
* that user "root" exists and that the current user is not a "sudoer" already
* (thereby requiring a password).
*/
@Test(expected = ExecuteException.class, timeout = TEST_TIMEOUT)
public void testExec65WithSudoUsingShellScript() throws Exception {
Assume.assumeFalse("Test is skipped on travis, because we have to be a sudoer "
+ "to make the other tests pass.", new File(".").getAbsolutePath().contains("travis"));
if (!OS.isFamilyUnix()) {
throw new ExecuteException(testNotSupportedForCurrentOperatingSystem(), 0);
}
final DefaultExecutor executor = new DefaultExecutor();
executor.setStreamHandler(new PumpStreamHandler(System.out, System.err, System.in));
executor.setWatchdog(new ExecuteWatchdog(WATCHDOG_TIMEOUT));
final CommandLine command = new CommandLine(resolveTestScript("issues", "exec-65"));
executor.execute(command);
}
}