]> git.notmuchmail.org Git - notmuch/blob - test/T650-regexp-query.sh
Merge tag 0.28.4
[notmuch] / test / T650-regexp-query.sh
1 #!/usr/bin/env bash
2 test_description='regular expression searches'
3 . $(dirname "$0")/test-lib.sh || exit 1
4
5 if [ $NOTMUCH_HAVE_XAPIAN_FIELD_PROCESSOR -eq 0 ]; then
6     test_done
7 fi
8
9 add_message '[dir]=bad' '[subject]="To the bone"'
10 add_message '[dir]=.' '[subject]="Top level"'
11 add_message '[dir]=bad/news' '[subject]="Bears"'
12 mkdir -p "${MAIL_DIR}/duplicate/bad/news"
13 cp "$gen_msg_filename" "${MAIL_DIR}/duplicate/bad/news"
14
15 add_message '[dir]=things' '[subject]="These are a few"'
16 add_message '[dir]=things/favorite' '[subject]="Raindrops, whiskers, kettles"'
17 add_message '[dir]=things/bad' '[subject]="Bites, stings, sad feelings"'
18
19 test_begin_subtest "empty path:// search"
20 notmuch search 'path:""' > EXPECTED
21 notmuch search 'path:/^$/' > OUTPUT
22 test_expect_equal_file EXPECTED OUTPUT
23
24 test_begin_subtest "empty folder:// search"
25 notmuch search 'folder:""' > EXPECTED
26 notmuch search 'folder:/^$/' > OUTPUT
27 test_expect_equal_file EXPECTED OUTPUT
28
29 test_begin_subtest "unanchored folder:// specification"
30 output=$(notmuch search folder:/bad/ | notmuch_search_sanitize)
31 test_expect_equal "$output" "thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; To the bone (inbox unread)
32 thread:XXX   2001-01-05 [1/1(2)] Notmuch Test Suite; Bears (inbox unread)
33 thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Bites, stings, sad feelings (inbox unread)"
34
35 test_begin_subtest "anchored folder:// search"
36 output=$(notmuch search 'folder:/^bad$/' | notmuch_search_sanitize)
37 test_expect_equal "$output" "thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; To the bone (inbox unread)"
38
39 test_begin_subtest "unanchored path:// specification"
40 output=$(notmuch search path:/bad/ | notmuch_search_sanitize)
41 test_expect_equal "$output" "thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; To the bone (inbox unread)
42 thread:XXX   2001-01-05 [1/1(2)] Notmuch Test Suite; Bears (inbox unread)
43 thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Bites, stings, sad feelings (inbox unread)"
44
45 test_begin_subtest "anchored path:// search"
46 output=$(notmuch search 'path:/^bad$/' | notmuch_search_sanitize)
47 test_expect_equal "$output" "thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; To the bone (inbox unread)"
48
49 # Use "standard" corpus from here on.
50 rm -rf $MAIL_DIR
51 add_email_corpus
52
53 notmuch search --output=messages from:cworth > cworth.msg-ids
54
55 # these headers will generate no document terms
56 add_message '[from]="-" [subject]="empty from"'
57 add_message '[subject]="-"'
58
59 test_begin_subtest "null from: search"
60 notmuch search 'from:""' | notmuch_search_sanitize > OUTPUT
61 cat <<EOF > EXPECTED
62 thread:XXX   2001-01-05 [1/1] -; empty from (inbox unread)
63 EOF
64 test_expect_equal_file EXPECTED OUTPUT
65
66 test_begin_subtest "null subject: search"
67 notmuch search 'subject:""' | notmuch_search_sanitize > OUTPUT
68 cat <<EOF > EXPECTED
69 thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; - (inbox unread)
70 EOF
71 test_expect_equal_file EXPECTED OUTPUT
72
73 test_begin_subtest "xapian wildcard search for from:"
74 notmuch search --output=messages 'from:cwo*' > OUTPUT
75 test_expect_equal_file cworth.msg-ids OUTPUT
76
77 test_begin_subtest "xapian wildcard search for subject:"
78 test_expect_equal $(notmuch count 'subject:count*') 1
79
80 add_message '[from]="and"' '[subject]="and-and-and"'
81 printf "id:$gen_msg_id\n" > EXPECTED
82
83 test_begin_subtest "quoted xapian keyword search for from:"
84 notmuch search --output=messages 'from:"and"' > OUTPUT
85 test_expect_equal_file EXPECTED OUTPUT
86
87 test_begin_subtest "quoted xapian keyword search for subject:"
88 notmuch search --output=messages 'subject:"and-and-and"' > OUTPUT
89 test_expect_equal_file EXPECTED OUTPUT
90
91 test_begin_subtest "regexp from search, case sensitive"
92 notmuch search --output=messages from:/carl/ > OUTPUT
93 test_expect_equal_file /dev/null OUTPUT
94
95 test_begin_subtest "empty regexp or query"
96 notmuch search --output=messages from:/carl/ or from:/cworth/ > OUTPUT
97 test_expect_equal_file cworth.msg-ids OUTPUT
98
99 test_begin_subtest "non-empty regexp and query"
100 notmuch search  from:/cworth@cworth.org/ and subject:patch | notmuch_search_sanitize > OUTPUT
101 cat <<EOF > EXPECTED
102 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)
103 thread:XXX   2009-11-18 [1/2] Carl Worth| Ingmar Vanhassel; [notmuch] [PATCH] Typsos (inbox unread)
104 thread:XXX   2009-11-18 [1/2] Carl Worth| Jan Janak; [notmuch] [PATCH] Older versions of install do not support -C. (inbox unread)
105 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)
106 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)
107 EOF
108 test_expect_equal_file EXPECTED OUTPUT
109
110 test_begin_subtest "regexp from search, duplicate term search"
111 notmuch search --output=messages from:/cworth/ > OUTPUT
112 test_expect_equal_file cworth.msg-ids OUTPUT
113
114 test_begin_subtest "long enough regexp matches only desired senders"
115 notmuch search --output=messages 'from:"/C.* Wo/"' > OUTPUT
116 test_expect_equal_file cworth.msg-ids OUTPUT
117
118 test_begin_subtest "shorter regexp matches one more sender"
119 notmuch search --output=messages 'from:"/C.* W/"' > OUTPUT
120 { echo id:1258544095-16616-1-git-send-email-chris@chris-wilson.co.uk; cat cworth.msg-ids; } > EXPECTED
121 test_expect_equal_file EXPECTED OUTPUT
122
123 test_begin_subtest "regexp subject search, non-ASCII"
124 notmuch search --output=messages subject:/accentuĂ©/ > OUTPUT
125 echo id:877h1wv7mg.fsf@inf-8657.int-evry.fr > EXPECTED
126 test_expect_equal_file EXPECTED OUTPUT
127
128 test_begin_subtest "regexp subject search, punctuation"
129 notmuch search subject:/\'X\'/ | notmuch_search_sanitize > OUTPUT
130 cat <<EOF > EXPECTED
131 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)
132 EOF
133 test_expect_equal_file EXPECTED OUTPUT
134
135 test_begin_subtest "regexp subject search, no punctuation"
136 notmuch search  subject:/X/ | notmuch_search_sanitize > OUTPUT
137 cat <<EOF > EXPECTED
138 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)
139 thread:XXX   2009-11-18 [4/4] Jjgod Jiang, Alexander Botero-Lowry; [notmuch] Mac OS X/Darwin compatibility issues (inbox unread)
140 EOF
141 test_expect_equal_file EXPECTED OUTPUT
142
143 test_begin_subtest "combine regexp from and subject"
144 notmuch search  subject:/-C/ and from:/.an.k/ | notmuch_search_sanitize > OUTPUT
145 cat <<EOF > EXPECTED
146 thread:XXX   2009-11-17 [1/2] Jan Janak| Carl Worth; [notmuch] [PATCH] Older versions of install do not support -C. (inbox unread)
147 EOF
148 test_expect_equal_file EXPECTED OUTPUT
149
150 test_begin_subtest "regexp error reporting"
151 notmuch search 'from:/unbalanced[/' 2>&1 | sed -e '/^A Xapian/ s/[^:]*$//' > OUTPUT
152 cat <<EOF > EXPECTED
153 notmuch search: A Xapian exception occurred
154 A Xapian exception occurred parsing query: Regexp error:
155 Query string was: from:/unbalanced[/
156 EOF
157 test_expect_equal_file EXPECTED OUTPUT
158
159 test_begin_subtest "empty mid search"
160 notmuch search --output=messages mid:yoom > OUTPUT
161 cp /dev/null EXPECTED
162 test_expect_equal_file EXPECTED OUTPUT
163
164 test_begin_subtest "non-empty mid regex search"
165 notmuch search --output=messages mid:/yoom/ > OUTPUT
166 test_expect_equal_file cworth.msg-ids OUTPUT
167
168 test_begin_subtest "combine regexp mid and subject"
169 notmuch search  subject:/-C/ and mid:/y..m/ | notmuch_search_sanitize > OUTPUT
170 cat <<EOF > EXPECTED
171 thread:XXX   2009-11-18 [1/2] Carl Worth| Jan Janak; [notmuch] [PATCH] Older versions of install do not support -C. (inbox unread)
172 EOF
173 test_expect_equal_file EXPECTED OUTPUT
174
175 test_begin_subtest "unanchored tag search"
176 notmuch search tag:signed or tag:inbox > EXPECTED
177 notmuch search tag:/i/ > OUTPUT
178 test_expect_equal_file EXPECTED OUTPUT
179
180 notmuch tag +testsi '*'
181 test_begin_subtest "anchored tag search"
182 notmuch search tag:signed > EXPECTED
183 notmuch search tag:/^si/ > OUTPUT
184 test_expect_equal_file EXPECTED OUTPUT
185
186 test_done