From 741ecf56b7eab161326806d566ef22c911496789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Rey?= Date: Fri, 14 Sep 2012 00:11:18 +0200 Subject: [PATCH] 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 --- .../jgit/lib/CLIRepositoryTestCase.java | 90 +++++++++++++++++++ .../tst/org/eclipse/jgit/pgm/StatusTest.java | 14 --- 2 files changed, 90 insertions(+), 14 deletions(-) diff --git a/org.eclipse.jgit.pgm.test/src/org/eclipse/jgit/lib/CLIRepositoryTestCase.java b/org.eclipse.jgit.pgm.test/src/org/eclipse/jgit/lib/CLIRepositoryTestCase.java index 400927e0a..755174bcb 100644 --- a/org.eclipse.jgit.pgm.test/src/org/eclipse/jgit/lib/CLIRepositoryTestCase.java +++ b/org.eclipse.jgit.pgm.test/src/org/eclipse/jgit/lib/CLIRepositoryTestCase.java @@ -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