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