X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/2734ae8bfd1261aae65da3e14453dcfc1896f8d4..refs/heads/master:/test/format/test-mymbox?ds=sidebyside diff --git a/test/format/test-mymbox b/test/format/test-mymbox index 0221fad2..ee5e7270 100755 --- a/test/format/test-mymbox +++ b/test/format/test-mymbox @@ -13,39 +13,87 @@ fi setup_test -#### Use ap to get the username. That will either be what's in the -#### Local-Mailbox profile component, which we don't use in the test -#### suite, or the user's login name. ap will escape (quote) it if -#### needed. -user=`${MH_LIB_DIR}/ap -format '%(me)' 0` +#### Remove existing Local-Mailbox: profile component, if any. +grep -v 'Local-Mailbox: ' "$MH" > "$MH".new +mv -f "$MH".new "$MH" + +user=`id -nu` +set +e host=`${MH_OBJ_DIR}/test/getcanon` +set -e -output=`${MH_LIB_DIR}/ap -format '%(mymbox{text})' "${user}"` +output=`run_prog ${MH_LIBEXEC_DIR}/ap -format '%(mymbox{text})' "${user}"` run_test "echo $output" 1 "Basic user test" -output=`${MH_LIB_DIR}/ap -format '%(mymbox{text})' "${user}@${host}"` +output=`run_prog ${MH_LIBEXEC_DIR}/ap -format '%(mymbox{text})' "${user}@${host}"` run_test "echo $output" 1 "Basic user@host test" -run_test "${MH_LIB_DIR}/ap -format %(mymbox{text}) nosuchuser@nosuchhost.blah" \ +run_test "${MH_LIBEXEC_DIR}/ap -format %(mymbox{text}) nosuchuser@nosuchhost.blah" \ 0 "Basic non-matching test" myname="Random User " -#### Remove existing Local-Mailbox: profile component, if any. Then -#### add one. -grep -v 'Local-Mailbox: ' ${MH} > ${MH}.new -mv -f ${MH}.new ${MH} -echo "Local-Mailbox: ${myname}" >> ${MH} +#### Add Local-Mailbox profile component. +echo "Local-Mailbox: ${myname}" >> "$MH" -run_test "echo `${MH_LIB_DIR}/ap -format '%(mymbox{text})' "${myname}"`" \ +run_test "echo \ + `run_prog ${MH_LIBEXEC_DIR}/ap -format '%(mymbox{text})' "${myname}"`" \ 1 "Local-Mailbox test" -output=`${MH_LIB_DIR}/ap -format '%(mymbox{text})' "${user}@${host}"` -run_test "echo $output" 0 "Local-mailbox overriding user@host test" +output=`run_prog ${MH_LIBEXEC_DIR}/ap -format '%(mymbox{text})' "${user}@${host}"` +run_test "echo $output" 0 "Local-Mailbox overriding user@host test" + +#### Test getusername() when there is a Local-Mailbox profile component. +run_test 'fmttest -raw -format %(me) ""' "${user}" # Add an Alternate-Mailbox. This caused ismymbox() to lose the # Local-Mailbox, Bug #36635: -nocc me doesn't account for # Alternate-Mailboxes. printf 'Alternate-Mailboxes: user@example.com\n' >> $MH -run_test "echo `${MH_LIB_DIR}/ap -format '%(mymbox{text})' "${myname}"`" \ +run_test "echo \ + `run_prog ${MH_LIBEXEC_DIR}/ap -format '%(mymbox{text})' "${myname}"`" \ 1 "Local-Mailbox with Alternate-Mailbox test" +# check getmymbox, without match +start_test "getmymbox, without match" +run_test 'fmttest -message -format %(getmymbox{from}) first' '' + +# check getmyaddr, without match +start_test "getmyaddr, without match" +run_test 'fmttest -message -format %(getmyaddr{from}) first' '' + +grep -v 'Alternate-Mailboxes: ' "$MH" > "$MH".new +mv -f "$MH".new "$MH" +cat >>"$MH" <' + +# check getmyaddr, with match +start_test "getmyaddr, with match" +run_test 'fmttest -message -format %(getmyaddr{from}) first' \ + 'test1@example.com' + +# check getmymbox and getmyaddr, with match of other than first address in +start_test "getmymbox and getmyaddr, with match of other than first address in" +# component +cat >`mhpath new` <<'EOF' +From: Test11 +Cc: Test0 , Test3 , + Test1 , Test2 +To: Some User +Date: Fri, 29 Sep 2006 00:00:00 +Message-Id: 11@test.nmh +Subject: Testing message 11 + +This is message number 11 +EOF +run_test 'fmttest -message -format %(getmymbox{cc}) last' \ + 'Test1 ' +run_test 'fmttest -message -format %(getmyaddr{cc}) last' \ + 'test1@example.com' + +finish_test exit $failed