2016-03-22 11:54:52 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
test_description='named queries'
|
2017-09-25 22:38:19 +02:00
|
|
|
. $(dirname "$0")/test-lib.sh || exit 1
|
2016-03-22 11:54:52 +01:00
|
|
|
|
|
|
|
QUERYSTR="date:2009-11-18..2009-11-18 and tag:unread"
|
|
|
|
|
2017-02-26 14:43:01 +01:00
|
|
|
test_begin_subtest "error adding named query before initializing DB"
|
|
|
|
test_expect_code 1 "notmuch config set query.test \"$QUERYSTR\""
|
2016-03-22 11:54:52 +01:00
|
|
|
|
|
|
|
add_email_corpus
|
|
|
|
|
2017-02-26 14:43:00 +01:00
|
|
|
test_begin_subtest "adding named query"
|
|
|
|
test_expect_success "notmuch config set query.test \"$QUERYSTR\""
|
2016-03-22 11:54:52 +01:00
|
|
|
|
2017-02-26 14:43:00 +01:00
|
|
|
test_begin_subtest "adding nested named query"
|
2016-03-22 11:54:52 +01:00
|
|
|
QUERYSTR2="query:test and subject:Maildir"
|
2017-02-26 14:43:00 +01:00
|
|
|
test_expect_success "notmuch config set query.test2 \"$QUERYSTR2\""
|
2016-03-22 11:54:52 +01:00
|
|
|
|
|
|
|
test_begin_subtest "retrieve named query"
|
|
|
|
output=$(notmuch config get query.test)
|
|
|
|
test_expect_equal "$QUERYSTR" "$output"
|
|
|
|
|
|
|
|
test_begin_subtest "List all queries"
|
|
|
|
notmuch config list | grep ^query | notmuch_config_sanitize > OUTPUT
|
|
|
|
cat <<EOF > EXPECTED
|
|
|
|
query.test=date:2009-11-18..2009-11-18 and tag:unread
|
|
|
|
query.test2=query:test and subject:Maildir
|
|
|
|
EOF
|
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
|
|
|
|
test_begin_subtest "dump named queries"
|
|
|
|
notmuch dump | grep '^#@' > OUTPUT
|
|
|
|
cat<<EOF > QUERIES.BEFORE
|
|
|
|
#@ query.test date%3a2009-11-18..2009-11-18%20and%20tag%3aunread
|
|
|
|
#@ query.test2 query%3atest%20and%20subject%3aMaildir
|
|
|
|
EOF
|
|
|
|
test_expect_equal_file QUERIES.BEFORE OUTPUT
|
|
|
|
|
|
|
|
test_begin_subtest "delete named queries"
|
|
|
|
notmuch dump > BEFORE
|
|
|
|
notmuch config set query.test
|
|
|
|
notmuch dump | grep '^#@' > OUTPUT
|
|
|
|
cat<<EOF > EXPECTED
|
|
|
|
#@ query.test2 query%3atest%20and%20subject%3aMaildir
|
|
|
|
EOF
|
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
|
|
|
|
|
|
|
test_begin_subtest "restore named queries"
|
|
|
|
notmuch restore < BEFORE
|
|
|
|
notmuch dump | grep '^#@' > OUTPUT
|
|
|
|
test_expect_equal_file QUERIES.BEFORE OUTPUT
|
|
|
|
|
2017-12-06 03:33:23 +01:00
|
|
|
test_begin_subtest "search named query"
|
|
|
|
notmuch search query:test > OUTPUT
|
|
|
|
notmuch search $QUERYSTR > EXPECTED
|
|
|
|
if [ $NOTMUCH_HAVE_XAPIAN_FIELD_PROCESSOR -ne 1 ]; then
|
|
|
|
test_subtest_known_broken
|
|
|
|
fi
|
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
2016-03-22 11:54:54 +01:00
|
|
|
|
2017-12-06 03:33:23 +01:00
|
|
|
test_begin_subtest "search named query with other terms"
|
|
|
|
notmuch search query:test and subject:Maildir > OUTPUT
|
|
|
|
notmuch search $QUERYSTR and subject:Maildir > EXPECTED
|
|
|
|
if [ $NOTMUCH_HAVE_XAPIAN_FIELD_PROCESSOR -ne 1 ]; then
|
|
|
|
test_subtest_known_broken
|
|
|
|
fi
|
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
2016-03-22 11:54:54 +01:00
|
|
|
|
2017-12-06 03:33:23 +01:00
|
|
|
test_begin_subtest "search nested named query"
|
|
|
|
notmuch search query:test2 > OUTPUT
|
|
|
|
notmuch search $QUERYSTR2 > EXPECTED
|
|
|
|
test_expect_equal_file EXPECTED OUTPUT
|
2016-03-22 11:54:54 +01:00
|
|
|
|
2016-03-22 11:54:52 +01:00
|
|
|
test_done
|