[Patch v3 3/6] test/hex-escaping: new test for hex escaping routines
authordavid <david@tethera.net>
Sun, 19 Aug 2012 13:18:31 +0000 (15:18 +0200)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:49:07 +0000 (09:49 -0800)
e2/f190e433f1907fad597fb80c1b3ec4ab0f809d [new file with mode: 0644]

diff --git a/e2/f190e433f1907fad597fb80c1b3ec4ab0f809d b/e2/f190e433f1907fad597fb80c1b3ec4ab0f809d
new file mode 100644 (file)
index 0000000..37a67ec
--- /dev/null
@@ -0,0 +1,107 @@
+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 118DC431FBF\r
+       for <notmuch@notmuchmail.org>; Mon, 20 Aug 2012 00:18:43 -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 TX2sIsMqj2fd for <notmuch@notmuchmail.org>;\r
+       Mon, 20 Aug 2012 00:18:42 -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 927F5431FBD\r
+       for <notmuch@notmuchmail.org>; Mon, 20 Aug 2012 00:18:42 -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 1T3MG1-0002GH-St; Mon, 20 Aug 2012 04:18:42 -0300\r
+Received: (nullmailer pid 7814 invoked by uid 1000);\r
+       Sun, 19 Aug 2012 13:19:07 -0000\r
+From: david@tethera.net\r
+To: notmuch@notmuchmail.org\r
+Subject: [Patch v3 3/6] test/hex-escaping: new test for hex escaping routines\r
+Date: Sun, 19 Aug 2012 15:18:31 +0200\r
+Message-Id: <1345382314-5330-4-git-send-email-david@tethera.net>\r
+X-Mailer: git-send-email 1.7.10.4\r
+In-Reply-To: <1345382314-5330-1-git-send-email-david@tethera.net>\r
+References: <1345382314-5330-1-git-send-email-david@tethera.net>\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: Mon, 20 Aug 2012 07:18:43 -0000\r
+\r
+From: David Bremner <bremner@debian.org>\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