]> git.notmuchmail.org Git - notmuch/blob - test/T670-duplicate-mid.sh
tests/smime: fix typo in README
[notmuch] / test / T670-duplicate-mid.sh
1 #!/usr/bin/env bash
2 test_description="duplicate message ids"
3 . $(dirname "$0")/test-lib.sh || exit 1
4
5 add_message '[id]="duplicate"' '[subject]="message 1" [filename]=copy1'
6 add_message '[id]="duplicate"' '[subject]="message 2" [filename]=copy2'
7
8 add_message '[id]="duplicate"' '[subject]="message 0" [filename]=copy0'
9 test_begin_subtest 'search: first indexed subject preserved'
10 cat <<EOF > EXPECTED
11 thread:XXX   2001-01-05 [1/1(3)] Notmuch Test Suite; message 1 (inbox unread)
12 EOF
13 notmuch search id:duplicate | notmuch_search_sanitize > OUTPUT
14 test_expect_equal_file EXPECTED OUTPUT
15
16 test_begin_subtest 'First subject preserved in notmuch-show (json)'
17 test_subtest_known_broken
18 output=$(notmuch show --body=false --format=json id:duplicate | notmuch_json_show_sanitize)
19 expected='[[[{
20     "id": "XXXXX",
21     "match": true,
22     "excluded": false,
23     "filename": [
24         "'"${MAIL_DIR}"/copy0'",
25         "'"${MAIL_DIR}"/copy1'",
26         "'"${MAIL_DIR}"/copy2'"
27     ],
28     "timestamp": 42,
29     "date_relative": "2001-01-05",
30     "tags": ["inbox","unread"],
31     "headers": {
32         "Subject": "message 1",
33         "From": "Notmuch Test Suite <test_suite@notmuchmail.org>",
34         "To": "Notmuch Test Suite <test_suite@notmuchmail.org>",
35         "Date": "GENERATED_DATE"
36     }
37  },
38 []]]]'
39 test_expect_equal_json "$output" "$expected"
40
41 test_begin_subtest 'Search for second subject'
42 cat <<EOF >EXPECTED
43 MAIL_DIR/copy0
44 MAIL_DIR/copy1
45 MAIL_DIR/copy2
46 EOF
47 notmuch search --output=files subject:'"message 2"' | notmuch_dir_sanitize > OUTPUT
48 test_expect_equal_file EXPECTED OUTPUT
49
50 test_begin_subtest 'Regexp search for second subject'
51 # Note that missing field processor support really means the test
52 # doesn't make sense, but it happens to pass.
53 if [ $NOTMUCH_HAVE_XAPIAN_FIELD_PROCESSOR -eq 1 ]; then
54     test_subtest_known_broken
55 fi
56 cat <<EOF >EXPECTED
57 MAIL_DIR/copy0
58 MAIL_DIR/copy1
59 MAIL_DIR/copy2
60 EOF
61 notmuch search --output=files 'subject:"/message 2/"' | notmuch_dir_sanitize > OUTPUT
62 test_expect_equal_file EXPECTED OUTPUT
63
64 add_message '[id]="duplicate"' '[body]="sekrit" [filename]=copy3'
65 test_begin_subtest 'search for body in duplicate file'
66 cat <<EOF >EXPECTED
67 MAIL_DIR/copy0
68 MAIL_DIR/copy1
69 MAIL_DIR/copy2
70 MAIL_DIR/copy3
71 EOF
72 notmuch search --output=files "sekrit" | notmuch_dir_sanitize > OUTPUT
73 test_expect_equal_file EXPECTED OUTPUT
74
75 rm ${MAIL_DIR}/copy3
76 test_begin_subtest 'reindex drops terms in duplicate file'
77 cp /dev/null EXPECTED
78 notmuch reindex '*'
79 notmuch search --output=files "sekrit" | notmuch_dir_sanitize > OUTPUT
80 test_expect_equal_file EXPECTED OUTPUT
81
82 test_begin_subtest 'reindex choses subject from first filename'
83 cat <<EOF > EXPECTED
84 thread:XXX   2001-01-05 [1/1(3)] Notmuch Test Suite; message 0 (inbox unread)
85 EOF
86 notmuch search id:duplicate | notmuch_search_sanitize > OUTPUT
87 test_expect_equal_file EXPECTED OUTPUT
88
89 rm ${MAIL_DIR}/copy0
90 test_begin_subtest 'Deleted first duplicate file does not stop notmuch show from working'
91 output=$(notmuch show --body=false --format=json id:duplicate |
92              notmuch_json_show_sanitize | sed 's/message [0-9]/A_SUBJECT/')
93 expected='[[[{
94     "id": "XXXXX",
95     "crypto": {},
96     "match": true,
97     "excluded": false,
98     "filename": [
99         "'"${MAIL_DIR}"/copy0'",
100         "'"${MAIL_DIR}"/copy1'",
101         "'"${MAIL_DIR}"/copy2'"
102     ],
103     "timestamp": 42,
104     "date_relative": "2001-01-05",
105     "tags": ["inbox","unread"],
106     "headers": {
107         "Subject": "A_SUBJECT",
108         "From": "Notmuch Test Suite <test_suite@notmuchmail.org>",
109         "To": "Notmuch Test Suite <test_suite@notmuchmail.org>",
110         "Date": "GENERATED_DATE"
111     }
112  },
113 []]]]'
114
115 test_expect_equal_json "$output" "$expected"
116
117 test_done