[Patch v4 3/9] test: add error reporting tests for lib/database.cc
authorDavid Bremner <david@tethera.net>
Sat, 14 Mar 2015 17:02:28 +0000 (18:02 +0100)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 21:48:27 +0000 (14:48 -0700)
34/3242098c7d91412c8d6c61606fd24b6cb8f1a2 [new file with mode: 0644]

diff --git a/34/3242098c7d91412c8d6c61606fd24b6cb8f1a2 b/34/3242098c7d91412c8d6c61606fd24b6cb8f1a2
new file mode 100644 (file)
index 0000000..eac2285
--- /dev/null
@@ -0,0 +1,156 @@
+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 69A08431FD9\r
+       for <notmuch@notmuchmail.org>; Sat, 14 Mar 2015 10:04:34 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 2.438\r
+X-Spam-Level: **\r
+X-Spam-Status: No, score=2.438 tagged_above=-999 required=5\r
+       tests=[DNS_FROM_AHBL_RHSBL=2.438] 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 0mrH15wFt-kA for <notmuch@notmuchmail.org>;\r
+       Sat, 14 Mar 2015 10:04:32 -0700 (PDT)\r
+Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net\r
+       [87.98.215.224])\r
+       (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
+       (No client certificate requested)\r
+       by olra.theworths.org (Postfix) with ESMTPS id 93086431FD7\r
+       for <notmuch@notmuchmail.org>; Sat, 14 Mar 2015 10:04:32 -0700 (PDT)\r
+Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim\r
+       4.80) (envelope-from <bremner@tesseract.cs.unb.ca>)\r
+       id 1YWpTY-00027S-Cp; Sat, 14 Mar 2015 17:03:48 +0000\r
+Received: (nullmailer pid 4985 invoked by uid 1000); Sat, 14 Mar 2015\r
+       17:02:41 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: notmuch@notmuchmail.org\r
+Subject: [Patch v4 3/9] test: add error reporting tests for lib/database.cc\r
+Date: Sat, 14 Mar 2015 18:02:28 +0100\r
+Message-Id: <1426352554-4383-4-git-send-email-david@tethera.net>\r
+X-Mailer: git-send-email 2.1.4\r
+In-Reply-To: <1426352554-4383-1-git-send-email-david@tethera.net>\r
+References: <1426352554-4383-1-git-send-email-david@tethera.net>\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: Sat, 14 Mar 2015 17:04:34 -0000\r
+\r
+Unfortunately quite a few of the error handling paths here require\r
+more sophisticated tests using e.g. gdb.\r
+---\r
+ test/T560-lib-error.sh | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++\r
+ 1 file changed, 91 insertions(+)\r
+ create mode 100755 test/T560-lib-error.sh\r
+\r
+diff --git a/test/T560-lib-error.sh b/test/T560-lib-error.sh\r
+new file mode 100755\r
+index 0000000..dc2022f\r
+--- /dev/null\r
++++ b/test/T560-lib-error.sh\r
+@@ -0,0 +1,91 @@\r
++#!/usr/bin/env bash\r
++test_description="error reporting for library"\r
++\r
++. ./test-lib.sh\r
++\r
++add_email_corpus\r
++\r
++test_expect_success "building database" "NOTMUCH_NEW"\r
++\r
++test_begin_subtest "Open null pointer"\r
++test_C <<EOF\r
++#include <stdio.h>\r
++#include <notmuch.h>\r
++int main (int argc, char** argv)\r
++{\r
++    notmuch_database_t *db;\r
++    notmuch_status_t stat;\r
++    stat = notmuch_database_open (NULL, 0, 0);\r
++}\r
++EOF\r
++cat <<EOF >EXPECTED\r
++== stdout ==\r
++== stderr ==\r
++Error: Cannot open a database for a NULL path.\r
++EOF\r
++test_expect_equal_file EXPECTED OUTPUT\r
++\r
++test_begin_subtest "Open nonexistent database"\r
++test_C <<EOF\r
++#include <stdio.h>\r
++#include <notmuch.h>\r
++int main (int argc, char** argv)\r
++{\r
++    notmuch_database_t *db;\r
++    notmuch_status_t stat;\r
++    stat = notmuch_database_open ("/nonexistent/foo", 0, 0);\r
++}\r
++EOF\r
++cat <<EOF >EXPECTED\r
++== stdout ==\r
++== stderr ==\r
++Error opening database at /nonexistent/foo/.notmuch: No such file or directory\r
++EOF\r
++test_expect_equal_file EXPECTED OUTPUT\r
++\r
++test_begin_subtest "Write to read-only database"\r
++test_C ${MAIL_DIR} <<EOF\r
++#include <stdio.h>\r
++#include <notmuch.h>\r
++int main (int argc, char** argv)\r
++{\r
++   notmuch_database_t *db;\r
++   notmuch_status_t stat;\r
++   stat = notmuch_database_open (argv[1], NOTMUCH_DATABASE_MODE_READ_ONLY, &db);\r
++   if (stat != NOTMUCH_STATUS_SUCCESS) {\r
++     fprintf (stderr, "error opening database: %d\n", stat);\r
++   }\r
++   stat = notmuch_database_add_message (db, "/dev/null", NULL);\r
++}\r
++EOF\r
++cat <<EOF >EXPECTED\r
++== stdout ==\r
++== stderr ==\r
++Cannot write to a read-only database.\r
++EOF\r
++test_expect_equal_file EXPECTED OUTPUT\r
++\r
++test_begin_subtest "compact, overwriting existing backup"\r
++test_C ${MAIL_DIR} <<EOF\r
++#include <stdio.h>\r
++#include <notmuch.h>\r
++static void\r
++status_cb (const char *msg, void *closure)\r
++{\r
++    printf ("%s\n", msg);\r
++}\r
++int main (int argc, char** argv)\r
++{\r
++   notmuch_database_t *db;\r
++   notmuch_status_t stat;\r
++   stat = notmuch_database_compact (argv[1], argv[1], status_cb, NULL);\r
++}\r
++EOF\r
++cat <<EOF >EXPECTED\r
++== stdout ==\r
++== stderr ==\r
++Path already exists: CWD/mail\r
++EOF\r
++test_expect_equal_file EXPECTED OUTPUT\r
++\r
++test_done\r
+-- \r
+2.1.4\r
+\r