]> source.dussan.org Git - jgit.git/commitdiff
New functions to facilitate the writing of CLI test cases 63/5963/6
authorFrançois Rey <eclipse.org@francois.rey.name>
Thu, 13 Sep 2012 22:11:18 +0000 (00:11 +0200)
committerChris Aniszczyk <zx@twitter.com>
Wed, 27 Mar 2013 13:26:13 +0000 (09:26 -0400)
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>
org.eclipse.jgit.pgm.test/src/org/eclipse/jgit/lib/CLIRepositoryTestCase.java
org.eclipse.jgit.pgm.test/tst/org/eclipse/jgit/pgm/StatusTest.java

index 400927e0a09a2b1020bdf229538a9eb0639078d1..755174bcbc3c96710ed75ab3d9ad8b42b006e1e2 100644 (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 @@ public class CLIRepositoryTestCase extends LocalDiskRepositoryTestCase {
        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();
+       }
 }
index ed2c5d0375936900aebd19c22bc9339f5a7e4e5f..13f8c319c1cd1af7bc63c5f53707e017616fc405 100644 (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 class StatusTest extends CLIRepositoryTestCase {
                                                "" //
                                }, 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();
-       }
 }