]> git.notmuchmail.org Git - notmuch/blob - test/T650-regexp-query.sh
lib: centralize query parsing, store results.
[notmuch] / test / T650-regexp-query.sh
1 #!/usr/bin/env bash
2 test_description='regular expression searches'
3 . ./test-lib.sh || exit 1
4
5 add_email_corpus
6
7
8 if [ $NOTMUCH_HAVE_XAPIAN_FIELD_PROCESSOR -eq 0 ]; then
9     test_done
10 fi
11
12 notmuch search --output=messages from:cworth > cworth.msg-ids
13
14 test_begin_subtest "regexp from search, case sensitive"
15 notmuch search --output=messages from:/carl/ > OUTPUT
16 test_expect_equal_file /dev/null OUTPUT
17
18 test_begin_subtest "empty regexp or query"
19 notmuch search --output=messages from:/carl/ or from:/cworth/ > OUTPUT
20 test_expect_equal_file cworth.msg-ids OUTPUT
21
22 test_begin_subtest "non-empty regexp and query"
23 notmuch search  from:/cworth@cworth.org/ and subject:patch | notmuch_search_sanitize > OUTPUT
24 cat <<EOF > EXPECTED
25 thread:XXX   2009-11-18 [1/2] Carl Worth| Alex Botero-Lowry; [notmuch] [PATCH] Error out if no query is supplied to search instead of going into an infinite loop (attachment inbox unread)
26 thread:XXX   2009-11-18 [1/2] Carl Worth| Ingmar Vanhassel; [notmuch] [PATCH] Typsos (inbox unread)
27 thread:XXX   2009-11-18 [1/2] Carl Worth| Jan Janak; [notmuch] [PATCH] Older versions of install do not support -C. (inbox unread)
28 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)
29 thread:XXX   2009-11-18 [2/5] Carl Worth| Mikhail Gusarov, Keith Packard; [notmuch] [PATCH 1/2] Close message file after parsing message headers (inbox unread)
30 EOF
31 test_expect_equal_file EXPECTED OUTPUT
32
33 test_begin_subtest "regexp from search, duplicate term search"
34 notmuch search --output=messages from:/cworth/ > OUTPUT
35 test_expect_equal_file cworth.msg-ids OUTPUT
36
37 test_begin_subtest "long enough regexp matches only desired senders"
38 notmuch search --output=messages 'from:"/C.* Wo/"' > OUTPUT
39 test_expect_equal_file cworth.msg-ids OUTPUT
40
41 test_begin_subtest "shorter regexp matches one more sender"
42 notmuch search --output=messages 'from:"/C.* W/"' > OUTPUT
43 { echo id:1258544095-16616-1-git-send-email-chris@chris-wilson.co.uk; cat cworth.msg-ids; } > EXPECTED
44 test_expect_equal_file EXPECTED OUTPUT
45
46 test_begin_subtest "regexp subject search, non-ASCII"
47 notmuch search --output=messages subject:/accentuĂ©/ > OUTPUT
48 echo id:877h1wv7mg.fsf@inf-8657.int-evry.fr > EXPECTED
49 test_expect_equal_file EXPECTED OUTPUT
50
51 test_begin_subtest "regexp subject search, punctuation"
52 notmuch search subject:/\'X\'/ | notmuch_search_sanitize > OUTPUT
53 cat <<EOF > EXPECTED
54 thread:XXX   2009-11-18 [2/2] Keith Packard, Carl Worth; [notmuch] [PATCH] Make notmuch-show 'X' (and 'x') commands remove inbox (and unread) tags (inbox unread)
55 EOF
56 test_expect_equal_file EXPECTED OUTPUT
57
58 test_begin_subtest "regexp subject search, no punctuation"
59 notmuch search  subject:/X/ | notmuch_search_sanitize > OUTPUT
60 cat <<EOF > EXPECTED
61 thread:XXX   2009-11-18 [2/2] Keith Packard, Carl Worth; [notmuch] [PATCH] Make notmuch-show 'X' (and 'x') commands remove inbox (and unread) tags (inbox unread)
62 thread:XXX   2009-11-18 [4/4] Jjgod Jiang, Alexander Botero-Lowry; [notmuch] Mac OS X/Darwin compatibility issues (inbox unread)
63 EOF
64 test_expect_equal_file EXPECTED OUTPUT
65
66 test_begin_subtest "combine regexp from and subject"
67 notmuch search  subject:/-C/ and from:/.an.k/ | notmuch_search_sanitize > OUTPUT
68 cat <<EOF > EXPECTED
69 thread:XXX   2009-11-17 [1/2] Jan Janak| Carl Worth; [notmuch] [PATCH] Older versions of install do not support -C. (inbox unread)
70 EOF
71 test_expect_equal_file EXPECTED OUTPUT
72
73 test_begin_subtest "regexp error reporting"
74 notmuch search 'from:/unbalanced[/' 1>OUTPUT 2>&1
75 cat <<EOF > EXPECTED
76 notmuch search: A Xapian exception occurred
77 A Xapian exception occurred parsing query: Invalid regular expression
78 Query string was: from:/unbalanced[/
79 EOF
80 test_expect_equal_file EXPECTED OUTPUT
81
82 test_done