]> git.notmuchmail.org Git - notmuch/blob - test/new
test: new: Fix intermittent test failures with --debug
[notmuch] / test / new
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 output=$(NOTMUCH_NEW 2>&1)
173 test_expect_equal "$output" \
174 "Note: Ignoring non-mail file: ${MAIL_DIR}/.git/config
175 Note: Ignoring non-mail file: ${MAIL_DIR}/.ignored_hidden_file
176 Note: Ignoring non-mail file: ${MAIL_DIR}/ignored_file
177 Added 1 new message to the database."
178
179 test_begin_subtest "Ignore files and directories specified in new.ignore"
180 generate_message
181 notmuch config set new.ignore .git ignored_file .ignored_hidden_file
182 touch "${MAIL_DIR}"/.git # change .git's mtime for notmuch new to rescan.
183 output=$(NOTMUCH_NEW 2>&1)
184 test_expect_equal "$output" "Added 1 new message to the database."
185
186 test_begin_subtest "Ignore files and directories specified in new.ignore (multiple occurrences)"
187 notmuch config set new.ignore .git ignored_file .ignored_hidden_file
188 touch "${MAIL_DIR}"/.git # change .git's mtime for notmuch new to rescan.
189 mkdir -p "${MAIL_DIR}"/one/two/three/.git
190 notmuch new > /dev/null # ensure that files/folders will be printed in ASCII order.
191 touch "${MAIL_DIR}"/{one,one/two,one/two/three}/ignored_file
192 output=$(NOTMUCH_NEW --debug 2>&1 | sort)
193 test_expect_equal "$output" \
194 "(D) add_files_recursive, pass 1: explicitly ignoring ${MAIL_DIR}/.git
195 (D) add_files_recursive, pass 1: explicitly ignoring ${MAIL_DIR}/one/two/three/.git
196 (D) add_files_recursive, pass 2: explicitly ignoring ${MAIL_DIR}/.git
197 (D) add_files_recursive, pass 2: explicitly ignoring ${MAIL_DIR}/.ignored_hidden_file
198 (D) add_files_recursive, pass 2: explicitly ignoring ${MAIL_DIR}/ignored_file
199 (D) add_files_recursive, pass 2: explicitly ignoring ${MAIL_DIR}/one/ignored_file
200 (D) add_files_recursive, pass 2: explicitly ignoring ${MAIL_DIR}/one/two/ignored_file
201 (D) add_files_recursive, pass 2: explicitly ignoring ${MAIL_DIR}/one/two/three/.git
202 (D) add_files_recursive, pass 2: explicitly ignoring ${MAIL_DIR}/one/two/three/ignored_file
203 No new mail."
204
205
206 test_done