[Libguestfs] [PATCH 2/3] fish: basic tests for readline escaping

mzatko at redhat.com mzatko at redhat.com
Fri Nov 7 18:55:18 UTC 2014


From: Maros Zatko <mzatko at redhat.com>

---
 fish/test/Makefile.am   | 39 +++++++++++++++++++++
 fish/test/testquoting.c | 93 +++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 132 insertions(+)
 create mode 100644 fish/test/Makefile.am
 create mode 100644 fish/test/testquoting.c

diff --git a/fish/test/Makefile.am b/fish/test/Makefile.am
new file mode 100644
index 0000000..d108083
--- /dev/null
+++ b/fish/test/Makefile.am
@@ -0,0 +1,39 @@
+# libguestfs
+# Copyright (C) 2009-2014 Red Hat Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+include $(top_srcdir)/subdir-rules.mk
+
+check_PROGRAMS = testquoting
+
+testquoting_SOURCES = \
+	testquoting.c \
+	$(top_srcdir)/fish/rl.c
+
+testquoting_CPPFLAGS = \
+	-I$(top_srcdir)/src -I$(top_builddir)/src \
+	-I$(top_srcdir)/fish -I$(top_builddir)/fish \
+	-I$(top_srcdir)/gnulib/lib -I$(top_builddir)/gnulib/lib
+
+#testquoting_LDADD = $(top_builddir)/fish/rl.o
+
+
+TESTS_ENVIRONMENT = $(top_builddir)/run --test
+
+TESTS = \
+	testquoting
+
+# testquoting_CFLAGS = -I$(top_srcdir)
diff --git a/fish/test/testquoting.c b/fish/test/testquoting.c
new file mode 100644
index 0000000..7cbfa9f
--- /dev/null
+++ b/fish/test/testquoting.c
@@ -0,0 +1,93 @@
+/* guestfish - guest filesystem shell
+ * Copyright (C) 2009-2014 Red Hat Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#include <config.h>
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <memory.h>
+
+#include <guestfs.h>
+#include <guestfs-internal-frontend.h>
+#include "../rl.h"
+
+struct string_test_data {
+  const char *in;
+  const char *out;
+  int pass;
+};
+
+struct string_test_data escape_tests[] = {
+  { "", "", 1 },
+  { " ", "\\ ", 1 },
+  { "singleword", "singleword", 1 },
+  { "more than one word\n", "more\\ than\\ one\\ word\\n", 1 },
+  { "more than one word\n", "more\\ than\\ one\\ word\\n", 1 },
+  { "\xac\xec\x8", "\\xac\\xec\\b", 1 },
+};
+
+size_t nr_escape_tests = sizeof(escape_tests) / sizeof(*escape_tests);
+
+struct string_test_data unescape_tests[] = {
+  { "", "", 1 },
+  { "\\ ", " ", 1 },
+  { "singleword", "singleword", 1 },
+  { "more\\ than\\ one\\ word\\n", "more than one word\n", 1 },
+  { "more\\ than\\ one\\ word\\n", "more than one word\n", 1 },
+  { "\\xac\\xec\\b", "\xac\xec\x8", 1 },
+};
+
+size_t nr_unescape_tests = sizeof(unescape_tests) / sizeof(*unescape_tests);
+
+int
+run_with_test_data (char *(*f) (const char *),
+    struct string_test_data *data, size_t len)
+{
+  int i = 0, nr_failed = 0;
+
+  for (; i < len; i++) {
+    char *r = f(data[i].in);
+    if (((r != NULL) && STREQ (r, data[i].out)) != data[i].pass) {
+      printf ("%d ", i);
+      nr_failed ++;
+    }
+  }
+  printf ("%s\n", nr_failed == 0 ? "none" : "");
+  return nr_failed;
+}
+
+int
+main (int argc, char *argv[])
+{
+  int nr_failed = 0;
+
+  printf ("Escaping tests failed ids: ");
+  nr_failed += run_with_test_data (
+      bs_escape_filename, escape_tests, nr_escape_tests);
+
+  printf ("Un-escaping tests failed ids: ");
+  nr_failed += run_with_test_data (
+      bs_unescape_filename, unescape_tests, nr_unescape_tests);
+
+  if (nr_failed > 0) {
+    printf ("***** %zu / %zu tests FAILED *****\n", nr_failed,
+        nr_escape_tests + nr_unescape_tests);
+  }
+
+  return nr_failed > 0 ? EXIT_FAILURE : EXIT_SUCCESS;
+}
-- 
1.9.3




More information about the Libguestfs mailing list