]> git.notmuchmail.org Git - notmuch/blob - test/T050-new.sh
cli: delete directory documents on directory removal
[notmuch] / test / T050-new.sh
1 #!/usr/bin/env bash
2 test_description='"notmuch new" in several variations'
3 . ./test-lib.sh || exit 1
4
5 test_begin_subtest "No new messages"
6 output=$(NOTMUCH_NEW --debug)
7 test_expect_equal "$output" "No new mail."
8
9
10 test_begin_subtest "Single new message"
11 generate_message
12 output=$(NOTMUCH_NEW --debug)
13 test_expect_equal "$output" "Added 1 new message to the database."
14
15
16 test_begin_subtest "Multiple new messages"
17 generate_message
18 generate_message
19 output=$(NOTMUCH_NEW --debug)
20 test_expect_equal "$output" "Added 2 new messages to the database."
21
22
23 test_begin_subtest "No new messages (non-empty DB)"
24 output=$(NOTMUCH_NEW --debug)
25 test_expect_equal "$output" "No new mail."
26
27
28 test_begin_subtest "New directories"
29 rm -rf "${MAIL_DIR}"/* "${MAIL_DIR}"/.notmuch
30 mkdir "${MAIL_DIR}"/def
31 mkdir "${MAIL_DIR}"/ghi
32 generate_message [dir]=def
33
34 output=$(NOTMUCH_NEW --debug)
35 test_expect_equal "$output" "Added 1 new message to the database."
36
37
38 test_begin_subtest "Alternate inode order"
39
40 rm -rf "${MAIL_DIR}"/.notmuch
41 mv "${MAIL_DIR}"/ghi "${MAIL_DIR}"/abc
42 rm "${MAIL_DIR}"/def/*
43 generate_message [dir]=abc
44
45 output=$(NOTMUCH_NEW --debug)
46 test_expect_equal "$output" "Added 1 new message to the database."
47
48
49 test_begin_subtest "Message moved in"
50 rm -rf "${MAIL_DIR}"/* "${MAIL_DIR}"/.notmuch
51 generate_message
52 tmp_msg_filename=tmp/"$gen_msg_filename"
53 mkdir -p "$(dirname "$tmp_msg_filename")"
54 mv "$gen_msg_filename" "$tmp_msg_filename"
55 notmuch new > /dev/null
56 mv "$tmp_msg_filename" "$gen_msg_filename"
57 output=$(NOTMUCH_NEW --debug)
58 test_expect_equal "$output" "Added 1 new message to the database."
59
60
61 test_begin_subtest "Renamed message"
62
63 generate_message
64 notmuch new > /dev/null
65 mv "$gen_msg_filename" "${gen_msg_filename}"-renamed
66 output=$(NOTMUCH_NEW --debug)
67 test_expect_equal "$output" "(D) add_files_recursive, pass 2: queuing passed file ${gen_msg_filename} for deletion from database
68 No new mail. Detected 1 file rename."
69
70
71 test_begin_subtest "Deleted message"
72
73 rm "${gen_msg_filename}"-renamed
74 output=$(NOTMUCH_NEW --debug)
75 test_expect_equal "$output" "(D) add_files_recursive, pass 3: queuing leftover file ${gen_msg_filename}-renamed for deletion from database
76 No new mail. Removed 1 message."
77
78
79
80 test_begin_subtest "Renamed directory"
81
82 generate_message [dir]=dir
83 generate_message [dir]=dir
84 generate_message [dir]=dir
85
86 notmuch new > /dev/null
87
88 mv "${MAIL_DIR}"/dir "${MAIL_DIR}"/dir-renamed
89
90 output=$(NOTMUCH_NEW --debug)
91 test_expect_equal "$output" "(D) add_files_recursive, pass 2: queuing passed directory ${MAIL_DIR}/dir for deletion from database
92 No new mail. Detected 3 file renames."
93
94
95 test_begin_subtest "Deleted directory"
96 rm -rf "${MAIL_DIR}"/dir-renamed
97
98 output=$(NOTMUCH_NEW --debug)
99 test_expect_equal "$output" "(D) add_files_recursive, pass 2: queuing passed directory ${MAIL_DIR}/dir-renamed for deletion from database
100 No new mail. Removed 3 messages."
101
102
103 test_begin_subtest "New directory (at end of list)"
104
105 generate_message [dir]=zzz
106 generate_message [dir]=zzz
107 generate_message [dir]=zzz
108
109 output=$(NOTMUCH_NEW --debug)
110 test_expect_equal "$output" "Added 3 new messages to the database."
111
112
113 test_begin_subtest "Deleted directory (end of list)"
114
115 rm -rf "${MAIL_DIR}"/zzz
116
117 output=$(NOTMUCH_NEW --debug)
118 test_expect_equal "$output" "(D) add_files_recursive, pass 3: queuing leftover directory ${MAIL_DIR}/zzz for deletion from database
119 No new mail. Removed 3 messages."
120
121
122 test_begin_subtest "New symlink to directory"
123
124 rm -rf "${MAIL_DIR}"/.notmuch
125 mv "${MAIL_DIR}" "${TMP_DIRECTORY}"/actual_maildir
126
127 mkdir "${MAIL_DIR}"
128 ln -s "${TMP_DIRECTORY}"/actual_maildir "${MAIL_DIR}"/symlink
129
130 output=$(NOTMUCH_NEW --debug)
131 test_expect_equal "$output" "Added 1 new message to the database."
132
133
134 test_begin_subtest "New symlink to a file"
135 generate_message
136 external_msg_filename="${TMP_DIRECTORY}"/external/"$(basename "$gen_msg_filename")"
137 mkdir -p "$(dirname "$external_msg_filename")"
138 mv "$gen_msg_filename" "$external_msg_filename"
139 ln -s "$external_msg_filename" "$gen_msg_filename"
140 output=$(NOTMUCH_NEW --debug)
141 test_expect_equal "$output" "Added 1 new message to the database."
142
143
144 test_begin_subtest "Broken symlink aborts"
145 ln -s does-not-exist "${MAIL_DIR}/broken"
146 output=$(NOTMUCH_NEW --debug 2>&1)
147 test_expect_equal "$output" \
148 "Error reading file ${MAIL_DIR}/broken: No such file or directory
149 Note: A fatal error was encountered: Something went wrong trying to read or write a file
150 No new mail."
151 rm "${MAIL_DIR}/broken"
152
153
154 test_begin_subtest "New two-level directory"
155
156 generate_message [dir]=two/levels
157 generate_message [dir]=two/levels
158 generate_message [dir]=two/levels
159
160 output=$(NOTMUCH_NEW --debug)
161 test_expect_equal "$output" "Added 3 new messages to the database."
162
163
164 test_begin_subtest "Deleted two-level directory"
165
166 rm -rf "${MAIL_DIR}"/two
167
168 output=$(NOTMUCH_NEW --debug)
169 test_expect_equal "$output" "(D) add_files_recursive, pass 3: queuing leftover directory ${MAIL_DIR}/two for deletion from database
170 No new mail. Removed 3 messages."
171
172 test_begin_subtest "Support single-message mbox"
173 cat > "${MAIL_DIR}"/mbox_file1 <<EOF
174 From test_suite@notmuchmail.org Fri Jan  5 15:43:57 2001
175 From: Notmuch Test Suite <test_suite@notmuchmail.org>
176 To: Notmuch Test Suite <test_suite@notmuchmail.org>
177 Subject: Test mbox message 1
178
179 Body.
180 EOF
181 output=$(NOTMUCH_NEW --debug 2>&1)
182 test_expect_equal "$output" "Added 1 new message to the database."
183
184 # This test requires that notmuch new has been run at least once.
185 test_begin_subtest "Skip and report non-mail files"
186 generate_message
187 mkdir -p "${MAIL_DIR}"/.git && touch "${MAIL_DIR}"/.git/config
188 touch "${MAIL_DIR}"/ignored_file
189 touch "${MAIL_DIR}"/.ignored_hidden_file
190 cat > "${MAIL_DIR}"/mbox_file <<EOF
191 From test_suite@notmuchmail.org Fri Jan  5 15:43:57 2001
192 From: Notmuch Test Suite <test_suite@notmuchmail.org>
193 To: Notmuch Test Suite <test_suite@notmuchmail.org>
194 Subject: Test mbox message 1
195
196 Body.
197
198 From test_suite@notmuchmail.org Fri Jan  5 15:43:57 2001
199 From: Notmuch Test Suite <test_suite@notmuchmail.org>
200 To: Notmuch Test Suite <test_suite@notmuchmail.org>
201 Subject: Test mbox message 2
202
203 Body 2.
204 EOF
205 output=$(NOTMUCH_NEW --debug 2>&1)
206 test_expect_equal "$output" \
207 "Note: Ignoring non-mail file: ${MAIL_DIR}/.git/config
208 Note: Ignoring non-mail file: ${MAIL_DIR}/.ignored_hidden_file
209 Note: Ignoring non-mail file: ${MAIL_DIR}/ignored_file
210 Note: Ignoring non-mail file: ${MAIL_DIR}/mbox_file
211 Added 1 new message to the database."
212 rm "${MAIL_DIR}"/mbox_file
213
214 test_begin_subtest "Ignore files and directories specified in new.ignore"
215 generate_message
216 notmuch config set new.ignore .git ignored_file .ignored_hidden_file
217 touch "${MAIL_DIR}"/.git # change .git's mtime for notmuch new to rescan.
218 output=$(NOTMUCH_NEW 2>&1)
219 test_expect_equal "$output" "Added 1 new message to the database."
220
221 test_begin_subtest "Ignore files and directories specified in new.ignore (multiple occurrences)"
222 notmuch config set new.ignore .git ignored_file .ignored_hidden_file
223 notmuch new > /dev/null # ensure that files/folders will be printed in ASCII order.
224 touch "${MAIL_DIR}"/.git # change .git's mtime for notmuch new to rescan.
225 touch "${MAIL_DIR}"      # likewise for MAIL_DIR
226 mkdir -p "${MAIL_DIR}"/one/two/three/.git
227 touch "${MAIL_DIR}"/{one,one/two,one/two/three}/ignored_file
228 output=$(NOTMUCH_NEW --debug 2>&1 | sort)
229 test_expect_equal "$output" \
230 "(D) add_files_recursive, pass 1: explicitly ignoring ${MAIL_DIR}/.git
231 (D) add_files_recursive, pass 1: explicitly ignoring ${MAIL_DIR}/.ignored_hidden_file
232 (D) add_files_recursive, pass 1: explicitly ignoring ${MAIL_DIR}/ignored_file
233 (D) add_files_recursive, pass 1: explicitly ignoring ${MAIL_DIR}/one/ignored_file
234 (D) add_files_recursive, pass 1: explicitly ignoring ${MAIL_DIR}/one/two/ignored_file
235 (D) add_files_recursive, pass 1: explicitly ignoring ${MAIL_DIR}/one/two/three/.git
236 (D) add_files_recursive, pass 1: explicitly ignoring ${MAIL_DIR}/one/two/three/ignored_file
237 (D) add_files_recursive, pass 2: explicitly ignoring ${MAIL_DIR}/.git
238 (D) add_files_recursive, pass 2: explicitly ignoring ${MAIL_DIR}/.ignored_hidden_file
239 (D) add_files_recursive, pass 2: explicitly ignoring ${MAIL_DIR}/ignored_file
240 (D) add_files_recursive, pass 2: explicitly ignoring ${MAIL_DIR}/one/ignored_file
241 (D) add_files_recursive, pass 2: explicitly ignoring ${MAIL_DIR}/one/two/ignored_file
242 (D) add_files_recursive, pass 2: explicitly ignoring ${MAIL_DIR}/one/two/three/.git
243 (D) add_files_recursive, pass 2: explicitly ignoring ${MAIL_DIR}/one/two/three/ignored_file
244 No new mail."
245
246
247 test_begin_subtest "Don't stop for ignored broken symlinks"
248 notmuch config set new.ignore .git ignored_file .ignored_hidden_file broken_link
249 ln -s i_do_not_exist "${MAIL_DIR}"/broken_link
250 output=$(NOTMUCH_NEW 2>&1)
251 test_expect_equal "$output" "No new mail."
252
253 test_begin_subtest "Quiet: No new mail."
254 output=$(NOTMUCH_NEW --quiet)
255 test_expect_equal "$output" ""
256
257 test_begin_subtest "Quiet: new, removed and renamed messages."
258 # new
259 generate_message
260 # deleted
261 notmuch search --format=text0 --output=files --limit=1 '*' | xargs -0 rm
262 # moved
263 mkdir "${MAIL_DIR}"/moved_messages
264 notmuch search --format=text0 --output=files --offset=1 --limit=1 '*' | xargs -0 -I {} mv {} "${MAIL_DIR}"/moved_messages
265 output=$(NOTMUCH_NEW --quiet)
266 test_expect_equal "$output" ""
267
268 OLDCONFIG=$(notmuch config get new.tags)
269
270 test_begin_subtest "Empty tags in new.tags are forbidden"
271 notmuch config set new.tags "foo;;bar"
272 output=$(NOTMUCH_NEW --debug 2>&1)
273 test_expect_equal "$output" "Error: tag '' in new.tags: empty tag forbidden"
274
275 test_begin_subtest "Tags starting with '-' in new.tags are forbidden"
276 notmuch config set new.tags "-foo;bar"
277 output=$(NOTMUCH_NEW --debug 2>&1)
278 test_expect_equal "$output" "Error: tag '-foo' in new.tags: tag starting with '-' forbidden"
279
280 test_expect_code 1 "Invalid tags set exit code" \
281     "NOTMUCH_NEW --debug 2>&1"
282
283 notmuch config set new.tags $OLDCONFIG
284
285
286 test_begin_subtest "Xapian exception: read only files"
287 chmod u-w  ${MAIL_DIR}/.notmuch/xapian/*.DB
288 output=$(NOTMUCH_NEW --debug 2>&1 | sed 's/: .*$//' )
289 chmod u+w  ${MAIL_DIR}/.notmuch/xapian/*.DB
290 test_expect_equal "$output" "A Xapian exception occurred opening database"
291
292 test_done