2 test_description='"notmuch search" by folder: and path: (with variations)'
3 . $(dirname "$0")/test-lib.sh || exit 1
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"
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"'
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)"
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)"
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)"
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"
34 test_begin_subtest "After removing duplicate instance of matching path"
35 rm -r "${MAIL_DIR}/bad/news"
37 output=$(notmuch search folder:bad/news | notmuch_search_sanitize)
38 test_expect_equal "$output" ""
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"
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)"
48 test_begin_subtest "After rename, old path returns nothing"
49 mv "${MAIL_DIR}/duplicate/bad/news" "${MAIL_DIR}/duplicate/bad/olds"
51 output=$(notmuch search folder:duplicate/bad/news | notmuch_search_sanitize)
52 test_expect_equal "$output" ""
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)"
58 # folder: and path: searches with full corpus
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
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,
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,
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,
112 MAIL_DIR/foo/new/03:2,
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,
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,
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,
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,