New functions to facilitate the writing of CLI test cases

Writing CLI test cases is tedious because of all the formatting and
escaping subtleties needed when comparing actual output with what's
expected. While creating a test case the two new functions are to be
used instead of the existing execute() in order to prepare the correct
command and expected output and to generate the corresponding test code
that can be pasted into the test case function.

Change-Id: Ia66dc449d3f6fb861c300fef8b56fba83a56c94c
Signed-off-by: Chris Aniszczyk <zx@twitter.com>
This commit is contained in:
François Rey 2012-09-14 00:11:18 +02:00 committed by Chris Aniszczyk
parent edd47d10b9
commit 741ecf56b7
2 changed files with 90 additions and 14 deletions

View File

@ -42,6 +42,8 @@
*/
package org.eclipse.jgit.lib;
import static org.junit.Assert.assertEquals;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
@ -83,4 +85,92 @@ protected File writeTrashFile(final String name, final String data)
protected void deleteTrashFile(final String name) throws IOException {
JGitTestUtil.deleteTrashFile(db, name);
}
/**
* Execute the given commands and print the output to stdout. Use this
* function instead of the normal {@link #execute(String...)} when preparing
* a test case: the command is executed and then its output is printed on
* stdout, thus making it easier to prepare the correct command and expected
* output for the test case.
*
* @param cmds
* The commands to execute
* @return the result of the command, see {@link #execute(String...)}
* @throws Exception
*/
protected String[] executeAndPrint(String... cmds) throws Exception {
String[] lines = execute(cmds);
for (String line : lines) {
System.out.println(line);
}
return lines;
}
/**
* Execute the given commands and print test code comparing expected and
* actual output. Use this function instead of the normal
* {@link #execute(String...)} when preparing a test case: the command is
* executed and test code is generated using the command output as a
* template of what is expected. The code generated is printed on stdout and
* can be pasted in the test case function.
*
* @param cmds
* The commands to execute
* @return the result of the command, see {@link #execute(String...)}
* @throws Exception
*/
protected String[] executeAndPrintTestCode(String... cmds) throws Exception {
String[] lines = execute(cmds);
String cmdString = cmdString(cmds);
if (lines.length == 0)
System.out.println("\t\tassertTrue(execute(" + cmdString
+ ").length == 0);");
else {
System.out
.println("\t\tassertArrayOfLinesEquals(new String[] { //");
System.out.print("\t\t\t\t\t\t\"" + escapeJava(lines[0]));
for (int i=1; i<lines.length; i++) {
System.out.println("\", //");
System.out.print("\t\t\t\t\t\t\"" + escapeJava(lines[i]));
}
System.out.println("\" //");
System.out.println("\t\t\t\t}, execute(" + cmdString + ")); //");
}
return lines;
}
protected String cmdString(String... cmds) {
if (cmds.length == 0)
return "";
else if (cmds.length == 1)
return "\"" + escapeJava(cmds[0]) + "\"";
else {
StringBuilder sb = new StringBuilder(cmdString(cmds[0]));
for (int i=1; i<cmds.length; i++) {
sb.append(", ");
sb.append(cmdString(cmds[i]));
}
return sb.toString();
}
}
protected String escapeJava(String line) {
// very crude implementation but ok for generating test code
return line.replaceAll("\"", "\\\\\"") //
.replaceAll("\\\\", "\\\\\\")
.replaceAll("\t", "\\\\t");
}
protected void assertArrayOfLinesEquals(String[] expected, String[] actual) {
assertEquals(toText(expected), toText(actual));
}
private String toText(String[] lines) {
StringBuilder b = new StringBuilder();
for (String s : lines) {
b.append(s);
b.append('\n');
}
return b.toString();
}
}

View File

@ -42,7 +42,6 @@
*/
package org.eclipse.jgit.pgm;
import static org.junit.Assert.assertEquals;
import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.lib.CLIRepositoryTestCase;
@ -214,17 +213,4 @@ public void testStatus() throws Exception {
"" //
}, execute("git status")); //
}
private void assertArrayOfLinesEquals(String[] expected, String[] actual) {
assertEquals(toText(expected), toText(actual));
}
private String toText(String[] lines) {
StringBuilder b = new StringBuilder();
for (String s : lines) {
b.append(s);
b.append('\n');
}
return b.toString();
}
}