]> git.notmuchmail.org Git - notmuch/blob - test/T650-regexp-query.sh
test: add two known broken tests searching for xapian keywords
[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 test_subtest_known_broken
85 notmuch search --output=messages 'from:"and"' > OUTPUT
86 test_expect_equal_file EXPECTED OUTPUT
87
88 test_begin_subtest "quoted xapian keyword search for subject:"
89 test_subtest_known_broken
90 notmuch search --output=messages 'subject:"and-and-and"' > OUTPUT
91 test_expect_equal_file EXPECTED OUTPUT
92
93 test_begin_subtest "regexp from search, case sensitive"
94 notmuch search --output=messages from:/carl/ > OUTPUT
95 test_expect_equal_file /dev/null OUTPUT
96
97 test_begin_subtest "empty regexp or query"
98 notmuch search --output=messages from:/carl/ or from:/cworth/ > OUTPUT
99 test_expect_equal_file cworth.msg-ids OUTPUT
100
101 test_begin_subtest "non-empty regexp and query"
102 notmuch search  from:/cworth@cworth.org/ and subject:patch | notmuch_search_sanitize > OUTPUT
103 cat <<EOF > EXPECTED
104 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)
105 thread:XXX   2009-11-18 [1/2] Carl Worth| Ingmar Vanhassel; [notmuch] [PATCH] Typsos (inbox unread)
106 thread:XXX   2009-11-18 [1/2] Carl Worth| Jan Janak; [notmuch] [PATCH] Older versions of install do not support -C. (inbox unread)
107 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)
108 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)
109 EOF
110 test_expect_equal_file EXPECTED OUTPUT
111
112 test_begin_subtest "regexp from search, duplicate term search"
113 notmuch search --output=messages from:/cworth/ > OUTPUT
114 test_expect_equal_file cworth.msg-ids OUTPUT
115
116 test_begin_subtest "long enough regexp matches only desired senders"
117 notmuch search --output=messages 'from:"/C.* Wo/"' > OUTPUT
118 test_expect_equal_file cworth.msg-ids OUTPUT
119
120 test_begin_subtest "shorter regexp matches one more sender"
121 notmuch search --output=messages 'from:"/C.* W/"' > OUTPUT
122 { echo id:1258544095-16616-1-git-send-email-chris@chris-wilson.co.uk; cat cworth.msg-ids; } > EXPECTED
123 test_expect_equal_file EXPECTED OUTPUT
124
125 test_begin_subtest "regexp subject search, non-ASCII"
126 notmuch search --output=messages subject:/accentuĂ©/ > OUTPUT
127 echo id:877h1wv7mg.fsf@inf-8657.int-evry.fr > EXPECTED
128 test_expect_equal_file EXPECTED OUTPUT
129
130 test_begin_subtest "regexp subject search, punctuation"
131 notmuch search subject:/\'X\'/ | notmuch_search_sanitize > OUTPUT
132 cat <<EOF > EXPECTED
133 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)
134 EOF
135 test_expect_equal_file EXPECTED OUTPUT
136
137 test_begin_subtest "regexp subject search, no punctuation"
138 notmuch search  subject:/X/ | notmuch_search_sanitize > OUTPUT
139 cat <<EOF > EXPECTED
140 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)
141 thread:XXX   2009-11-18 [4/4] Jjgod Jiang, Alexander Botero-Lowry; [notmuch] Mac OS X/Darwin compatibility issues (inbox unread)
142 EOF
143 test_expect_equal_file EXPECTED OUTPUT
144
145 test_begin_subtest "combine regexp from and subject"
146 notmuch search  subject:/-C/ and from:/.an.k/ | notmuch_search_sanitize > OUTPUT
147 cat <<EOF > EXPECTED
148 thread:XXX   2009-11-17 [1/2] Jan Janak| Carl Worth; [notmuch] [PATCH] Older versions of install do not support -C. (inbox unread)
149 EOF
150 test_expect_equal_file EXPECTED OUTPUT
151
152 test_begin_subtest "regexp error reporting"
153 notmuch search 'from:/unbalanced[/' 2>&1 | sed -e '/^A Xapian/ s/[^:]*$//' > OUTPUT
154 cat <<EOF > EXPECTED
155 notmuch search: A Xapian exception occurred
156 A Xapian exception occurred parsing query: Regexp error:
157 Query string was: from:/unbalanced[/
158 EOF
159 test_expect_equal_file EXPECTED OUTPUT
160
161 test_begin_subtest "empty mid search"
162 notmuch search --output=messages mid:yoom > OUTPUT
163 cp /dev/null EXPECTED
164 test_expect_equal_file EXPECTED OUTPUT
165
166 test_begin_subtest "non-empty mid regex search"
167 notmuch search --output=messages mid:/yoom/ > OUTPUT
168 test_expect_equal_file cworth.msg-ids OUTPUT
169
170 test_begin_subtest "combine regexp mid and subject"
171 notmuch search  subject:/-C/ and mid:/y..m/ | notmuch_search_sanitize > OUTPUT
172 cat <<EOF > EXPECTED
173 thread:XXX   2009-11-18 [1/2] Carl Worth| Jan Janak; [notmuch] [PATCH] Older versions of install do not support -C. (inbox unread)
174 EOF
175 test_expect_equal_file EXPECTED OUTPUT
176
177 test_begin_subtest "unanchored tag search"
178 notmuch search tag:signed or tag:inbox > EXPECTED
179 notmuch search tag:/i/ > OUTPUT
180 test_expect_equal_file EXPECTED OUTPUT
181
182 notmuch tag +testsi '*'
183 test_begin_subtest "anchored tag search"
184 notmuch search tag:signed > EXPECTED
185 notmuch search tag:/^si/ > OUTPUT
186 test_expect_equal_file EXPECTED OUTPUT
187
188 test_done