]> git.notmuchmail.org Git - notmuch/blob - test/T370-search-folder-coherence.sh
emacs: Add new option notmuch-search-hide-excluded
[notmuch] / test / T370-search-folder-coherence.sh
1 #!/usr/bin/env bash
2 test_description='folder tags removed and added through file renames remain consistent'
3 . $(dirname "$0")/test-lib.sh || exit 1
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 file_x=$gen_msg_filename
13 id_x=$gen_msg_id
14 output=$(NOTMUCH_NEW)
15 test_expect_equal "$output" "Added 1 new message to the database."
16
17 test_begin_subtest "Add second folder for same message"
18 dir=$(dirname $file_x)
19 mkdir $dir/spam
20 cp $file_x $dir/spam
21 output=$(NOTMUCH_NEW)
22 test_expect_equal "$output" "No new mail."
23
24
25 test_begin_subtest "Multiple files for same message"
26 cat <<EOF >EXPECTED
27 MAIL_DIR/msg-XXX
28 MAIL_DIR/spam/msg-XXX
29 EOF
30 notmuch search --output=files id:$id_x | notmuch_search_files_sanitize >OUTPUT
31 test_expect_equal_file EXPECTED OUTPUT
32
33 test_begin_subtest "Test matches folder:spam"
34 output=$(notmuch search folder:spam)
35 test_expect_equal "$output" "thread:0000000000000001   2001-01-05 [1/1(2)] Notmuch Test Suite; Single new message (inbox unread)"
36
37 test_begin_subtest "Remove folder:spam copy of email"
38 rm $dir/spam/$(basename $file_x)
39 output=$(NOTMUCH_NEW)
40 test_expect_equal "$output" "No new mail. Detected 1 file rename."
41
42 test_begin_subtest "No mails match the folder:spam search"
43 output=$(notmuch search folder:spam)
44 test_expect_equal "$output" ""
45
46 test_done