]> git.notmuchmail.org Git - notmuch/blob - test/T500-search-date.sh
exit lingering gpg agents at the end of relevant tests
[notmuch] / test / T500-search-date.sh
1 #!/usr/bin/env bash
2 test_description="date:since..until queries"
3 . ./test-lib.sh || exit 1
4
5 add_email_corpus
6
7 test_begin_subtest "Absolute date range"
8 output=$(notmuch search date:2010-12-16..12/16/2010 | notmuch_search_sanitize)
9 test_expect_equal "$output" "thread:XXX   2010-12-16 [1/1] Olivier Berger; Essai accentuĂ© (inbox unread)"
10
11 test_begin_subtest "Absolute date range with 'same' operator"
12 output=$(notmuch search date:2010-12-16..! | notmuch_search_sanitize)
13 test_expect_equal "$output" "thread:XXX   2010-12-16 [1/1] Olivier Berger; Essai accentuĂ© (inbox unread)"
14
15 if [ "${NOTMUCH_HAVE_XAPIAN_FIELD_PROCESSOR}" = "1" ]; then
16     test_begin_subtest "Absolute date field"
17     output=$(notmuch search date:2010-12-16 | notmuch_search_sanitize)
18     test_expect_equal "$output" "thread:XXX   2010-12-16 [1/1] Olivier Berger; Essai accentuĂ© (inbox unread)"
19 fi
20
21 test_begin_subtest "Absolute time range with TZ"
22 notmuch search date:18-Nov-2009_02:19:26-0800..2009-11-18_04:49:52-06:00 | notmuch_search_sanitize > OUTPUT
23 cat <<EOF >EXPECTED
24 thread:XXX   2009-11-18 [1/3] Carl Worth| Jan Janak; [notmuch] What a great idea! (inbox unread)
25 thread:XXX   2009-11-18 [1/2] Carl Worth| Jan Janak; [notmuch] [PATCH] Older versions of install do not support -C. (inbox unread)
26 thread:XXX   2009-11-18 [1/3] Carl Worth| Aron Griffis, Keith Packard; [notmuch] archive (inbox unread)
27 thread:XXX   2009-11-18 [1/2] Carl Worth| Keith Packard; [notmuch] [PATCH] Make notmuch-show 'X' (and 'x') commands remove inbox (and unread) tags (inbox unread)
28 EOF
29 test_expect_equal_file EXPECTED OUTPUT
30
31 test_done