2010-12-01 21:27:52 +01:00
|
|
|
|
#!/usr/bin/env bash
|
2010-06-10 08:48:03 +02:00
|
|
|
|
test_description="naming of threads with changing subject"
|
|
|
|
|
. ./test-lib.sh
|
2010-09-18 00:25:39 +02:00
|
|
|
|
|
2010-11-16 20:29:47 +01:00
|
|
|
|
test_begin_subtest "Initial thread name (oldest-first search)"
|
2010-09-18 00:25:39 +02:00
|
|
|
|
add_message '[subject]="thread-naming: Initial thread subject"' \
|
2012-01-11 17:53:59 +01:00
|
|
|
|
'[date]="Fri, 05 Jan 2001 15:43:56 -0000"'
|
2010-09-18 00:25:39 +02:00
|
|
|
|
first=${gen_msg_cnt}
|
|
|
|
|
parent=${gen_msg_id}
|
|
|
|
|
add_message '[subject]="thread-naming: Older changed subject"' \
|
2012-01-11 17:53:59 +01:00
|
|
|
|
'[date]="Sat, 06 Jan 2001 15:43:56 -0000"' \
|
|
|
|
|
"[in-reply-to]=\<$parent\>"
|
2010-09-18 00:25:39 +02:00
|
|
|
|
add_message '[subject]="thread-naming: Newer changed subject"' \
|
2012-01-11 17:53:59 +01:00
|
|
|
|
'[date]="Sun, 07 Jan 2001 15:43:56 -0000"' \
|
|
|
|
|
"[in-reply-to]=\<$parent\>"
|
2010-09-18 00:25:39 +02:00
|
|
|
|
add_message '[subject]="thread-naming: Final thread subject"' \
|
2012-01-11 17:53:59 +01:00
|
|
|
|
'[date]="Mon, 08 Jan 2001 15:43:56 -0000"' \
|
|
|
|
|
"[in-reply-to]=\<$parent\>"
|
2010-06-10 08:48:03 +02:00
|
|
|
|
final=${gen_msg_id}
|
2010-09-21 01:13:15 +02:00
|
|
|
|
output=$(notmuch search --sort=oldest-first thread-naming and tag:inbox | notmuch_search_sanitize)
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_expect_equal "$output" "thread:XXX 2001-01-05 [4/4] Notmuch Test Suite; thread-naming: Initial thread subject (inbox unread)"
|
2010-06-10 08:48:03 +02:00
|
|
|
|
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_begin_subtest "Initial thread name (newest-first search)"
|
2010-09-21 01:13:15 +02:00
|
|
|
|
output=$(notmuch search --sort=newest-first thread-naming and tag:inbox | notmuch_search_sanitize)
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_expect_equal "$output" "thread:XXX 2001-01-08 [4/4] Notmuch Test Suite; thread-naming: Final thread subject (inbox unread)"
|
2010-06-10 08:48:03 +02:00
|
|
|
|
|
|
|
|
|
# Remove oldest and newest messages from search results
|
2010-09-21 01:13:15 +02:00
|
|
|
|
notmuch tag -inbox id:$parent or id:$final
|
2010-06-10 08:48:03 +02:00
|
|
|
|
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_begin_subtest "Changed thread name (oldest-first search)"
|
2010-09-21 01:13:15 +02:00
|
|
|
|
output=$(notmuch search --sort=oldest-first thread-naming and tag:inbox | notmuch_search_sanitize)
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_expect_equal "$output" "thread:XXX 2001-01-06 [2/4] Notmuch Test Suite; thread-naming: Older changed subject (inbox unread)"
|
2010-06-10 08:48:03 +02:00
|
|
|
|
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_begin_subtest "Changed thread name (newest-first search)"
|
2010-09-21 01:13:15 +02:00
|
|
|
|
output=$(notmuch search --sort=newest-first thread-naming and tag:inbox | notmuch_search_sanitize)
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_expect_equal "$output" "thread:XXX 2001-01-07 [2/4] Notmuch Test Suite; thread-naming: Newer changed subject (inbox unread)"
|
2010-06-10 08:48:03 +02:00
|
|
|
|
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_begin_subtest "Ignore added reply prefix (Re:)"
|
|
|
|
|
add_message '[subject]="Re: thread-naming: Initial thread subject"' \
|
2012-01-11 17:53:59 +01:00
|
|
|
|
'[date]="Tue, 09 Jan 2001 15:43:45 -0000"' \
|
|
|
|
|
"[in-reply-to]=\<$parent\>"
|
2010-09-21 01:13:15 +02:00
|
|
|
|
output=$(notmuch search --sort=newest-first thread-naming and tag:inbox | notmuch_search_sanitize)
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_expect_equal "$output" "thread:XXX 2001-01-09 [3/5] Notmuch Test Suite; thread-naming: Initial thread subject (inbox unread)"
|
2010-06-10 08:48:03 +02:00
|
|
|
|
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_begin_subtest "Ignore added reply prefix (Aw:)"
|
|
|
|
|
add_message '[subject]="Aw: thread-naming: Initial thread subject"' \
|
2012-01-11 17:53:59 +01:00
|
|
|
|
'[date]="Wed, 10 Jan 2001 15:43:45 -0000"' \
|
|
|
|
|
"[in-reply-to]=\<$parent\>"
|
2010-09-21 01:13:15 +02:00
|
|
|
|
output=$(notmuch search --sort=newest-first thread-naming and tag:inbox | notmuch_search_sanitize)
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_expect_equal "$output" "thread:XXX 2001-01-10 [4/6] Notmuch Test Suite; thread-naming: Initial thread subject (inbox unread)"
|
2010-06-10 08:48:03 +02:00
|
|
|
|
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_begin_subtest "Ignore added reply prefix (Vs:)"
|
|
|
|
|
add_message '[subject]="Vs: thread-naming: Initial thread subject"' \
|
2012-01-11 17:53:59 +01:00
|
|
|
|
'[date]="Thu, 11 Jan 2001 15:43:45 -0000"' \
|
|
|
|
|
"[in-reply-to]=\<$parent\>"
|
2010-09-21 01:13:15 +02:00
|
|
|
|
output=$(notmuch search --sort=newest-first thread-naming and tag:inbox | notmuch_search_sanitize)
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_expect_equal "$output" "thread:XXX 2001-01-11 [5/7] Notmuch Test Suite; thread-naming: Initial thread subject (inbox unread)"
|
2010-06-10 08:48:03 +02:00
|
|
|
|
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_begin_subtest "Ignore added reply prefix (Sv:)"
|
|
|
|
|
add_message '[subject]="Sv: thread-naming: Initial thread subject"' \
|
2012-01-11 17:53:59 +01:00
|
|
|
|
'[date]="Fri, 12 Jan 2001 15:43:45 -0000"' \
|
|
|
|
|
"[in-reply-to]=\<$parent\>"
|
2010-09-21 01:13:15 +02:00
|
|
|
|
output=$(notmuch search --sort=newest-first thread-naming and tag:inbox | notmuch_search_sanitize)
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_expect_equal "$output" "thread:XXX 2001-01-12 [6/8] Notmuch Test Suite; thread-naming: Initial thread subject (inbox unread)"
|
2010-06-10 08:48:03 +02:00
|
|
|
|
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_begin_subtest 'Test order of messages in "notmuch show"'
|
2010-09-21 01:13:15 +02:00
|
|
|
|
output=$(notmuch show thread-naming | notmuch_show_sanitize)
|
2010-09-18 00:25:39 +02:00
|
|
|
|
test_expect_equal "$output" "message{ id:msg-$(printf "%03d" $first)@notmuch-test-suite depth:0 match:1 filename:/XXX/mail/msg-$(printf "%03d" $first)
|
2010-06-10 08:48:03 +02:00
|
|
|
|
header{
|
|
|
|
|
Notmuch Test Suite <test_suite@notmuchmail.org> (2001-01-05) (unread)
|
|
|
|
|
Subject: thread-naming: Initial thread subject
|
|
|
|
|
From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
|
|
|
|
To: Notmuch Test Suite <test_suite@notmuchmail.org>
|
2010-06-10 08:48:04 +02:00
|
|
|
|
Date: Fri, 05 Jan 2001 15:43:56 -0000
|
2010-06-10 08:48:03 +02:00
|
|
|
|
header}
|
|
|
|
|
body{
|
|
|
|
|
part{ ID: 1, Content-type: text/plain
|
|
|
|
|
This is just a test message (#$first)
|
|
|
|
|
part}
|
|
|
|
|
body}
|
|
|
|
|
message}
|
|
|
|
|
message{ id:msg-$(printf "%03d" $((first + 1)))@notmuch-test-suite depth:1 match:1 filename:/XXX/mail/msg-$(printf "%03d" $((first + 1)))
|
|
|
|
|
header{
|
|
|
|
|
Notmuch Test Suite <test_suite@notmuchmail.org> (2001-01-06) (inbox unread)
|
|
|
|
|
Subject: thread-naming: Older changed subject
|
|
|
|
|
From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
|
|
|
|
To: Notmuch Test Suite <test_suite@notmuchmail.org>
|
2010-06-10 08:48:04 +02:00
|
|
|
|
Date: Sat, 06 Jan 2001 15:43:56 -0000
|
2010-06-10 08:48:03 +02:00
|
|
|
|
header}
|
|
|
|
|
body{
|
|
|
|
|
part{ ID: 1, Content-type: text/plain
|
|
|
|
|
This is just a test message (#$((first + 1)))
|
|
|
|
|
part}
|
|
|
|
|
body}
|
|
|
|
|
message}
|
|
|
|
|
message{ id:msg-$(printf "%03d" $((first + 2)))@notmuch-test-suite depth:1 match:1 filename:/XXX/mail/msg-$(printf "%03d" $((first + 2)))
|
|
|
|
|
header{
|
|
|
|
|
Notmuch Test Suite <test_suite@notmuchmail.org> (2001-01-07) (inbox unread)
|
|
|
|
|
Subject: thread-naming: Newer changed subject
|
|
|
|
|
From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
|
|
|
|
To: Notmuch Test Suite <test_suite@notmuchmail.org>
|
2010-06-10 08:48:04 +02:00
|
|
|
|
Date: Sun, 07 Jan 2001 15:43:56 -0000
|
2010-06-10 08:48:03 +02:00
|
|
|
|
header}
|
|
|
|
|
body{
|
|
|
|
|
part{ ID: 1, Content-type: text/plain
|
|
|
|
|
This is just a test message (#$((first + 2)))
|
|
|
|
|
part}
|
|
|
|
|
body}
|
|
|
|
|
message}
|
|
|
|
|
message{ id:msg-$(printf "%03d" $((first + 3)))@notmuch-test-suite depth:1 match:1 filename:/XXX/mail/msg-$(printf "%03d" $((first + 3)))
|
|
|
|
|
header{
|
|
|
|
|
Notmuch Test Suite <test_suite@notmuchmail.org> (2001-01-08) (unread)
|
|
|
|
|
Subject: thread-naming: Final thread subject
|
|
|
|
|
From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
|
|
|
|
To: Notmuch Test Suite <test_suite@notmuchmail.org>
|
2010-06-10 08:48:04 +02:00
|
|
|
|
Date: Mon, 08 Jan 2001 15:43:56 -0000
|
2010-06-10 08:48:03 +02:00
|
|
|
|
header}
|
|
|
|
|
body{
|
|
|
|
|
part{ ID: 1, Content-type: text/plain
|
|
|
|
|
This is just a test message (#$((first + 3)))
|
|
|
|
|
part}
|
|
|
|
|
body}
|
|
|
|
|
message}
|
|
|
|
|
message{ id:msg-$(printf "%03d" $((first + 4)))@notmuch-test-suite depth:1 match:1 filename:/XXX/mail/msg-$(printf "%03d" $((first + 4)))
|
|
|
|
|
header{
|
|
|
|
|
Notmuch Test Suite <test_suite@notmuchmail.org> (2001-01-09) (inbox unread)
|
|
|
|
|
Subject: Re: thread-naming: Initial thread subject
|
|
|
|
|
From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
|
|
|
|
To: Notmuch Test Suite <test_suite@notmuchmail.org>
|
2010-06-10 08:48:04 +02:00
|
|
|
|
Date: Tue, 09 Jan 2001 15:43:45 -0000
|
2010-06-10 08:48:03 +02:00
|
|
|
|
header}
|
|
|
|
|
body{
|
|
|
|
|
part{ ID: 1, Content-type: text/plain
|
|
|
|
|
This is just a test message (#$((first + 4)))
|
|
|
|
|
part}
|
|
|
|
|
body}
|
|
|
|
|
message}
|
|
|
|
|
message{ id:msg-$(printf "%03d" $((first + 5)))@notmuch-test-suite depth:1 match:1 filename:/XXX/mail/msg-$(printf "%03d" $((first + 5)))
|
|
|
|
|
header{
|
|
|
|
|
Notmuch Test Suite <test_suite@notmuchmail.org> (2001-01-10) (inbox unread)
|
|
|
|
|
Subject: Aw: thread-naming: Initial thread subject
|
|
|
|
|
From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
|
|
|
|
To: Notmuch Test Suite <test_suite@notmuchmail.org>
|
2010-06-10 08:48:04 +02:00
|
|
|
|
Date: Wed, 10 Jan 2001 15:43:45 -0000
|
2010-06-10 08:48:03 +02:00
|
|
|
|
header}
|
|
|
|
|
body{
|
|
|
|
|
part{ ID: 1, Content-type: text/plain
|
|
|
|
|
This is just a test message (#$((first + 5)))
|
|
|
|
|
part}
|
|
|
|
|
body}
|
|
|
|
|
message}
|
|
|
|
|
message{ id:msg-$(printf "%03d" $((first + 6)))@notmuch-test-suite depth:1 match:1 filename:/XXX/mail/msg-$(printf "%03d" $((first + 6)))
|
|
|
|
|
header{
|
|
|
|
|
Notmuch Test Suite <test_suite@notmuchmail.org> (2001-01-11) (inbox unread)
|
|
|
|
|
Subject: Vs: thread-naming: Initial thread subject
|
|
|
|
|
From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
|
|
|
|
To: Notmuch Test Suite <test_suite@notmuchmail.org>
|
2010-06-10 08:48:04 +02:00
|
|
|
|
Date: Thu, 11 Jan 2001 15:43:45 -0000
|
2010-06-10 08:48:03 +02:00
|
|
|
|
header}
|
|
|
|
|
body{
|
|
|
|
|
part{ ID: 1, Content-type: text/plain
|
|
|
|
|
This is just a test message (#$((first + 6)))
|
|
|
|
|
part}
|
|
|
|
|
body}
|
|
|
|
|
message}
|
|
|
|
|
message{ id:msg-$(printf "%03d" $((first + 7)))@notmuch-test-suite depth:1 match:1 filename:/XXX/mail/msg-$(printf "%03d" $((first + 7)))
|
|
|
|
|
header{
|
|
|
|
|
Notmuch Test Suite <test_suite@notmuchmail.org> (2001-01-12) (inbox unread)
|
|
|
|
|
Subject: Sv: thread-naming: Initial thread subject
|
|
|
|
|
From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
|
|
|
|
To: Notmuch Test Suite <test_suite@notmuchmail.org>
|
2010-06-10 08:48:04 +02:00
|
|
|
|
Date: Fri, 12 Jan 2001 15:43:45 -0000
|
2010-06-10 08:48:03 +02:00
|
|
|
|
header}
|
|
|
|
|
body{
|
|
|
|
|
part{ ID: 1, Content-type: text/plain
|
|
|
|
|
This is just a test message (#$((first + 7)))
|
|
|
|
|
part}
|
|
|
|
|
body}
|
|
|
|
|
message}"
|
|
|
|
|
test_done
|