[Patch v2 3/6] test/hex-escaping: new test for hex escaping routines
authorDavid Bremner <bremner@debian.org>
Mon, 13 Aug 2012 20:13:48 +0000 (22:13 +0200)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:49:05 +0000 (09:49 -0800)
cb/aa895d31871eba268dc9be5899728506a0b2f4 [new file with mode: 0644]

diff --git a/cb/aa895d31871eba268dc9be5899728506a0b2f4 b/cb/aa895d31871eba268dc9be5899728506a0b2f4
new file mode 100644 (file)
index 0000000..fdf49ee
--- /dev/null
@@ -0,0 +1,105 @@
+Return-Path: <bremner@tesseract.cs.unb.ca>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id 01668431FB6\r
+       for <notmuch@notmuchmail.org>; Tue, 14 Aug 2012 02:04:08 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+       autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id GNWnyOEk0RBp for <notmuch@notmuchmail.org>;\r
+       Tue, 14 Aug 2012 02:04:07 -0700 (PDT)\r
+Received: from tesseract.cs.unb.ca (tesseract.cs.unb.ca [131.202.240.238])\r
+       (using TLSv1 with cipher AES256-SHA (256/256 bits))\r
+       (No client certificate requested)\r
+       by olra.theworths.org (Postfix) with ESMTPS id 29D5D431FAE\r
+       for <notmuch@notmuchmail.org>; Tue, 14 Aug 2012 02:04:07 -0700 (PDT)\r
+Received: from remotemail by tesseract.cs.unb.ca with local (Exim 4.72)\r
+       (envelope-from <bremner@tesseract.cs.unb.ca>)\r
+       id 1T1D2k-00063m-Lz; Tue, 14 Aug 2012 06:04:06 -0300\r
+Received: (nullmailer pid 5276 invoked by uid 1000);\r
+       Mon, 13 Aug 2012 20:14:06 -0000\r
+From: David Bremner <bremner@debian.org>\r
+To: notmuch@notmuchmail.org\r
+Subject: [Patch v2 3/6] test/hex-escaping: new test for hex escaping routines\r
+Date: Mon, 13 Aug 2012 22:13:48 +0200\r
+Message-Id: <1344888831-4301-4-git-send-email-bremner@debian.org>\r
+X-Mailer: git-send-email 1.7.10.4\r
+In-Reply-To: <1344888831-4301-1-git-send-email-bremner@debian.org>\r
+References: <1344888831-4301-1-git-send-email-bremner@debian.org>\r
+Cc: David Bremner <bremner@debian.org>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Tue, 14 Aug 2012 09:04:08 -0000\r
+\r
+These are more like unit tests, to (try to) make sure the library\r
+functionality is working before building more complicated things on\r
+top of it.\r
+---\r
+ test/hex-escaping |   26 ++++++++++++++++++++++++++\r
+ test/notmuch-test |    1 +\r
+ 2 files changed, 27 insertions(+)\r
+ create mode 100755 test/hex-escaping\r
+\r
+diff --git a/test/hex-escaping b/test/hex-escaping\r
+new file mode 100755\r
+index 0000000..f34cc8c\r
+--- /dev/null\r
++++ b/test/hex-escaping\r
+@@ -0,0 +1,26 @@\r
++#!/usr/bin/env bash\r
++test_description="hex encoding and decoding"\r
++. ./test-lib.sh\r
++\r
++test_begin_subtest "round trip"\r
++find $TEST_DIRECTORY/corpus -type f -print | sort | xargs cat > EXPECTED\r
++$TEST_DIRECTORY/hex-xcode --direction=encode < EXPECTED | $TEST_DIRECTORY/hex-xcode --direction=decode > OUTPUT\r
++test_expect_equal_file OUTPUT EXPECTED\r
++\r
++test_begin_subtest "punctuation"\r
++tag1='comic_swear=$&^%$^%\\//-+$^%$'\r
++tag_enc1=$($TEST_DIRECTORY/hex-xcode --direction=encode "$tag1")\r
++test_expect_equal "$tag_enc1" "comic_swear=%24%26%5e%25%24%5e%25%5c%5c%2f%2f-+%24%5e%25%24"\r
++\r
++test_begin_subtest "round trip newlines"\r
++printf 'this\n tag\t has\n spaces\n' > EXPECTED.$test_count\r
++$TEST_DIRECTORY/hex-xcode --direction=encode  < EXPECTED.$test_count |\\r
++      $TEST_DIRECTORY/hex-xcode --direction=decode > OUTPUT.$test_count\r
++test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count\r
++\r
++test_begin_subtest "round trip 8bit chars"\r
++echo '%c3%91%c3%a5%c3%b0%c3%a3%c3%a5%c3%a9-%c3%8f%c3%8a' > EXPECTED.$test_count\r
++$TEST_DIRECTORY/hex-xcode --direction=decode  < EXPECTED.$test_count |\\r
++      $TEST_DIRECTORY/hex-xcode --direction=encode > OUTPUT.$test_count\r
++test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count\r
++test_done\r
+diff --git a/test/notmuch-test b/test/notmuch-test\r
+index cc732c3..43b5734 100755\r
+--- a/test/notmuch-test\r
++++ b/test/notmuch-test\r
+@@ -60,6 +60,7 @@ TESTS="\r
+   emacs-hello\r
+   emacs-show\r
+   missing-headers\r
++  hex-escaping\r
+ "\r
+ TESTS=${NOTMUCH_TESTS:=$TESTS}\r
\r
+-- \r
+1.7.10.4\r
+\r