2006-06-18 00:20:36 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2005 Junio C Hamano
|
|
|
|
#
|
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
test_description='git mailinfo and git mailsplit test'
|
2006-06-18 00:20:36 +02:00
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2016-09-28 21:52:31 +02:00
|
|
|
DATA="$TEST_DIRECTORY/t5100"
|
|
|
|
|
2006-06-18 00:20:36 +02:00
|
|
|
test_expect_success 'split sample box' \
|
2016-09-28 21:52:31 +02:00
|
|
|
'git mailsplit -o. "$DATA/sample.mbox" >last &&
|
2015-12-22 16:27:50 +01:00
|
|
|
last=$(cat last) &&
|
2006-06-18 00:20:36 +02:00
|
|
|
echo total is $last &&
|
2016-09-20 19:17:53 +02:00
|
|
|
test $(cat last) = 18'
|
2006-06-18 00:20:36 +02:00
|
|
|
|
2009-08-27 06:36:05 +02:00
|
|
|
check_mailinfo () {
|
|
|
|
mail=$1 opt=$2
|
|
|
|
mo="$mail$opt"
|
2016-09-28 21:52:31 +02:00
|
|
|
git mailinfo -u $opt "msg$mo" "patch$mo" <"$mail" >"info$mo" &&
|
|
|
|
test_cmp "$DATA/msg$mo" "msg$mo" &&
|
|
|
|
test_cmp "$DATA/patch$mo" "patch$mo" &&
|
|
|
|
test_cmp "$DATA/info$mo" "info$mo"
|
2009-08-27 06:36:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-22 19:35:16 +01:00
|
|
|
for mail in 00*
|
2006-06-18 00:20:36 +02:00
|
|
|
do
|
2008-08-08 11:26:28 +02:00
|
|
|
test_expect_success "mailinfo $mail" '
|
2016-09-28 21:52:31 +02:00
|
|
|
check_mailinfo "$mail" "" &&
|
|
|
|
if test -f "$DATA/msg$mail--scissors"
|
2009-08-27 06:36:05 +02:00
|
|
|
then
|
2016-09-28 21:52:31 +02:00
|
|
|
check_mailinfo "$mail" --scissors
|
2009-11-20 17:12:47 +01:00
|
|
|
fi &&
|
2016-09-28 21:52:31 +02:00
|
|
|
if test -f "$DATA/msg$mail--no-inbody-headers"
|
2009-11-20 17:12:47 +01:00
|
|
|
then
|
2016-09-28 21:52:31 +02:00
|
|
|
check_mailinfo "$mail" --no-inbody-headers
|
2015-03-20 11:06:15 +01:00
|
|
|
fi &&
|
2016-09-28 21:52:31 +02:00
|
|
|
if test -f "$DATA/msg$mail--message-id"
|
2014-11-25 15:00:55 +01:00
|
|
|
then
|
2016-09-28 21:52:31 +02:00
|
|
|
check_mailinfo "$mail" --message-id
|
2014-11-25 15:00:55 +01:00
|
|
|
fi
|
2008-08-08 11:26:28 +02:00
|
|
|
'
|
2006-06-18 00:20:36 +02:00
|
|
|
done
|
|
|
|
|
2009-01-12 23:21:04 +01:00
|
|
|
|
|
|
|
test_expect_success 'split box with rfc2047 samples' \
|
|
|
|
'mkdir rfc2047 &&
|
2016-09-28 21:52:31 +02:00
|
|
|
git mailsplit -orfc2047 "$DATA/rfc2047-samples.mbox" \
|
2009-01-12 23:21:04 +01:00
|
|
|
>rfc2047/last &&
|
2015-12-22 16:27:50 +01:00
|
|
|
last=$(cat rfc2047/last) &&
|
2009-01-12 23:21:04 +01:00
|
|
|
echo total is $last &&
|
2015-12-22 16:27:50 +01:00
|
|
|
test $(cat rfc2047/last) = 11'
|
2009-01-12 23:21:04 +01:00
|
|
|
|
2015-12-22 19:35:16 +01:00
|
|
|
for mail in rfc2047/00*
|
2009-01-12 23:21:04 +01:00
|
|
|
do
|
|
|
|
test_expect_success "mailinfo $mail" '
|
2016-09-28 21:52:31 +02:00
|
|
|
git mailinfo -u "$mail-msg" "$mail-patch" <"$mail" >"$mail-info" &&
|
2009-01-12 23:21:04 +01:00
|
|
|
echo msg &&
|
2016-09-28 21:52:31 +02:00
|
|
|
test_cmp "$DATA/empty" "$mail-msg" &&
|
2009-01-12 23:21:04 +01:00
|
|
|
echo patch &&
|
2016-09-28 21:52:31 +02:00
|
|
|
test_cmp "$DATA/empty" "$mail-patch" &&
|
2009-01-12 23:21:04 +01:00
|
|
|
echo info &&
|
2016-09-28 21:52:31 +02:00
|
|
|
test_cmp "$DATA/rfc2047-info-$(basename $mail)" "$mail-info"
|
2009-01-12 23:21:04 +01:00
|
|
|
'
|
|
|
|
done
|
|
|
|
|
2008-05-16 15:03:30 +02:00
|
|
|
test_expect_success 'respect NULs' '
|
|
|
|
|
2016-09-28 21:52:31 +02:00
|
|
|
git mailsplit -d3 -o. "$DATA/nul-plain" &&
|
|
|
|
test_cmp "$DATA/nul-plain" 001 &&
|
2008-05-16 15:03:30 +02:00
|
|
|
(cat 001 | git mailinfo msg patch) &&
|
2012-04-11 13:24:01 +02:00
|
|
|
test_line_count = 4 patch
|
2008-05-16 15:03:30 +02:00
|
|
|
|
|
|
|
'
|
|
|
|
|
2008-05-25 10:16:05 +02:00
|
|
|
test_expect_success 'Preserve NULs out of MIME encoded message' '
|
|
|
|
|
2016-09-28 21:52:31 +02:00
|
|
|
git mailsplit -d5 -o. "$DATA/nul-b64.in" &&
|
|
|
|
test_cmp "$DATA/nul-b64.in" 00001 &&
|
2008-05-25 10:16:05 +02:00
|
|
|
git mailinfo msg patch <00001 &&
|
2016-09-28 21:52:31 +02:00
|
|
|
test_cmp "$DATA/nul-b64.expect" patch
|
2008-05-25 10:16:05 +02:00
|
|
|
|
|
|
|
'
|
|
|
|
|
mailinfo: avoid violating strbuf assertion
In handle_from, we calculate the end boundary of a section
to remove from a strbuf using strcspn like this:
el = strcspn(buf, set_of_end_boundaries);
strbuf_remove(&sb, start, el + 1);
This works fine if "el" is the offset of the boundary
character, meaning we remove up to and including that
character. But if the end boundary didn't match (that is, we
hit the end of the string as the boundary instead) then we
want just "el". Asking for "el+1" caught an out-of-bounds
assertion in the strbuf library.
This manifested itself when we got a 'From' header that had
just an email address with nothing else in it (the end of
the string was the end of the address, rather than, e.g., a
trailing '>' character), causing git-mailinfo to barf.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-08-19 19:28:24 +02:00
|
|
|
test_expect_success 'mailinfo on from header without name works' '
|
|
|
|
|
|
|
|
mkdir info-from &&
|
2016-09-28 21:52:31 +02:00
|
|
|
git mailsplit -oinfo-from "$DATA/info-from.in" &&
|
|
|
|
test_cmp "$DATA/info-from.in" info-from/0001 &&
|
mailinfo: avoid violating strbuf assertion
In handle_from, we calculate the end boundary of a section
to remove from a strbuf using strcspn like this:
el = strcspn(buf, set_of_end_boundaries);
strbuf_remove(&sb, start, el + 1);
This works fine if "el" is the offset of the boundary
character, meaning we remove up to and including that
character. But if the end boundary didn't match (that is, we
hit the end of the string as the boundary instead) then we
want just "el". Asking for "el+1" caught an out-of-bounds
assertion in the strbuf library.
This manifested itself when we got a 'From' header that had
just an email address with nothing else in it (the end of
the string was the end of the address, rather than, e.g., a
trailing '>' character), causing git-mailinfo to barf.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-08-19 19:28:24 +02:00
|
|
|
git mailinfo info-from/msg info-from/patch \
|
|
|
|
<info-from/0001 >info-from/out &&
|
2016-09-28 21:52:31 +02:00
|
|
|
test_cmp "$DATA/info-from.expect" info-from/out
|
mailinfo: avoid violating strbuf assertion
In handle_from, we calculate the end boundary of a section
to remove from a strbuf using strcspn like this:
el = strcspn(buf, set_of_end_boundaries);
strbuf_remove(&sb, start, el + 1);
This works fine if "el" is the offset of the boundary
character, meaning we remove up to and including that
character. But if the end boundary didn't match (that is, we
hit the end of the string as the boundary instead) then we
want just "el". Asking for "el+1" caught an out-of-bounds
assertion in the strbuf library.
This manifested itself when we got a 'From' header that had
just an email address with nothing else in it (the end of
the string was the end of the address, rather than, e.g., a
trailing '>' character), causing git-mailinfo to barf.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-08-19 19:28:24 +02:00
|
|
|
|
|
|
|
'
|
|
|
|
|
2014-09-14 03:30:38 +02:00
|
|
|
test_expect_success 'mailinfo finds headers after embedded From line' '
|
|
|
|
mkdir embed-from &&
|
2016-09-28 21:52:31 +02:00
|
|
|
git mailsplit -oembed-from "$DATA/embed-from.in" &&
|
|
|
|
test_cmp "$DATA/embed-from.in" embed-from/0001 &&
|
2014-09-14 03:30:38 +02:00
|
|
|
git mailinfo embed-from/msg embed-from/patch \
|
|
|
|
<embed-from/0001 >embed-from/out &&
|
2016-09-28 21:52:31 +02:00
|
|
|
test_cmp "$DATA/embed-from.expect" embed-from/out
|
2014-09-14 03:30:38 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'mailinfo on message with quoted >From' '
|
|
|
|
mkdir quoted-from &&
|
2016-09-28 21:52:31 +02:00
|
|
|
git mailsplit -oquoted-from "$DATA/quoted-from.in" &&
|
|
|
|
test_cmp "$DATA/quoted-from.in" quoted-from/0001 &&
|
2014-09-14 03:30:38 +02:00
|
|
|
git mailinfo quoted-from/msg quoted-from/patch \
|
|
|
|
<quoted-from/0001 >quoted-from/out &&
|
2016-09-28 21:52:31 +02:00
|
|
|
test_cmp "$DATA/quoted-from.expect" quoted-from/msg
|
2014-09-14 03:30:38 +02:00
|
|
|
'
|
|
|
|
|
2016-06-05 06:46:40 +02:00
|
|
|
test_expect_success 'mailinfo unescapes with --mboxrd' '
|
|
|
|
mkdir mboxrd &&
|
|
|
|
git mailsplit -omboxrd --mboxrd \
|
2016-09-28 21:52:31 +02:00
|
|
|
"$DATA/sample.mboxrd" >last &&
|
2016-06-05 06:46:40 +02:00
|
|
|
test x"$(cat last)" = x2 &&
|
|
|
|
for i in 0001 0002
|
|
|
|
do
|
|
|
|
git mailinfo mboxrd/msg mboxrd/patch \
|
|
|
|
<mboxrd/$i >mboxrd/out &&
|
2016-09-28 21:52:31 +02:00
|
|
|
test_cmp "$DATA/${i}mboxrd" mboxrd/msg
|
2016-06-05 06:46:40 +02:00
|
|
|
done &&
|
|
|
|
sp=" " &&
|
|
|
|
echo "From " >expect &&
|
|
|
|
echo "From " >>expect &&
|
|
|
|
echo >> expect &&
|
|
|
|
cat >sp <<-INPUT_END &&
|
|
|
|
From mboxrd Mon Sep 17 00:00:00 2001
|
|
|
|
From: trailing spacer <sp@example.com>
|
|
|
|
Subject: [PATCH] a commit with trailing space
|
|
|
|
|
|
|
|
From$sp
|
|
|
|
>From$sp
|
|
|
|
|
|
|
|
INPUT_END
|
|
|
|
|
|
|
|
git mailsplit -f2 -omboxrd --mboxrd <sp >last &&
|
|
|
|
test x"$(cat last)" = x1 &&
|
|
|
|
git mailinfo mboxrd/msg mboxrd/patch <mboxrd/0003 &&
|
|
|
|
test_cmp expect mboxrd/msg
|
|
|
|
'
|
|
|
|
|
2016-09-28 21:52:32 +02:00
|
|
|
test_expect_success 'mailinfo handles rfc2822 quoted-string' '
|
|
|
|
mkdir quoted-string &&
|
|
|
|
git mailinfo /dev/null /dev/null <"$DATA/quoted-string.in" \
|
|
|
|
>quoted-string/info &&
|
|
|
|
test_cmp "$DATA/quoted-string.expect" quoted-string/info
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'mailinfo handles rfc2822 comment' '
|
|
|
|
mkdir comment &&
|
|
|
|
git mailinfo /dev/null /dev/null <"$DATA/comment.in" \
|
|
|
|
>comment/info &&
|
|
|
|
test_cmp "$DATA/comment.expect" comment/info
|
|
|
|
'
|
|
|
|
|
2016-11-22 22:13:16 +01:00
|
|
|
test_expect_success 'mailinfo with mailinfo.scissors config' '
|
|
|
|
test_config mailinfo.scissors true &&
|
|
|
|
(
|
|
|
|
mkdir sub &&
|
|
|
|
cd sub &&
|
|
|
|
git mailinfo ../msg0014.sc ../patch0014.sc <../0014 >../info0014.sc
|
|
|
|
) &&
|
|
|
|
test_cmp "$DATA/msg0014--scissors" msg0014.sc &&
|
|
|
|
test_cmp "$DATA/patch0014--scissors" patch0014.sc &&
|
|
|
|
test_cmp "$DATA/info0014--scissors" info0014.sc
|
|
|
|
'
|
|
|
|
|
|
|
|
|
2017-05-31 12:26:10 +02:00
|
|
|
test_expect_success 'mailinfo no options' '
|
|
|
|
subj="$(echo "Subject: [PATCH] [other] [PATCH] message" |
|
|
|
|
git mailinfo /dev/null /dev/null)" &&
|
|
|
|
test z"$subj" = z"Subject: message"
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'mailinfo -k' '
|
|
|
|
subj="$(echo "Subject: [PATCH] [other] [PATCH] message" |
|
|
|
|
git mailinfo -k /dev/null /dev/null)" &&
|
|
|
|
test z"$subj" = z"Subject: [PATCH] [other] [PATCH] message"
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'mailinfo -b no [PATCH]' '
|
|
|
|
subj="$(echo "Subject: [other] message" |
|
|
|
|
git mailinfo -b /dev/null /dev/null)" &&
|
|
|
|
test z"$subj" = z"Subject: [other] message"
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'mailinfo -b leading [PATCH]' '
|
|
|
|
subj="$(echo "Subject: [PATCH] [other] message" |
|
|
|
|
git mailinfo -b /dev/null /dev/null)" &&
|
|
|
|
test z"$subj" = z"Subject: [other] message"
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'mailinfo -b double [PATCH]' '
|
|
|
|
subj="$(echo "Subject: [PATCH] [PATCH] message" |
|
|
|
|
git mailinfo -b /dev/null /dev/null)" &&
|
|
|
|
test z"$subj" = z"Subject: message"
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_failure 'mailinfo -b trailing [PATCH]' '
|
|
|
|
subj="$(echo "Subject: [other] [PATCH] message" |
|
|
|
|
git mailinfo -b /dev/null /dev/null)" &&
|
|
|
|
test z"$subj" = z"Subject: [other] message"
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_failure 'mailinfo -b separated double [PATCH]' '
|
|
|
|
subj="$(echo "Subject: [PATCH] [other] [PATCH] message" |
|
|
|
|
git mailinfo -b /dev/null /dev/null)" &&
|
|
|
|
test z"$subj" = z"Subject: [other] message"
|
|
|
|
'
|
|
|
|
|
2006-06-18 00:20:36 +02:00
|
|
|
test_done
|