2010-12-01 21:27:52 +01:00
|
|
|
#!/usr/bin/env bash
|
2010-06-10 08:48:03 +02:00
|
|
|
test_description="author reordering;"
|
2017-09-25 22:38:19 +02:00
|
|
|
. $(dirname "$0")/test-lib.sh || exit 1
|
2010-09-18 00:25:39 +02:00
|
|
|
|
|
|
|
test_begin_subtest "Adding parent message"
|
|
|
|
generate_message [body]=findme [id]=new-parent-id [subject]=author-reorder-threadtest '[from]="User <user@example.com>"' '[date]="Sat, 01 Jan 2000 12:00:00 -0000"'
|
|
|
|
output=$(NOTMUCH_NEW)
|
|
|
|
test_expect_equal "$output" "Added 1 new message to the database."
|
|
|
|
|
|
|
|
test_begin_subtest "Adding initial child message"
|
2010-11-17 20:27:59 +01:00
|
|
|
generate_message [body]=findme "[in-reply-to]=\<new-parent-id\>" [subject]=author-reorder-threadtest '[from]="User1 <user1@example.com>"' '[date]="Sat, 01 Jan 2000 12:01:00 -0000"'
|
2010-09-18 00:25:39 +02:00
|
|
|
output=$(NOTMUCH_NEW)
|
|
|
|
test_expect_equal "$output" "Added 1 new message to the database."
|
|
|
|
|
|
|
|
test_begin_subtest "Adding second child message"
|
2010-11-17 20:27:59 +01:00
|
|
|
generate_message [body]=findme "[in-reply-to]=\<new-parent-id\>" [subject]=author-reorder-threadtest '[from]="User2 <user2@example.com>"' '[date]="Sat, 01 Jan 2000 12:02:00 -0000"'
|
2010-09-18 00:25:39 +02:00
|
|
|
output=$(NOTMUCH_NEW)
|
|
|
|
test_expect_equal "$output" "Added 1 new message to the database."
|
|
|
|
|
|
|
|
test_begin_subtest "Searching when all three messages match"
|
2010-09-21 01:13:15 +02:00
|
|
|
output=$(notmuch search findme | notmuch_search_sanitize)
|
2010-12-08 01:35:47 +01:00
|
|
|
test_expect_equal "$output" "thread:XXX 2000-01-01 [3/3] User, User1, User2; author-reorder-threadtest (inbox unread)"
|
2010-09-18 00:25:39 +02:00
|
|
|
|
|
|
|
test_begin_subtest "Searching when two messages match"
|
2010-09-21 01:13:15 +02:00
|
|
|
output=$(notmuch search User1 or User2 | notmuch_search_sanitize)
|
2010-12-08 01:35:47 +01:00
|
|
|
test_expect_equal "$output" "thread:XXX 2000-01-01 [2/3] User1, User2| User; author-reorder-threadtest (inbox unread)"
|
2010-09-18 00:25:39 +02:00
|
|
|
|
|
|
|
test_begin_subtest "Searching when only one message matches"
|
2010-09-21 01:13:15 +02:00
|
|
|
output=$(notmuch search User2 | notmuch_search_sanitize)
|
2010-09-18 00:25:39 +02:00
|
|
|
test_expect_equal "$output" "thread:XXX 2000-01-01 [1/3] User2| User, User1; author-reorder-threadtest (inbox unread)"
|
|
|
|
|
|
|
|
test_begin_subtest "Searching when only first message matches"
|
2010-09-21 01:13:15 +02:00
|
|
|
output=$(notmuch search User | notmuch_search_sanitize)
|
2010-09-18 00:25:39 +02:00
|
|
|
test_expect_equal "$output" "thread:XXX 2000-01-01 [1/3] User| User1, User2; author-reorder-threadtest (inbox unread)"
|
|
|
|
|
2010-11-17 20:27:59 +01:00
|
|
|
test_begin_subtest "Adding duplicate author"
|
|
|
|
generate_message [body]=findme "[in-reply-to]=\<new-parent-id\>" [subject]=author-reorder-threadtest '[from]="User1 <user1@example.com>"' '[date]="Sat, 01 Jan 2000 12:03:00 -0000"'
|
|
|
|
output=$(NOTMUCH_NEW)
|
|
|
|
test_expect_equal "$output" "Added 1 new message to the database."
|
|
|
|
|
|
|
|
test_begin_subtest "Searching when all four messages match"
|
|
|
|
output=$(notmuch search findme | notmuch_search_sanitize)
|
2010-12-08 01:35:47 +01:00
|
|
|
test_expect_equal "$output" "thread:XXX 2000-01-01 [4/4] User, User1, User2; author-reorder-threadtest (inbox unread)"
|
2010-11-17 20:27:59 +01:00
|
|
|
|
|
|
|
test_begin_subtest "Adding non-monotonic child message"
|
|
|
|
generate_message [body]=findme "[in-reply-to]=\<new-parent-id\>" [subject]=author-reorder-threadtest '[from]="User0 <user0@example.com>"' '[date]="Sat, 01 Jan 2000 11:00:00 -0000"'
|
|
|
|
output=$(NOTMUCH_NEW)
|
|
|
|
test_expect_equal "$output" "Added 1 new message to the database."
|
|
|
|
|
|
|
|
test_begin_subtest "Searching non-monotonic messages (oldest-first)"
|
|
|
|
output=$(notmuch search --sort=oldest-first findme | notmuch_search_sanitize)
|
2010-12-08 01:35:47 +01:00
|
|
|
test_expect_equal "$output" "thread:XXX 2000-01-01 [5/5] User0, User, User1, User2; author-reorder-threadtest (inbox unread)"
|
2010-11-17 20:27:59 +01:00
|
|
|
|
|
|
|
test_begin_subtest "Searching non-monotonic messages (newest-first)"
|
|
|
|
output=$(notmuch search --sort=newest-first findme | notmuch_search_sanitize)
|
2010-12-08 01:35:47 +01:00
|
|
|
test_expect_equal "$output" "thread:XXX 2000-01-01 [5/5] User0, User, User1, User2; author-reorder-threadtest (inbox unread)"
|
2010-11-17 20:27:59 +01:00
|
|
|
|
2010-06-10 08:48:03 +02:00
|
|
|
test_done
|