From: Jacob Keller Date: Wed, 14 Aug 2024 00:05:10 +0000 (-0700) Subject: t9001-send-email.sh: update alias list used for pine test X-Git-Tag: v2.47.0-rc0~93^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bbc04b0094621bdd6d1e60c1cd96c64d916d3339;p=thirdparty%2Fgit.git t9001-send-email.sh: update alias list used for pine test The set of aliases used for the pine --dump-aliases test do not perfectly mesh with the way the pine address book is defined. While technically all valid, there are some oddities including bob's name being partially split so that the actual address is returned as "Bobbyton ". A strict reading of the pine documentation indicates that the address should either be of the form "address@domain" or a comma separated list of address, name/address pairs, or other aliases enclosed by (). The parsing implementation in git-send-email is not as strict, but it makes sense to ensure the test data used is. Although the --dump-aliases test does not make use of the address data, it is helpful to avoid giving future developers the wrong impression of the file format. Also add an alias which translates to multiple addresses using the () format. Signed-off-by: Jacob Keller Signed-off-by: Junio C Hamano --- diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh index aa36ace393..c96d6955b9 100755 --- a/t/t9001-send-email.sh +++ b/t/t9001-send-email.sh @@ -2093,13 +2093,15 @@ test_dump_aliases '--dump-aliases mailrc format' \ test_dump_aliases '--dump-aliases pine format' \ 'pine' \ 'alice' \ + 'bcgrp' \ 'bob' \ 'chloe' \ 'eve' <<-\EOF - alice Alice W Land - eve Eve - bob Robert Bobbyton + alice Alice W Land awol@example.com Friend + eve Eve eve@example.com + bob Robert Bobbyton bob@example.com chloe chloe@example.com + bcgrp (bob, chloe, Other ) EOF test_dump_aliases '--dump-aliases gnus format' \