From: Austin Clements <amdragon@MIT.EDU>
To: notmuch@notmuchmail.org
Subject: [PATCH v2 07/14] test: Tests for future version and unknown feature handling
Date: Tue, 29 Jul 2014 12:48:05 -0400 [thread overview]
Message-ID: <1406652492-27803-8-git-send-email-amdragon@mit.edu> (raw)
In-Reply-To: <1406652492-27803-1-git-send-email-amdragon@mit.edu>
---
test/T550-db-features.sh | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
create mode 100755 test/T550-db-features.sh
diff --git a/test/T550-db-features.sh b/test/T550-db-features.sh
new file mode 100755
index 0000000..5569768
--- /dev/null
+++ b/test/T550-db-features.sh
@@ -0,0 +1,48 @@
+#!/usr/bin/env bash
+test_description="database version and feature compatibility"
+
+. ./test-lib.sh
+
+test_begin_subtest "future database versions abort open"
+${TEST_DIRECTORY}/make-db-version ${MAIL_DIR} 9999 ""
+output=$(notmuch search x 2>&1 | sed 's/\(database at\) .*/\1 FILENAME/')
+rm -rf ${MAIL_DIR}/.notmuch
+test_expect_equal "$output" "\
+Error: Notmuch database at FILENAME
+ has a newer database format version (9999) than supported by this
+ version of notmuch (3)."
+
+test_begin_subtest "unknown 'rw' feature aborts read/write open"
+${TEST_DIRECTORY}/make-db-version ${MAIL_DIR} 3 $'test feature\trw'
+output=$(notmuch new 2>&1 | sed 's/\(database at\) .*/\1 FILENAME/')
+rm -rf ${MAIL_DIR}/.notmuch
+test_expect_equal "$output" "\
+Error: Notmuch database at FILENAME
+ requires features (test feature)
+ not supported by this version of notmuch."
+
+test_begin_subtest "unknown 'rw' feature aborts read-only open"
+${TEST_DIRECTORY}/make-db-version ${MAIL_DIR} 3 $'test feature\trw'
+output=$(notmuch search x 2>&1 | sed 's/\(database at\) .*/\1 FILENAME/')
+rm -rf ${MAIL_DIR}/.notmuch
+test_expect_equal "$output" "\
+Error: Notmuch database at FILENAME
+ requires features (test feature)
+ not supported by this version of notmuch."
+
+test_begin_subtest "unknown 'w' feature aborts read/write open"
+${TEST_DIRECTORY}/make-db-version ${MAIL_DIR} 3 $'test feature\tw'
+output=$(notmuch new 2>&1 | sed 's/\(database at\) .*/\1 FILENAME/')
+rm -rf ${MAIL_DIR}/.notmuch
+test_expect_equal "$output" "\
+Error: Notmuch database at FILENAME
+ requires features (test feature)
+ not supported by this version of notmuch."
+
+test_begin_subtest "unknown 'w' feature does not abort read-only open"
+${TEST_DIRECTORY}/make-db-version ${MAIL_DIR} 3 $'test feature\tw'
+output=$(notmuch search x 2>&1 | sed 's/\(database at\) .*/\1 FILENAME/')
+rm -rf ${MAIL_DIR}/.notmuch
+test_expect_equal "$output" ""
+
+test_done
--
2.0.0
next prev parent reply other threads:[~2014-07-29 16:48 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-29 16:47 [PATCH v2 00/14] Implement and use database "features" Austin Clements
2014-07-29 16:47 ` [PATCH v2 01/14] test: Include generated dependencies for test sources Austin Clements
2014-07-29 16:48 ` [PATCH v2 02/14] util: Make string-util.h C++-compatible Austin Clements
2014-07-31 10:17 ` David Bremner
2014-07-29 16:48 ` [PATCH v2 03/14] util: Const version of strtok_len Austin Clements
2014-07-29 16:48 ` [PATCH v2 04/14] new: Don't report version after upgrade Austin Clements
2014-07-29 16:48 ` [PATCH v2 05/14] lib: Database version 3: Introduce fine-grained "features" Austin Clements
2014-07-29 16:48 ` [PATCH v2 06/14] test: Tool to build DB with specific version and features Austin Clements
2014-07-29 16:48 ` Austin Clements [this message]
2014-07-29 16:48 ` [PATCH v2 08/14] lib: Simplify upgrade code using a transaction Austin Clements
2014-07-29 16:48 ` [PATCH v2 09/14] lib: Use database features to drive upgrade Austin Clements
2014-07-29 16:48 ` [PATCH v2 10/14] lib: Reorganize upgrade around document types Austin Clements
2014-07-29 16:48 ` [PATCH v2 11/14] lib: Report progress for combined upgrade operation Austin Clements
2014-07-29 16:48 ` [PATCH v2 12/14] lib: Support empty header values in database Austin Clements
2014-07-29 16:48 ` [PATCH v2 13/14] lib: Return an error from operations that require an upgrade Austin Clements
2014-07-29 16:48 ` [PATCH v2 14/14] lib: Update doc of notmuch_database_{needs_upgrade, upgrade} Austin Clements
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://notmuchmail.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1406652492-27803-8-git-send-email-amdragon@mit.edu \
--to=amdragon@mit.edu \
--cc=notmuch@notmuchmail.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://yhetil.org/notmuch.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).