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