aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2013-08-12 20:36:05 +0200
committerLars Magne Ingebrigtsen2013-08-12 20:36:05 +0200
commit7d8e68fed31cd980eeeb34caf4d10ca5de37cf3b (patch)
tree4627fd331d6f16d981dc086a9c1c68d5c1e20752
parent7997a2f181ae0dc36726af0c8afbaf86595a8290 (diff)
downloademacs-7d8e68fed31cd980eeeb34caf4d10ca5de37cf3b.tar.gz
emacs-7d8e68fed31cd980eeeb34caf4d10ca5de37cf3b.zip
Add a test for decompressing gzipped data
-rw-r--r--test/automated/data/decompress/foo-gzippedbin0 -> 30 bytes
-rw-r--r--test/automated/zlib-tests.el40
2 files changed, 40 insertions, 0 deletions
diff --git a/test/automated/data/decompress/foo-gzipped b/test/automated/data/decompress/foo-gzipped
new file mode 100644
index 00000000000..a68653fcbb9
--- /dev/null
+++ b/test/automated/data/decompress/foo-gzipped
Binary files differ
diff --git a/test/automated/zlib-tests.el b/test/automated/zlib-tests.el
new file mode 100644
index 00000000000..d03d4c981b8
--- /dev/null
+++ b/test/automated/zlib-tests.el
@@ -0,0 +1,40 @@
1;;; zlib-tests.el --- Test suite for zlib.
2
3;; Copyright (C) 2013 Free Software Foundation, Inc.
4
5;; Author: Lars Ingebrigtsen <larsi@gnus.org>
6
7;; This file is part of GNU Emacs.
8
9;; GNU Emacs is free software: you can redistribute it and/or modify
10;; it under the terms of the GNU General Public License as published by
11;; the Free Software Foundation, either version 3 of the License, or
12;; (at your option) any later version.
13
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
20;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21
22;;; Code:
23
24(require 'ert)
25
26(ert-deftest zlib--decompress ()
27 "Test decompressing a gzipped file."
28 (when (and (fboundp 'zlib-available-p)
29 (zlib-available-p))
30 (should (string=
31 (with-temp-buffer
32 (set-buffer-multibyte nil)
33 (insert-file-contents-literally "data/decompress/foo-gzipped")
34 (zlib-decompress-region (point-min) (point-max))
35 (buffer-string))
36 "foo\n"))))
37
38(provide 'zlib-tests)
39
40;;; zlib-tests.el ends here.