]> git.notmuchmail.org Git - notmuch/blob - test/T100-search-by-folder.sh
emacs: Add new option notmuch-search-hide-excluded
[notmuch] / test / T100-search-by-folder.sh
1 #!/usr/bin/env bash
2 test_description='"notmuch search" by folder: and path: (with variations)'
3 . $(dirname "$0")/test-lib.sh || exit 1
4
5 add_message '[dir]=bad' '[subject]="To the bone"'
6 add_message '[dir]=.' '[subject]="Top level"'
7 add_message '[dir]=bad/news' '[subject]="Bears"'
8 mkdir -p "${MAIL_DIR}/duplicate/bad/news"
9 cp "$gen_msg_filename" "${MAIL_DIR}/duplicate/bad/news"
10
11 add_message '[dir]=things' '[subject]="These are a few"'
12 add_message '[dir]=things/favorite' '[subject]="Raindrops, whiskers, kettles"'
13 add_message '[dir]=things/bad' '[subject]="Bites, stings, sad feelings"'
14
15 test_begin_subtest "Single-world folder: specification (multiple results)"
16 output=$(notmuch search folder:bad folder:bad/news folder:things/bad | notmuch_search_sanitize)
17 test_expect_equal "$output" "thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; To the bone (inbox unread)
18 thread:XXX   2001-01-05 [1/1(2)] Notmuch Test Suite; Bears (inbox unread)
19 thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Bites, stings, sad feelings (inbox unread)"
20
21 test_begin_subtest "Top level folder"
22 output=$(notmuch search folder:'""' | notmuch_search_sanitize)
23 test_expect_equal "$output" "thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Top level (inbox unread)"
24
25 test_begin_subtest "Two-word path to narrow results to one"
26 output=$(notmuch search folder:bad/news | notmuch_search_sanitize)
27 test_expect_equal "$output" "thread:XXX   2001-01-05 [1/1(2)] Notmuch Test Suite; Bears (inbox unread)"
28
29 test_begin_subtest "Folder search with --output=files"
30 output=$(notmuch search --output=files folder:bad/news | notmuch_search_files_sanitize)
31 test_expect_equal "$output" "MAIL_DIR/bad/news/msg-003
32 MAIL_DIR/duplicate/bad/news/msg-003"
33
34 test_begin_subtest "After removing duplicate instance of matching path"
35 rm -r "${MAIL_DIR}/bad/news"
36 notmuch new
37 output=$(notmuch search folder:bad/news | notmuch_search_sanitize)
38 test_expect_equal "$output" ""
39
40 test_begin_subtest "Folder search with --output=files part #2"
41 output=$(notmuch search --output=files folder:duplicate/bad/news | notmuch_search_files_sanitize)
42 test_expect_equal "$output" "MAIL_DIR/duplicate/bad/news/msg-003"
43
44 test_begin_subtest "After removing duplicate instance of matching path part #2"
45 output=$(notmuch search folder:duplicate/bad/news | notmuch_search_sanitize)
46 test_expect_equal "$output" "thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Bears (inbox unread)"
47
48 test_begin_subtest "After rename, old path returns nothing"
49 mv "${MAIL_DIR}/duplicate/bad/news" "${MAIL_DIR}/duplicate/bad/olds"
50 notmuch new
51 output=$(notmuch search folder:duplicate/bad/news | notmuch_search_sanitize)
52 test_expect_equal "$output" ""
53
54 test_begin_subtest "After rename, new path returns result"
55 output=$(notmuch search folder:duplicate/bad/olds | notmuch_search_sanitize)
56 test_expect_equal "$output" "thread:XXX   2001-01-05 [1/1] Notmuch Test Suite; Bears (inbox unread)"
57
58 # folder: and path: searches with full corpus
59 add_email_corpus
60
61 # add some more dupes
62 cp $MAIL_DIR/foo/new/03:2, $MAIL_DIR/new
63 cp $MAIL_DIR/bar/baz/05:2, $MAIL_DIR/foo
64 notmuch new >/dev/null
65
66 test_begin_subtest "folder: search"
67 output=$(notmuch search --output=files folder:foo | notmuch_search_files_sanitize | sort)
68 # bar/baz/05:2, is a duplicate of foo/05:2,
69 # new/03:2, is a duplicate of foo/new/03:2,
70 test_expect_equal "$output" "MAIL_DIR/bar/baz/05:2,
71 MAIL_DIR/foo/05:2,
72 MAIL_DIR/foo/06:2,
73 MAIL_DIR/foo/cur/07:2,
74 MAIL_DIR/foo/cur/08:2,
75 MAIL_DIR/foo/new/03:2,
76 MAIL_DIR/foo/new/09:2,
77 MAIL_DIR/foo/new/10:2,
78 MAIL_DIR/new/03:2,"
79
80 test_begin_subtest "top level folder: search"
81 output=$(notmuch search --output=files folder:'""' | notmuch_search_files_sanitize | sort)
82 # bar/18:2, is a duplicate of cur/51:2,
83 # foo/new/03:2, is a duplicate of new/03:2,
84 test_expect_equal "$output" "MAIL_DIR/01:2,
85 MAIL_DIR/02:2,
86 MAIL_DIR/bar/18:2,
87 MAIL_DIR/cur/29:2,
88 MAIL_DIR/cur/30:2,
89 MAIL_DIR/cur/31:2,
90 MAIL_DIR/cur/32:2,
91 MAIL_DIR/cur/33:2,
92 MAIL_DIR/cur/34:2,
93 MAIL_DIR/cur/35:2,
94 MAIL_DIR/cur/36:2,
95 MAIL_DIR/cur/37:2,
96 MAIL_DIR/cur/38:2,
97 MAIL_DIR/cur/39:2,
98 MAIL_DIR/cur/40:2,
99 MAIL_DIR/cur/41:2,
100 MAIL_DIR/cur/42:2,
101 MAIL_DIR/cur/43:2,
102 MAIL_DIR/cur/44:2,
103 MAIL_DIR/cur/45:2,
104 MAIL_DIR/cur/46:2,
105 MAIL_DIR/cur/47:2,
106 MAIL_DIR/cur/48:2,
107 MAIL_DIR/cur/49:2,
108 MAIL_DIR/cur/50:2,
109 MAIL_DIR/cur/51:2,
110 MAIL_DIR/cur/52:2,
111 MAIL_DIR/cur/53:2,
112 MAIL_DIR/foo/new/03:2,
113 MAIL_DIR/new/03:2,
114 MAIL_DIR/new/04:2,"
115
116 test_begin_subtest "path: search"
117 output=$(notmuch search --output=files path:"bar" | notmuch_search_files_sanitize | sort)
118 # cur/51:2, is a duplicate of bar/18:2,
119 test_expect_equal "$output" "MAIL_DIR/bar/17:2,
120 MAIL_DIR/bar/18:2,
121 MAIL_DIR/cur/51:2,"
122
123 test_begin_subtest "top level path: search"
124 output=$(notmuch search --output=files path:'""' | notmuch_search_files_sanitize | sort)
125 test_expect_equal "$output" "MAIL_DIR/01:2,
126 MAIL_DIR/02:2,"
127
128 test_begin_subtest "recursive path: search"
129 output=$(notmuch search --output=files path:"bar/**" | notmuch_search_files_sanitize | sort)
130 # cur/51:2, is a duplicate of bar/18:2,
131 # foo/05:2, is a duplicate of bar/baz/05:2,
132 test_expect_equal "$output" "MAIL_DIR/bar/17:2,
133 MAIL_DIR/bar/18:2,
134 MAIL_DIR/bar/baz/05:2,
135 MAIL_DIR/bar/baz/23:2,
136 MAIL_DIR/bar/baz/24:2,
137 MAIL_DIR/bar/baz/cur/25:2,
138 MAIL_DIR/bar/baz/cur/26:2,
139 MAIL_DIR/bar/baz/new/27:2,
140 MAIL_DIR/bar/baz/new/28:2,
141 MAIL_DIR/bar/cur/19:2,
142 MAIL_DIR/bar/cur/20:2,
143 MAIL_DIR/bar/new/21:2,
144 MAIL_DIR/bar/new/22:2,
145 MAIL_DIR/cur/51:2,
146 MAIL_DIR/foo/05:2,"
147
148 test_done