]> git.notmuchmail.org Git - notmuch/blob - test/T650-regexp-query.sh
f2ae1387eea086c9bcb1b3227a8d702b8bd81767
[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 # these headers will generate no document terms
15 add_message '[from]="-" [subject]="empty from"'
16 add_message '[subject]="-"'
17
18 test_begin_subtest "null from: search"
19 test_subtest_known_broken
20 notmuch search 'from:""' | notmuch_search_sanitize > OUTPUT
21 cat <<EOF > EXPECTED
22 thread:XXX   2001-01-05 [1/1] -; empty from (inbox unread)
23 EOF
24 test_expect_equal_file EXPECTED OUTPUT
25
26 test_begin_subtest "null subject: search"
27 test_subtest_known_broken
28 notmuch search 'subject:""' | notmuch_search_sanitize > OUTPUT
29 cat <<EOF > EXPECTED
30 thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; - (inbox unread)
31 EOF
32 test_expect_equal_file EXPECTED OUTPUT
33
34 test_begin_subtest "xapian wildcard search for from:"
35 notmuch search --output=messages 'from:cwo*' > OUTPUT
36 test_expect_equal_file cworth.msg-ids OUTPUT
37
38 test_begin_subtest "xapian wildcard search for subject:"
39 test_expect_equal $(notmuch count 'subject:count*') 1
40
41 test_begin_subtest "regexp from search, case sensitive"
42 notmuch search --output=messages from:/carl/ > OUTPUT
43 test_expect_equal_file /dev/null OUTPUT
44
45 test_begin_subtest "empty regexp or query"
46 notmuch search --output=messages from:/carl/ or from:/cworth/ > OUTPUT
47 test_expect_equal_file cworth.msg-ids OUTPUT
48
49 test_begin_subtest "non-empty regexp and query"
50 notmuch search  from:/cworth@cworth.org/ and subject:patch | notmuch_search_sanitize > OUTPUT
51 cat <<EOF > EXPECTED
52 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)
53 thread:XXX   2009-11-18 [1/2] Carl Worth| Ingmar Vanhassel; [notmuch] [PATCH] Typsos (inbox unread)
54 thread:XXX   2009-11-18 [1/2] Carl Worth| Jan Janak; [notmuch] [PATCH] Older versions of install do not support -C. (inbox unread)
55 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)
56 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)
57 EOF
58 test_expect_equal_file EXPECTED OUTPUT
59
60 test_begin_subtest "regexp from search, duplicate term search"
61 notmuch search --output=messages from:/cworth/ > OUTPUT
62 test_expect_equal_file cworth.msg-ids OUTPUT
63
64 test_begin_subtest "long enough regexp matches only desired senders"
65 notmuch search --output=messages 'from:"/C.* Wo/"' > OUTPUT
66 test_expect_equal_file cworth.msg-ids OUTPUT
67
68 test_begin_subtest "shorter regexp matches one more sender"
69 notmuch search --output=messages 'from:"/C.* W/"' > OUTPUT
70 { echo id:1258544095-16616-1-git-send-email-chris@chris-wilson.co.uk; cat cworth.msg-ids; } > EXPECTED
71 test_expect_equal_file EXPECTED OUTPUT
72
73 test_begin_subtest "regexp subject search, non-ASCII"
74 notmuch search --output=messages subject:/accentuĂ©/ > OUTPUT
75 echo id:877h1wv7mg.fsf@inf-8657.int-evry.fr > EXPECTED
76 test_expect_equal_file EXPECTED OUTPUT
77
78 test_begin_subtest "regexp subject search, punctuation"
79 notmuch search subject:/\'X\'/ | notmuch_search_sanitize > OUTPUT
80 cat <<EOF > EXPECTED
81 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)
82 EOF
83 test_expect_equal_file EXPECTED OUTPUT
84
85 test_begin_subtest "regexp subject search, no punctuation"
86 notmuch search  subject:/X/ | notmuch_search_sanitize > OUTPUT
87 cat <<EOF > EXPECTED
88 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)
89 thread:XXX   2009-11-18 [4/4] Jjgod Jiang, Alexander Botero-Lowry; [notmuch] Mac OS X/Darwin compatibility issues (inbox unread)
90 EOF
91 test_expect_equal_file EXPECTED OUTPUT
92
93 test_begin_subtest "combine regexp from and subject"
94 notmuch search  subject:/-C/ and from:/.an.k/ | notmuch_search_sanitize > OUTPUT
95 cat <<EOF > EXPECTED
96 thread:XXX   2009-11-17 [1/2] Jan Janak| Carl Worth; [notmuch] [PATCH] Older versions of install do not support -C. (inbox unread)
97 EOF
98 test_expect_equal_file EXPECTED OUTPUT
99
100 test_begin_subtest "regexp error reporting"
101 notmuch search 'from:/unbalanced[/' 1>OUTPUT 2>&1
102 cat <<EOF > EXPECTED
103 notmuch search: A Xapian exception occurred
104 A Xapian exception occurred parsing query: Invalid regular expression
105 Query string was: from:/unbalanced[/
106 EOF
107 test_expect_equal_file EXPECTED OUTPUT
108
109 test_done