]> git.notmuchmail.org Git - notmuch/blob - test/search
test: Search for non-existent message should return nothing
[notmuch] / test / search
1 #!/bin/bash
2 test_description='"notmuch search" in several variations'
3 . ./test-lib.sh
4
5 add_email_corpus
6
7 test_begin_subtest "Search body"
8 add_message '[subject]="body search"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"' [body]=bodysearchtest
9 output=$(notmuch search bodysearchtest | notmuch_search_sanitize)
10 test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; body search (inbox unread)"
11
12 test_begin_subtest "Search by from:"
13 add_message '[subject]="search by from"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"' [from]=searchbyfrom
14 output=$(notmuch search from:searchbyfrom | notmuch_search_sanitize)
15 test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] searchbyfrom; search by from (inbox unread)"
16
17 test_begin_subtest "Search by to:"
18 add_message '[subject]="search by to"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"' [to]=searchbyto
19 output=$(notmuch search to:searchbyto | notmuch_search_sanitize)
20 test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; search by to (inbox unread)"
21
22 test_begin_subtest "Search by subject:"
23 add_message [subject]=subjectsearchtest '[date]="Sat, 01 Jan 2000 12:00:00 -0000"'
24 output=$(notmuch search subject:subjectsearchtest | notmuch_search_sanitize)
25 test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; subjectsearchtest (inbox unread)"
26
27 test_begin_subtest "Search by id:"
28 add_message '[subject]="search by id"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"'
29 output=$(notmuch search id:${gen_msg_id} | notmuch_search_sanitize)
30 test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; search by id (inbox unread)"
31
32 test_begin_subtest "Search by tag:"
33 add_message '[subject]="search by tag"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"'
34 notmuch tag +searchbytag id:${gen_msg_id}
35 output=$(notmuch search tag:searchbytag | notmuch_search_sanitize)
36 test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; search by tag (inbox searchbytag unread)"
37
38 test_begin_subtest "Search by thread:"
39 add_message '[subject]="search by thread"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"'
40 thread_id=$(notmuch search id:${gen_msg_id} | sed -e "s/thread:\([a-f0-9]*\).*/\1/")
41 output=$(notmuch search thread:${thread_id} | notmuch_search_sanitize)
42 test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; search by thread (inbox unread)"
43
44 test_begin_subtest "Search body (phrase)"
45 add_message '[subject]="body search (phrase)"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"' '[body]="body search (phrase)"'
46 add_message '[subject]="negative result"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"' '[body]="This phrase should not match the body search"'
47 output=$(notmuch search '"body search (phrase)"' | notmuch_search_sanitize)
48 test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; body search (phrase) (inbox unread)"
49
50 test_begin_subtest "Search by from: (address)"
51 add_message '[subject]="search by from (address)"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"' [from]=searchbyfrom@example.com
52 output=$(notmuch search from:searchbyfrom@example.com | notmuch_search_sanitize)
53 test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] searchbyfrom@example.com; search by from (address) (inbox unread)"
54
55 test_begin_subtest "Search by from: (name)"
56 add_message '[subject]="search by from (name)"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"' '[from]="Search By From Name <test@example.com>"'
57 output=$(notmuch search from:"Search By From Name" | notmuch_search_sanitize)
58 test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] Search By From Name; search by from (name) (inbox unread)"
59
60 test_begin_subtest "Search by to: (address)"
61 add_message '[subject]="search by to (address)"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"' [to]=searchbyto@example.com
62 output=$(notmuch search to:searchbyto@example.com | notmuch_search_sanitize)
63 test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; search by to (address) (inbox unread)"
64
65 test_begin_subtest "Search by to: (name)"
66 add_message '[subject]="search by to (name)"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"' '[to]="Search By To Name <test@example.com>"'
67 output=$(notmuch search to:"Search By To Name" | notmuch_search_sanitize)
68 test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; search by to (name) (inbox unread)"
69
70 test_begin_subtest "Search by subject: (phrase)"
71 add_message '[subject]="subject search test (phrase)"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"'
72 add_message '[subject]="this phrase should not match the subject search test"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"'
73 output=$(notmuch search 'subject:"subject search test (phrase)"' | notmuch_search_sanitize)
74 test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; subject search test (phrase) (inbox unread)"
75
76 test_begin_subtest 'Search for all messages ("*"
77 output=$(notmuch search '*' | notmuch_search_sanitize)
78 test_expect_equal):' "$output" "thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; body search (inbox unread)
79 thread:XXX   2000-01-01 [1/1] searchbyfrom; search by from (inbox unread)
80 thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; search by to (inbox unread)
81 thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; subjectsearchtest (inbox unread)
82 thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; search by id (inbox unread)
83 thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; search by tag (inbox searchbytag unread)
84 thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; search by thread (inbox unread)
85 thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; body search (phrase) (inbox unread)
86 thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; negative result (inbox unread)
87 thread:XXX   2000-01-01 [1/1] searchbyfrom@example.com; search by from (address) (inbox unread)
88 thread:XXX   2000-01-01 [1/1] Search By From Name; search by from (name) (inbox unread)
89 thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; search by to (address) (inbox unread)
90 thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; search by to (name) (inbox unread)
91 thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; subject search test (phrase) (inbox unread)
92 thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; this phrase should not match the subject search test (inbox unread)"
93
94 test_begin_subtest "Search body (utf-8):"
95 add_message '[subject]="utf8-message-body-subject"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"' '[body]="message body utf8: bödý"'
96 output=$(notmuch search "bödý" | notmuch_search_sanitize)
97 test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] Notmuch Test Suite; utf8-message-body-subject (inbox unread)"
98
99 test_expect_success "Search for non-existent message prints nothing" '
100 echo -n > expected &&
101 notmuch search "no-message-matches-this" > actual &&
102 test_cmp expected actual'
103
104 test_done