mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
a755c9d6a9
All test scripts to be executed are now named as T\d\d\d-name.sh, numers in increments of 10. This eases adding new tests and developers to see which are test scripts that are executed by test suite and in which order.
217 lines
8.7 KiB
Bash
Executable file
217 lines
8.7 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
test_description="From line heuristics (with multiple configured addresses)"
|
|
. ./test-lib.sh
|
|
|
|
test_begin_subtest "Magic from guessing (nothing to go on)"
|
|
add_message '[from]="Sender <sender@example.com>"' \
|
|
[to]=mailinglist@notmuchmail.org \
|
|
[subject]=notmuch-reply-test \
|
|
'[date]="Tue, 05 Jan 2010 15:43:56 -0000"' \
|
|
'[body]="from guessing test"'
|
|
|
|
output=$(notmuch reply id:${gen_msg_id})
|
|
test_expect_equal "$output" "From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
|
Subject: Re: notmuch-reply-test
|
|
To: Sender <sender@example.com>, mailinglist@notmuchmail.org
|
|
In-Reply-To: <${gen_msg_id}>
|
|
References: <${gen_msg_id}>
|
|
|
|
On Tue, 05 Jan 2010 15:43:56 -0000, Sender <sender@example.com> wrote:
|
|
> from guessing test"
|
|
|
|
test_begin_subtest "Magic from guessing (Envelope-to:)"
|
|
add_message '[from]="Sender <sender@example.com>"' \
|
|
[to]=mailinglist@notmuchmail.org \
|
|
[subject]=notmuch-reply-test \
|
|
'[header]="Envelope-To: test_suite_other@notmuchmail.org"' \
|
|
'[date]="Tue, 05 Jan 2010 15:43:56 -0000"' \
|
|
'[body]="from guessing test"'
|
|
|
|
output=$(notmuch reply id:${gen_msg_id})
|
|
test_expect_equal "$output" "From: Notmuch Test Suite <test_suite_other@notmuchmail.org>
|
|
Subject: Re: notmuch-reply-test
|
|
To: Sender <sender@example.com>, mailinglist@notmuchmail.org
|
|
In-Reply-To: <${gen_msg_id}>
|
|
References: <${gen_msg_id}>
|
|
|
|
On Tue, 05 Jan 2010 15:43:56 -0000, Sender <sender@example.com> wrote:
|
|
> from guessing test"
|
|
|
|
test_begin_subtest "Magic from guessing (X-Original-To:)"
|
|
add_message '[from]="Sender <sender@example.com>"' \
|
|
[to]=mailinglist@notmuchmail.org \
|
|
[subject]=notmuch-reply-test \
|
|
'[header]="X-Original-To: test_suite_other@notmuchmail.org"' \
|
|
'[date]="Tue, 05 Jan 2010 15:43:56 -0000"' \
|
|
'[body]="from guessing test"'
|
|
|
|
output=$(notmuch reply id:${gen_msg_id})
|
|
test_expect_equal "$output" "From: Notmuch Test Suite <test_suite_other@notmuchmail.org>
|
|
Subject: Re: notmuch-reply-test
|
|
To: Sender <sender@example.com>, mailinglist@notmuchmail.org
|
|
In-Reply-To: <${gen_msg_id}>
|
|
References: <${gen_msg_id}>
|
|
|
|
On Tue, 05 Jan 2010 15:43:56 -0000, Sender <sender@example.com> wrote:
|
|
> from guessing test"
|
|
|
|
test_begin_subtest "Magic from guessing (Received: .. for ..)"
|
|
add_message '[from]="Sender <sender@example.com>"' \
|
|
[to]=mailinglist@notmuchmail.org \
|
|
[subject]=notmuch-reply-test \
|
|
"[header]=\"Received: from mail.example.com (mail.example.com [1.1.1.1])
|
|
by mail.notmuchmail.org (some MTA) with ESMTP id 12345678
|
|
for <test_suite_other@notmuchmail.org>; Sat, 10 Apr 2010 07:54:51 -0400 (EDT)\"" \
|
|
'[date]="Tue, 05 Jan 2010 15:43:56 -0000"' \
|
|
'[body]="from guessing test"'
|
|
|
|
output=$(notmuch reply id:${gen_msg_id})
|
|
test_expect_equal "$output" "From: Notmuch Test Suite <test_suite_other@notmuchmail.org>
|
|
Subject: Re: notmuch-reply-test
|
|
To: Sender <sender@example.com>, mailinglist@notmuchmail.org
|
|
In-Reply-To: <${gen_msg_id}>
|
|
References: <${gen_msg_id}>
|
|
|
|
On Tue, 05 Jan 2010 15:43:56 -0000, Sender <sender@example.com> wrote:
|
|
> from guessing test"
|
|
|
|
test_begin_subtest "Magic from guessing (Received: domain)"
|
|
add_message '[from]="Sender <sender@example.com>"' \
|
|
[to]=mailinglist@notmuchmail.org \
|
|
[subject]=notmuch-reply-test \
|
|
"[header]=\"Received: from mail.example.com (mail.example.com [1.1.1.1])
|
|
by mail.otherdomain.org (some MTA) with ESMTP id 12345678
|
|
Sat, 10 Apr 2010 07:54:51 -0400 (EDT)\"" \
|
|
'[date]="Tue, 05 Jan 2010 15:43:56 -0000"' \
|
|
'[body]="from guessing test"'
|
|
|
|
output=$(notmuch reply id:${gen_msg_id})
|
|
test_expect_equal "$output" "From: Notmuch Test Suite <test_suite@otherdomain.org>
|
|
Subject: Re: notmuch-reply-test
|
|
To: Sender <sender@example.com>, mailinglist@notmuchmail.org
|
|
In-Reply-To: <${gen_msg_id}>
|
|
References: <${gen_msg_id}>
|
|
|
|
On Tue, 05 Jan 2010 15:43:56 -0000, Sender <sender@example.com> wrote:
|
|
> from guessing test"
|
|
|
|
test_begin_subtest "Magic from guessing (multiple Received: headers)"
|
|
add_message '[from]="Sender <sender@example.com>"' \
|
|
[to]=mailinglist@notmuchmail.org \
|
|
[subject]=notmuch-reply-test \
|
|
"[header]=\"Received: from extraneous.example.com (extraneous.example.com [1.1.1.1])
|
|
Received: from mail.example.com (mail.example.com [1.1.1.1])
|
|
by mail.otherdomain.org (some MTA) with ESMTP id 12345678
|
|
for <test_suite_other@notmuchmail.org>; Sat, 10 Apr 2010 07:54:51 -0400 (EDT)
|
|
Received: from extraneous.example.com (extraneous.example.com [1.1.1.1])\"" \
|
|
'[date]="Tue, 05 Jan 2010 15:43:56 -0000"' \
|
|
'[body]="from guessing test"'
|
|
|
|
output="$(notmuch reply id:${gen_msg_id})"
|
|
test_expect_equal "$output" "From: Notmuch Test Suite <test_suite_other@notmuchmail.org>
|
|
Subject: Re: notmuch-reply-test
|
|
To: Sender <sender@example.com>, mailinglist@notmuchmail.org
|
|
In-Reply-To: <${gen_msg_id}>
|
|
References: <${gen_msg_id}>
|
|
|
|
On Tue, 05 Jan 2010 15:43:56 -0000, Sender <sender@example.com> wrote:
|
|
> from guessing test"
|
|
|
|
test_begin_subtest "Testing From line heuristics (with single configured address)"
|
|
sed -i -e "s/^other_email.*//" "${NOTMUCH_CONFIG}"
|
|
test_expect_equal '' ''
|
|
|
|
test_begin_subtest "Magic from guessing (nothing to go on)"
|
|
add_message '[from]="Sender <sender@example.com>"' \
|
|
[to]=mailinglist@notmuchmail.org \
|
|
[subject]=notmuch-reply-test \
|
|
'[date]="Tue, 05 Jan 2010 15:43:56 -0000"' \
|
|
'[body]="from guessing test"'
|
|
|
|
output=$(notmuch reply id:${gen_msg_id})
|
|
test_expect_equal "$output" "From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
|
Subject: Re: notmuch-reply-test
|
|
To: Sender <sender@example.com>, mailinglist@notmuchmail.org
|
|
In-Reply-To: <${gen_msg_id}>
|
|
References: <${gen_msg_id}>
|
|
|
|
On Tue, 05 Jan 2010 15:43:56 -0000, Sender <sender@example.com> wrote:
|
|
> from guessing test"
|
|
|
|
test_begin_subtest "Magic from guessing (Envelope-to:)"
|
|
add_message '[from]="Sender <sender@example.com>"' \
|
|
[to]=mailinglist@notmuchmail.org \
|
|
[subject]=notmuch-reply-test \
|
|
'[header]="Envelope-To: test_suite_other@notmuchmail.org"' \
|
|
'[date]="Tue, 05 Jan 2010 15:43:56 -0000"' \
|
|
'[body]="from guessing test"'
|
|
|
|
output=$(notmuch reply id:${gen_msg_id})
|
|
test_expect_equal "$output" "From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
|
Subject: Re: notmuch-reply-test
|
|
To: Sender <sender@example.com>, mailinglist@notmuchmail.org
|
|
In-Reply-To: <${gen_msg_id}>
|
|
References: <${gen_msg_id}>
|
|
|
|
On Tue, 05 Jan 2010 15:43:56 -0000, Sender <sender@example.com> wrote:
|
|
> from guessing test"
|
|
|
|
test_begin_subtest "Magic from guessing (X-Original-To:)"
|
|
add_message '[from]="Sender <sender@example.com>"' \
|
|
[to]=mailinglist@notmuchmail.org \
|
|
[subject]=notmuch-reply-test \
|
|
'[header]="X-Original-To: test_suite_other@notmuchmail.org"' \
|
|
'[date]="Tue, 05 Jan 2010 15:43:56 -0000"' \
|
|
'[body]="from guessing test"'
|
|
|
|
output=$(notmuch reply id:${gen_msg_id})
|
|
test_expect_equal "$output" "From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
|
Subject: Re: notmuch-reply-test
|
|
To: Sender <sender@example.com>, mailinglist@notmuchmail.org
|
|
In-Reply-To: <${gen_msg_id}>
|
|
References: <${gen_msg_id}>
|
|
|
|
On Tue, 05 Jan 2010 15:43:56 -0000, Sender <sender@example.com> wrote:
|
|
> from guessing test"
|
|
|
|
test_begin_subtest "Magic from guessing (Received: .. for ..)"
|
|
add_message '[from]="Sender <sender@example.com>"' \
|
|
[to]=mailinglist@notmuchmail.org \
|
|
[subject]=notmuch-reply-test \
|
|
"[header]=\"Received: from mail.example.com (mail.example.com [1.1.1.1])
|
|
by mail.notmuchmail.org (some MTA) with ESMTP id 12345678
|
|
for <test_suite_other@notmuchmail.org>; Sat, 10 Apr 2010 07:54:51 -0400 (EDT)\"" \
|
|
'[date]="Tue, 05 Jan 2010 15:43:56 -0000"' \
|
|
'[body]="from guessing test"'
|
|
|
|
output=$(notmuch reply id:${gen_msg_id})
|
|
test_expect_equal "$output" "From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
|
Subject: Re: notmuch-reply-test
|
|
To: Sender <sender@example.com>, mailinglist@notmuchmail.org
|
|
In-Reply-To: <${gen_msg_id}>
|
|
References: <${gen_msg_id}>
|
|
|
|
On Tue, 05 Jan 2010 15:43:56 -0000, Sender <sender@example.com> wrote:
|
|
> from guessing test"
|
|
|
|
test_begin_subtest "Magic from guessing (Received: domain)"
|
|
add_message '[from]="Sender <sender@example.com>"' \
|
|
[to]=mailinglist@notmuchmail.org \
|
|
[subject]=notmuch-reply-test \
|
|
"[header]=\"Received: from mail.example.com (mail.example.com [1.1.1.1])
|
|
by mail.otherdomain.org (some MTA) with ESMTP id 12345678
|
|
Sat, 10 Apr 2010 07:54:51 -0400 (EDT)\"" \
|
|
'[date]="Tue, 05 Jan 2010 15:43:56 -0000"' \
|
|
'[body]="from guessing test"'
|
|
|
|
output=$(notmuch reply id:${gen_msg_id})
|
|
test_expect_equal "$output" "From: Notmuch Test Suite <test_suite@notmuchmail.org>
|
|
Subject: Re: notmuch-reply-test
|
|
To: Sender <sender@example.com>, mailinglist@notmuchmail.org
|
|
In-Reply-To: <${gen_msg_id}>
|
|
References: <${gen_msg_id}>
|
|
|
|
On Tue, 05 Jan 2010 15:43:56 -0000, Sender <sender@example.com> wrote:
|
|
> from guessing test"
|
|
|
|
test_done
|