]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Provide regression test case for bsdcat on empty compressed files
authorSebastian Freundt <freundt@ga-group.nl>
Tue, 12 Aug 2014 15:25:07 +0000 (15:25 +0000)
committerSebastian Freundt <freundt@ga-group.nl>
Tue, 12 Aug 2014 15:26:24 +0000 (15:26 +0000)
Makefile.am
cat/test/CMakeLists.txt
cat/test/test_empty.gz.uu [new file with mode: 0644]
cat/test/test_empty.xz.uu [new file with mode: 0644]
cat/test/test_empty_gz.c [new file with mode: 0644]
cat/test/test_empty_xz.c [new file with mode: 0644]

index d288ea96576a63440f01397a0fd671d13ba17ee8..81b38ef4dd3b4d6c19e547970d0c3a5b6b86958e 100644 (file)
@@ -1138,6 +1138,8 @@ bsdcat_test_SOURCES= \
        cat/test/main.c \
        cat/test/test.h \
        cat/test/test_0.c \
+       cat/test/test_empty_gz.c \
+       cat/test/test_empty_xz.c \
        cat/test/test_error.c \
        cat/test/test_error_mixed.c \
        cat/test/test_expand_Z.c \
@@ -1169,6 +1171,8 @@ endif
 
 bsdcat_test_EXTRA_DIST= \
        cat/test/list.h \
+       cat/test/test_empty.gz.uu \
+       cat/test/test_empty.xz.uu \
        cat/test/test_expand.Z.uu \
        cat/test/test_expand.bz2.uu \
        cat/test/test_expand.gz.uu \
index 6421f02648e24b1a59b35cc49d3326a7064f113f..f86c7bf39131a18c4b011136517e09e2dcb36028 100644 (file)
@@ -9,6 +9,8 @@ IF(ENABLE_CAT AND ENABLE_TEST)
     main.c
     test.h
     test_0.c
+    test_empty_gz.c
+    test_empty_xz.c
     test_error.c
     test_error_mixed.c
     test_expand_Z.c
diff --git a/cat/test/test_empty.gz.uu b/cat/test/test_empty.gz.uu
new file mode 100644 (file)
index 0000000..22b5230
--- /dev/null
@@ -0,0 +1,4 @@
+begin 644 test_empty.gz
+?'XL(""\MZE,``W1E<W1?96UP='D``P``````````````
+`
+end
diff --git a/cat/test/test_empty.xz.uu b/cat/test/test_empty.xz.uu
new file mode 100644 (file)
index 0000000..c85f627
--- /dev/null
@@ -0,0 +1,4 @@
+begin 644 test_empty.xz
+@_3=Z6%H```3FUK1&`````!S?1"$?MO-]`0`````$65H`
+`
+end
diff --git a/cat/test/test_empty_gz.c b/cat/test/test_empty_gz.c
new file mode 100644 (file)
index 0000000..6181f93
--- /dev/null
@@ -0,0 +1,41 @@
+/*-
+ * Copyright (c) 2014 Sebastian Freundt
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+#include "test.h"
+
+DEFINE_TEST(test_empty_gz)
+{
+       const char *reffile = "test_empty.gz";
+       int f;
+
+       extract_reference_file(reffile);
+       f = systemf("%s %s >test.out 2>test.err", testprog, reffile);
+       if (f == 0 || canGzip()) {
+               assertEqualInt(0, f);
+               assertEmptyFile("test.out");
+               assertEmptyFile("test.err");
+       } else {
+               skipping("It seems gzip is not supported on this platform");
+       }
+}
diff --git a/cat/test/test_empty_xz.c b/cat/test/test_empty_xz.c
new file mode 100644 (file)
index 0000000..368ffb5
--- /dev/null
@@ -0,0 +1,41 @@
+/*-
+ * Copyright (c) 2014 Sebastian Freundt
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+#include "test.h"
+
+DEFINE_TEST(test_empty_xz)
+{
+       const char *reffile = "test_empty.xz";
+       int f;
+
+       extract_reference_file(reffile);
+       f = systemf("%s %s >test.out 2>test.err", testprog, reffile);
+       if (f == 0 || canXz()) {
+               assertEqualInt(0, f);
+               assertEmptyFile("test.out");
+               assertEmptyFile("test.err");
+       } else {
+               skipping("It seems xz is not supported on this platform");
+       }
+}