blob: 6ce9012e7a5bb97c4bb43e13b001a2024cb31e46 [file] [log] [blame]
/*
* Copyright 2009 Google Inc.
*
* 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 com.google.gwt.dev;
import com.google.gwt.util.tools.Utility;
import junit.framework.TestCase;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintStream;
/**
* Base class for argument processor testing.
*/
public abstract class ArgProcessorTestBase extends TestCase {
private static class MockOutputStream extends OutputStream {
private boolean isEmpty = true;
public boolean isEmpty() {
return isEmpty;
}
@Override
public void write(byte[] b, int off, int len) throws IOException {
isEmpty = false;
}
@Override
public void write(int b) throws IOException {
isEmpty = false;
}
}
/*
* The "compute installation directory" dance.
*/
static {
String oldValue = System.getProperty("gwt.devjar");
System.setProperty("gwt.devjar", "gwt-dev-windows.jar");
Utility.getInstallPath();
if (oldValue == null) {
System.getProperties().remove("gwt.devjar");
} else {
System.setProperty("gwt.devjar", oldValue);
}
}
protected static void assertProcessFailure(ArgProcessorBase argProcessor,
String... args) {
PrintStream oldErrStream = System.err;
MockOutputStream myErrStream = new MockOutputStream();
try {
System.setErr(new PrintStream(myErrStream, true));
assertFalse(argProcessor.processArgs(args));
} finally {
System.setErr(oldErrStream);
}
assertFalse(myErrStream.isEmpty());
}
protected static void assertProcessSuccess(ArgProcessorBase argProcessor,
String... args) {
PrintStream oldErrStream = System.err;
ByteArrayOutputStream myErrStream = new ByteArrayOutputStream();
try {
System.setErr(new PrintStream(myErrStream, true));
if (!argProcessor.processArgs(args)) {
fail(new String(myErrStream.toByteArray()));
}
assertEquals(0, myErrStream.size());
} finally {
System.setErr(oldErrStream);
}
}
}