X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=test%2FT750-user-header.sh;h=2d6cc60b6f293772299fd4c38615ffa725133995;hp=b97b00b6ce47fdced664119f99c6c30ac90fe88f;hb=575493e78534f8fd241d663b8690a22d6885e0b1;hpb=4b9c03efc6e4cd4b083c18c98416218059d1b8d7 diff --git a/test/T750-user-header.sh b/test/T750-user-header.sh index b97b00b6..2d6cc60b 100755 --- a/test/T750-user-header.sh +++ b/test/T750-user-header.sh @@ -70,4 +70,25 @@ index.header.Spam=X-Spam EOF test_expect_equal_file EXPECTED OUTPUT +test_begin_subtest "parse user prefix" +NOTMUCH_DEBUG_QUERY=t notmuch count 'List:"notmuch"' 2>&1 | grep Tmail >OUTPUT +cat < EXPECTED +Query((Tmail AND XUList:notmuch@1)) +EOF +test_expect_equal_file EXPECTED OUTPUT + +test_begin_subtest "parse user prefix, stemmed" +NOTMUCH_DEBUG_QUERY=t notmuch count 'List:notmuch' 2>&1 | grep Tmail >OUTPUT +cat < EXPECTED +Query((Tmail AND ZXUList:notmuch@1)) +EOF +test_expect_equal_file EXPECTED OUTPUT + +test_begin_subtest "parse user prefix, phrase" +NOTMUCH_DEBUG_QUERY=t notmuch count 'List:notmuchmail.org' 2>&1 | grep Tmail >OUTPUT +cat < EXPECTED +Query((Tmail AND (XUList:notmuchmail@1 PHRASE 2 XUList:org@2))) +EOF +test_expect_equal_file EXPECTED OUTPUT + test_done