]> git.notmuchmail.org Git - notmuch/blob - test/T670-duplicate-mid.sh
build: drop support for xapian versions less than 1.4
[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 test_subtest_known_broken
52 cat <<EOF >EXPECTED
53 MAIL_DIR/copy0
54 MAIL_DIR/copy1
55 MAIL_DIR/copy2
56 EOF
57 notmuch search --output=files 'subject:"/message 2/"' | notmuch_dir_sanitize > OUTPUT
58 test_expect_equal_file EXPECTED OUTPUT
59
60 add_message '[id]="duplicate"' '[body]="sekrit" [filename]=copy3'
61 test_begin_subtest 'search for body in duplicate file'
62 cat <<EOF >EXPECTED
63 MAIL_DIR/copy0
64 MAIL_DIR/copy1
65 MAIL_DIR/copy2
66 MAIL_DIR/copy3
67 EOF
68 notmuch search --output=files "sekrit" | notmuch_dir_sanitize > OUTPUT
69 test_expect_equal_file EXPECTED OUTPUT
70
71 rm ${MAIL_DIR}/copy3
72 test_begin_subtest 'reindex drops terms in duplicate file'
73 cp /dev/null EXPECTED
74 notmuch reindex '*'
75 notmuch search --output=files "sekrit" | notmuch_dir_sanitize > OUTPUT
76 test_expect_equal_file EXPECTED OUTPUT
77
78 test_begin_subtest 'reindex choses subject from first filename'
79 cat <<EOF > EXPECTED
80 thread:XXX   2001-01-05 [1/1(3)] Notmuch Test Suite; message 0 (inbox unread)
81 EOF
82 notmuch search id:duplicate | notmuch_search_sanitize > OUTPUT
83 test_expect_equal_file EXPECTED OUTPUT
84
85 rm ${MAIL_DIR}/copy0
86 test_begin_subtest 'Deleted first duplicate file does not stop notmuch show from working'
87 output=$(notmuch show --body=false --format=json id:duplicate |
88              notmuch_json_show_sanitize | sed 's/message [0-9]/A_SUBJECT/')
89 expected='[[[{
90     "id": "XXXXX",
91     "crypto": {},
92     "match": true,
93     "excluded": false,
94     "filename": [
95         "'"${MAIL_DIR}"/copy0'",
96         "'"${MAIL_DIR}"/copy1'",
97         "'"${MAIL_DIR}"/copy2'"
98     ],
99     "timestamp": 42,
100     "date_relative": "2001-01-05",
101     "tags": ["inbox","unread"],
102     "headers": {
103         "Subject": "A_SUBJECT",
104         "From": "Notmuch Test Suite <test_suite@notmuchmail.org>",
105         "To": "Notmuch Test Suite <test_suite@notmuchmail.org>",
106         "Date": "GENERATED_DATE"
107     }
108  },
109 []]]]'
110
111 test_expect_equal_json "$output" "$expected"
112
113 test_done