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
|
|
|
|
|
|
|
|
test_expect_success 'split sample box' \
|
2008-08-08 11:26:28 +02:00
|
|
|
'git mailsplit -o. "$TEST_DIRECTORY"/t5100/sample.mbox >last &&
|
2006-06-18 00:20:36 +02:00
|
|
|
last=`cat last` &&
|
|
|
|
echo total is $last &&
|
2009-11-20 17:12:47 +01:00
|
|
|
test `cat last` = 16'
|
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"
|
|
|
|
git mailinfo -u $opt msg$mo patch$mo <$mail >info$mo &&
|
|
|
|
test_cmp "$TEST_DIRECTORY"/t5100/msg$mo msg$mo &&
|
|
|
|
test_cmp "$TEST_DIRECTORY"/t5100/patch$mo patch$mo &&
|
|
|
|
test_cmp "$TEST_DIRECTORY"/t5100/info$mo info$mo
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-18 00:20:36 +02:00
|
|
|
for mail in `echo 00*`
|
|
|
|
do
|
2008-08-08 11:26:28 +02:00
|
|
|
test_expect_success "mailinfo $mail" '
|
2009-08-27 06:36:05 +02:00
|
|
|
check_mailinfo $mail "" &&
|
|
|
|
if test -f "$TEST_DIRECTORY"/t5100/msg$mail--scissors
|
|
|
|
then
|
|
|
|
check_mailinfo $mail --scissors
|
2009-11-20 17:12:47 +01:00
|
|
|
fi &&
|
|
|
|
if test -f "$TEST_DIRECTORY"/t5100/msg$mail--no-inbody-headers
|
|
|
|
then
|
|
|
|
check_mailinfo $mail --no-inbody-headers
|
2009-08-27 06:36:05 +02: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 &&
|
|
|
|
git mailsplit -orfc2047 "$TEST_DIRECTORY"/t5100/rfc2047-samples.mbox \
|
|
|
|
>rfc2047/last &&
|
|
|
|
last=`cat rfc2047/last` &&
|
|
|
|
echo total is $last &&
|
|
|
|
test `cat rfc2047/last` = 11'
|
|
|
|
|
|
|
|
for mail in `echo rfc2047/00*`
|
|
|
|
do
|
|
|
|
test_expect_success "mailinfo $mail" '
|
|
|
|
git mailinfo -u $mail-msg $mail-patch <$mail >$mail-info &&
|
|
|
|
echo msg &&
|
|
|
|
test_cmp "$TEST_DIRECTORY"/t5100/empty $mail-msg &&
|
|
|
|
echo patch &&
|
|
|
|
test_cmp "$TEST_DIRECTORY"/t5100/empty $mail-patch &&
|
|
|
|
echo info &&
|
|
|
|
test_cmp "$TEST_DIRECTORY"/t5100/rfc2047-info-$(basename $mail) $mail-info
|
|
|
|
'
|
|
|
|
done
|
|
|
|
|
2008-05-16 15:03:30 +02:00
|
|
|
test_expect_success 'respect NULs' '
|
|
|
|
|
2008-08-08 11:26:28 +02:00
|
|
|
git mailsplit -d3 -o. "$TEST_DIRECTORY"/t5100/nul-plain &&
|
|
|
|
test_cmp "$TEST_DIRECTORY"/t5100/nul-plain 001 &&
|
2008-05-16 15:03:30 +02:00
|
|
|
(cat 001 | git mailinfo msg patch) &&
|
|
|
|
test 4 = $(wc -l < patch)
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2008-05-25 10:16:05 +02:00
|
|
|
test_expect_success 'Preserve NULs out of MIME encoded message' '
|
|
|
|
|
2008-08-08 11:26:28 +02:00
|
|
|
git mailsplit -d5 -o. "$TEST_DIRECTORY"/t5100/nul-b64.in &&
|
|
|
|
test_cmp "$TEST_DIRECTORY"/t5100/nul-b64.in 00001 &&
|
2008-05-25 10:16:05 +02:00
|
|
|
git mailinfo msg patch <00001 &&
|
2008-08-08 11:26:28 +02:00
|
|
|
test_cmp "$TEST_DIRECTORY"/t5100/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 &&
|
|
|
|
git mailsplit -oinfo-from "$TEST_DIRECTORY"/t5100/info-from.in &&
|
|
|
|
test_cmp "$TEST_DIRECTORY"/t5100/info-from.in info-from/0001 &&
|
|
|
|
git mailinfo info-from/msg info-from/patch \
|
|
|
|
<info-from/0001 >info-from/out &&
|
|
|
|
test_cmp "$TEST_DIRECTORY"/t5100/info-from.expect info-from/out
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2006-06-18 00:20:36 +02:00
|
|
|
test_done
|