2 test_description="\"notmuch dump\" and \"notmuch restore\""
3 . $(dirname "$0")/test-lib.sh || exit 1
5 NOTMUCH_NEW > /dev/null
6 test_begin_subtest "dump header"
8 #notmuch-dump batch-tag:3 config,properties,tags
11 test_expect_equal_file EXPECTED OUTPUT
14 test_begin_subtest "Dumping all tags"
15 test_expect_success 'generate_message && notmuch new && notmuch dump > dump.expected'
17 # The use of from:cworth is rather arbitrary: it matches some of the
18 # email corpus' messages, but not all of them.
20 test_begin_subtest "Dumping all tags II"
22 'notmuch tag +ABC +DEF -- from:cworth &&
23 notmuch dump > dump-ABC_DEF.expected &&
24 ! cmp dump.expected dump-ABC_DEF.expected'
26 test_begin_subtest "Clearing all tags"
28 'sed -e "s/(\([^(]*\))$/()/" < dump.expected > clear.expected &&
29 notmuch restore --input=clear.expected &&
30 notmuch dump > clear.actual &&
31 test_cmp clear.expected clear.actual'
33 test_begin_subtest "Clearing all tags"
35 'notmuch tag +ABC +DEF -- from:cworth &&
36 notmuch restore --accumulate < dump.expected &&
37 notmuch dump > dump.actual &&
38 test_cmp dump-ABC_DEF.expected dump.actual'
40 test_begin_subtest "Restoring original tags"
42 'notmuch restore --input=dump.expected &&
43 notmuch dump > dump.actual &&
44 test_cmp dump.expected dump.actual'
46 test_begin_subtest "Restore with nothing to do"
48 'notmuch restore < dump.expected &&
49 notmuch dump > dump.actual &&
50 test_cmp dump.expected dump.actual'
52 test_begin_subtest "Accumulate with existing tags"
54 'notmuch restore --accumulate --input=dump.expected &&
55 notmuch dump > dump.actual &&
56 test_cmp dump.expected dump.actual'
58 test_begin_subtest "Accumulate with no tags"
60 'notmuch restore --accumulate < clear.expected &&
61 notmuch dump > dump.actual &&
62 test_cmp dump.expected dump.actual'
64 test_begin_subtest "Accumulate with new tags"
66 'notmuch restore --input=dump.expected &&
67 notmuch restore --accumulate --input=dump-ABC_DEF.expected &&
68 notmuch dump > OUTPUT.$test_count &&
69 notmuch restore --input=dump.expected &&
70 test_cmp dump-ABC_DEF.expected OUTPUT.$test_count'
72 # notmuch restore currently only considers the first argument.
73 test_begin_subtest "Invalid restore invocation"
75 'test_must_fail notmuch restore --input=dump.expected another_one'
77 test_begin_subtest "dump --output=outfile"
78 notmuch dump --output=dump-outfile.actual
79 test_expect_equal_file dump.expected dump-outfile.actual
81 test_begin_subtest "dump --output=outfile --"
82 notmuch dump --output=dump-1-arg-dash.actual --
83 test_expect_equal_file dump.expected dump-1-arg-dash.actual
87 test_begin_subtest "dump --gzip"
88 notmuch dump --gzip > dump-gzip.gz
90 test_expect_equal_file dump.expected dump-gzip
92 test_begin_subtest "dump --gzip --output=outfile"
93 notmuch dump --gzip --output=dump-gzip-outfile.gz
94 gunzip dump-gzip-outfile.gz
95 test_expect_equal_file dump.expected dump-gzip-outfile
97 test_begin_subtest "restoring gzipped stdin"
98 notmuch dump --gzip --output=backup.gz
99 notmuch tag +new_tag '*'
100 notmuch restore < backup.gz
101 notmuch dump --output=dump.actual
102 test_expect_equal_file dump.expected dump.actual
104 test_begin_subtest "restoring gzipped file"
105 notmuch dump --gzip --output=backup.gz
106 notmuch tag +new_tag '*'
107 notmuch restore --input=backup.gz
108 notmuch dump --output=dump.actual
109 test_expect_equal_file dump.expected dump.actual
111 # Note, we assume all messages from cworth have a message-id
112 # containing cworth.org
114 { head -1 dump.expected ; grep 'cworth[.]org' dump.expected; } > dump-cworth.expected
116 test_begin_subtest "dump -- from:cworth"
117 notmuch dump -- from:cworth > dump-dash-cworth.actual
118 test_expect_equal_file dump-cworth.expected dump-dash-cworth.actual
121 if [ $NOTMUCH_HAVE_SFSEXP -eq 1 ]; then
123 test_begin_subtest "dump --query=sexp -- '(from cworth)'"
124 notmuch dump --query=sexp -- '(from cworth)' > dump-dash-cworth.actual2
125 test_expect_equal_file_nonempty dump-cworth.expected dump-dash-cworth.actual2
127 test_begin_subtest "dump --query=sexp --output=outfile '(from cworth)'"
128 notmuch dump --output=dump-outfile-cworth.actual2 --query=sexp '(from cworth)'
129 test_expect_equal_file dump-cworth.expected dump-outfile-cworth.actual2
133 test_begin_subtest "dump --output=outfile from:cworth"
134 notmuch dump --output=dump-outfile-cworth.actual from:cworth
135 test_expect_equal_file dump-cworth.expected dump-outfile-cworth.actual
137 test_begin_subtest "dump --output=outfile -- from:cworth"
138 notmuch dump --output=dump-outfile-dash-inbox.actual -- from:cworth
139 test_expect_equal_file dump-cworth.expected dump-outfile-dash-inbox.actual
141 test_begin_subtest "Check for a safe set of message-ids"
142 notmuch search --output=messages from:cworth | sed s/^id:// > EXPECTED
143 notmuch search --output=messages from:cworth | sed s/^id:// |\
144 $TEST_DIRECTORY/hex-xcode --direction=encode > OUTPUT
145 test_expect_equal_file EXPECTED OUTPUT
147 test_begin_subtest "format=batch-tag, dump sanity check."
148 NOTMUCH_DUMP_TAGS --format=sup from:cworth | cut -f1 -d' ' | \
149 sort > EXPECTED.$test_count
150 NOTMUCH_DUMP_TAGS --format=batch-tag from:cworth | sed 's/^.*-- id://' | \
151 sort > OUTPUT.$test_count
152 test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count
154 test_begin_subtest "format=batch-tag, missing newline"
155 printf "+a_tag_without_newline -- id:20091117232137.GA7669@griffis1.net" > IN
156 notmuch restore --accumulate < IN
157 NOTMUCH_DUMP_TAGS id:20091117232137.GA7669@griffis1.net > OUT
159 +a_tag_without_newline +inbox +unread -- id:20091117232137.GA7669@griffis1.net
161 test_expect_equal_file EXPECTED OUT
163 test_begin_subtest "format=batch-tag, # round-trip"
164 notmuch dump --format=sup | sort > EXPECTED.$test_count
165 notmuch dump --format=batch-tag > DUMPFILE
166 notmuch restore --format=batch-tag < DUMPFILE
167 notmuch dump --format=sup | sort > OUTPUT.$test_count
168 test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count
170 test_begin_subtest "format=batch-tag, # blank lines and comments"
171 notmuch dump --format=batch-tag| sort > EXPECTED.$test_count
172 notmuch restore <<EOF
173 # this line is a comment; the next has only white space
176 # the previous line is empty
178 notmuch dump --format=batch-tag | sort > OUTPUT.$test_count
179 test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count
181 test_begin_subtest "format=batch-tag, # reverse-round-trip empty tag"
182 cat <<EOF >EXPECTED.$test_count
183 + -- id:20091117232137.GA7669@griffis1.net
185 notmuch restore --format=batch-tag < EXPECTED.$test_count
186 NOTMUCH_DUMP_TAGS --format=batch-tag id:20091117232137.GA7669@griffis1.net > OUTPUT.$test_count
187 test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count
189 tag1='comic_swear=$&^%$^%\\//-+$^%$'
190 enc1=$($TEST_DIRECTORY/hex-xcode --direction=encode "$tag1")
192 tag2=$(printf 'this\n tag\t has\n spaces')
193 enc2=$($TEST_DIRECTORY/hex-xcode --direction=encode "$tag2")
195 enc3='%c3%91%c3%a5%c3%b0%c3%a3%c3%a5%c3%a9-%c3%8f%c3%8a'
196 tag3=$($TEST_DIRECTORY/hex-xcode --direction=decode $enc3)
198 notmuch dump --format=batch-tag > BACKUP
200 notmuch tag +"$tag1" +"$tag2" +"$tag3" -inbox -unread "*"
202 # initial segment of file used for several tests below.
203 cat <<EOF > comments-and-blanks
206 # next line has leading whitespace
211 test_begin_subtest 'restoring empty file is not an error'
212 notmuch restore < /dev/null 2>OUTPUT.$test_count
213 cp /dev/null EXPECTED
214 test_expect_equal_file EXPECTED OUTPUT.$test_count
216 test_begin_subtest 'file of comments and blank lines is not an error'
217 notmuch restore --input=comments-and-blanks
219 test_expect_equal "$ret_val" "0"
221 cp comments-and-blanks leading-comments-blanks-batch-tag
222 echo "+some_tag -- id:yun1vjwegii.fsf@aiko.keithp.com" \
223 >> leading-comments-blanks-batch-tag
225 test_begin_subtest 'detect format=batch-tag with leading comments and blanks'
226 notmuch restore --input=leading-comments-blanks-batch-tag
227 notmuch search --output=tags id:yun1vjwegii.fsf@aiko.keithp.com > OUTPUT.$test_count
228 echo "some_tag" > EXPECTED
229 test_expect_equal_file EXPECTED OUTPUT.$test_count
231 cp comments-and-blanks leading-comments-blanks-sup
232 echo "yun1vjwegii.fsf@aiko.keithp.com (another_tag)" \
233 >> leading-comments-blanks-sup
235 test_begin_subtest 'detect format=sup with leading comments and blanks'
236 notmuch restore --input=leading-comments-blanks-sup
237 notmuch search --output=tags id:yun1vjwegii.fsf@aiko.keithp.com > OUTPUT.$test_count
238 echo "another_tag" > EXPECTED
239 test_expect_equal_file EXPECTED OUTPUT.$test_count
241 test_begin_subtest 'format=batch-tag, round trip with strange tags'
242 notmuch dump --format=batch-tag > EXPECTED.$test_count
243 notmuch dump --format=batch-tag > DUMPFILE
244 notmuch restore --format=batch-tag < DUMPFILE
245 notmuch dump --format=batch-tag > OUTPUT.$test_count
246 test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count
248 test_begin_subtest 'format=batch-tag, checking encoded output'
249 NOTMUCH_DUMP_TAGS --format=batch-tag -- from:cworth |\
250 awk "{ print \"+$enc1 +$enc2 +$enc3 -- \" \$5 }" > EXPECTED.$test_count
251 NOTMUCH_DUMP_TAGS --format=batch-tag -- from:cworth > OUTPUT.$test_count
252 test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count
254 test_begin_subtest 'restoring sane tags'
255 notmuch restore --format=batch-tag < BACKUP
256 notmuch dump --format=batch-tag > OUTPUT.$test_count
257 test_expect_equal_file BACKUP OUTPUT.$test_count
259 test_begin_subtest 'format=batch-tag, restore=auto'
260 notmuch dump --format=batch-tag > EXPECTED.$test_count
261 notmuch tag -inbox -unread "*"
262 notmuch restore --format=auto < EXPECTED.$test_count
263 notmuch dump --format=batch-tag > OUTPUT.$test_count
264 test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count
266 test_begin_subtest 'format=sup, restore=auto'
267 notmuch dump --format=sup > EXPECTED.$test_count
268 notmuch tag -inbox -unread "*"
269 notmuch restore --format=auto < EXPECTED.$test_count
270 notmuch dump --format=sup > OUTPUT.$test_count
271 test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count
273 test_begin_subtest 'format=batch-tag, restore=default'
274 notmuch dump --format=batch-tag > EXPECTED.$test_count
275 notmuch tag -inbox -unread "*"
276 notmuch restore < EXPECTED.$test_count
277 notmuch dump --format=batch-tag > OUTPUT.$test_count
278 test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count
280 test_begin_subtest 'format=sup, restore=default'
281 notmuch dump --format=sup > EXPECTED.$test_count
282 notmuch tag -inbox -unread "*"
283 notmuch restore < EXPECTED.$test_count
284 notmuch dump --format=sup > OUTPUT.$test_count
285 test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count
287 test_begin_subtest 'restore: checking error messages'
288 notmuch restore <<EOF 2>OUTPUT
289 # the next line has a space
294 # trailing whitespace
297 # this is a harmless comment, do not yell about it.
299 # the previous line was blank; also no yelling please
303 # the next non-comment line should report an an empty tag error for
304 # batch tagging, but not for restore
305 + +e -- id:20091117232137.GA7669@griffis1.net
306 # valid id, but warning about missing message
307 +e id:missing_message_id
312 +e -- id:"a_message_id_with""_a_quote"
313 +e -- id:"a message id with spaces"
314 +e -- id:an_id_with_leading_and_trailing_ws \
319 Warning: cannot parse query: a (skipping)
320 Warning: no query string [+0]
321 Warning: no query string [+a +b]
322 Warning: missing query string [+a +b ]
323 Warning: no query string after -- [+c +d --]
324 Warning: hex decoding of tag %zz failed [+%zz -- id:whatever]
325 Warning: cannot parse query: id:" (skipping)
326 Warning: not an id query: tag:abc (skipping)
327 Warning: cannot apply tags to missing message: missing_message_id
328 Warning: cannot parse query: id:some)stuff (skipping)
329 Warning: cannot parse query: id:some stuff (skipping)
330 Warning: cannot apply tags to missing message: some"stuff
331 Warning: cannot apply tags to missing message: a_message_id_with"_a_quote
332 Warning: cannot apply tags to missing message: a message id with spaces
333 Warning: cannot apply tags to missing message: an_id_with_leading_and_trailing_ws
336 test_expect_equal_file EXPECTED OUTPUT
339 test_begin_subtest 'roundtripping random message-ids and tags'
341 ${TEST_DIRECTORY}/random-corpus --config-path=${NOTMUCH_CONFIG} \
344 notmuch dump --format=batch-tag| \
345 sort > EXPECTED.$test_count
347 notmuch tag +this_tag_is_very_unlikely_to_be_random '*'
349 notmuch restore --format=batch-tag < EXPECTED.$test_count
351 notmuch dump --format=batch-tag| \
352 sort > OUTPUT.$test_count
354 test_expect_equal_file EXPECTED.$test_count OUTPUT.$test_count