X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=test%2Fauthor-order;h=6ffeffc719476630c21055dc978d7d934df371c8;hp=2ddc91c777e5181f2105cad39fc77b9699cc9e56;hb=2f50524e27db2ca58f6543a2c73a5719d8d7f491;hpb=a18a15326c9bc392828c91a465b5c514cddfb539 diff --git a/test/author-order b/test/author-order index 2ddc91c7..6ffeffc7 100755 --- a/test/author-order +++ b/test/author-order @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash test_description="author reordering;" . ./test-lib.sh @@ -19,11 +19,11 @@ test_expect_equal "$output" "Added 1 new message to the database." test_begin_subtest "Searching when all three messages match" output=$(notmuch search findme | notmuch_search_sanitize) -test_expect_equal_failure "$output" "thread:XXX 2000-01-01 [3/3] User, User1, User2; author-reorder-threadtest (inbox unread)" +test_expect_equal "$output" "thread:XXX 2000-01-01 [3/3] User, User1, User2; author-reorder-threadtest (inbox unread)" test_begin_subtest "Searching when two messages match" output=$(notmuch search User1 or User2 | notmuch_search_sanitize) -test_expect_equal_failure "$output" "thread:XXX 2000-01-01 [2/3] User1, User2| User; author-reorder-threadtest (inbox unread)" +test_expect_equal "$output" "thread:XXX 2000-01-01 [2/3] User1, User2| User; author-reorder-threadtest (inbox unread)" test_begin_subtest "Searching when only one message matches" output=$(notmuch search User2 | notmuch_search_sanitize) @@ -40,7 +40,7 @@ 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) -test_expect_equal_failure "$output" "thread:XXX 2000-01-01 [4/4] User, User1, User2; author-reorder-threadtest (inbox unread)" +test_expect_equal "$output" "thread:XXX 2000-01-01 [4/4] User, User1, User2; author-reorder-threadtest (inbox unread)" test_begin_subtest "Adding non-monotonic child message" generate_message [body]=findme "[in-reply-to]=\" [subject]=author-reorder-threadtest '[from]="User0 "' '[date]="Sat, 01 Jan 2000 11:00:00 -0000"' @@ -49,10 +49,10 @@ 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) -test_expect_equal_failure "$output" "thread:XXX 2000-01-01 [5/5] User0, User, User1, User2; author-reorder-threadtest (inbox unread)" +test_expect_equal "$output" "thread:XXX 2000-01-01 [5/5] User0, User, User1, User2; author-reorder-threadtest (inbox unread)" test_begin_subtest "Searching non-monotonic messages (newest-first)" output=$(notmuch search --sort=newest-first findme | notmuch_search_sanitize) -test_expect_equal_failure "$output" "thread:XXX 2000-01-01 [5/5] User0, User, User1, User2; author-reorder-threadtest (inbox unread)" +test_expect_equal "$output" "thread:XXX 2000-01-01 [5/5] User0, User, User1, User2; author-reorder-threadtest (inbox unread)" test_done