X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/b0b7ee58c482bf36063e6158f610dd337f3ca568..8a0176e1ef5612725f97baec519775c72468ab55:/test/format/test-mymbox diff --git a/test/format/test-mymbox b/test/format/test-mymbox index e3decd99..f71a3c92 100755 --- a/test/format/test-mymbox +++ b/test/format/test-mymbox @@ -13,24 +13,41 @@ fi setup_test -user="`id -un`" -host="`hostname`" - -run_test "${MH_LIB_DIR}/ap -format %(mymbox{text}) ${user}" \ - 1 "Basic user test" -run_test "${MH_LIB_DIR}/ap -format %(mymbox{text}) ${user}@${host}" \ - 1 "Basic user@host 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=`run_prog ${MH_LIB_DIR}/ap -format '%(me)' 0` +host=`${MH_OBJ_DIR}/test/getcanon` + +output=`run_prog ${MH_LIB_DIR}/ap -format '%(mymbox{text})' "${user}"` +run_test "echo $output" 1 "Basic user test" +output=`run_prog ${MH_LIB_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" \ 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} -run_test "echo `${MH_LIB_DIR}/ap -format '%(mymbox{text})' "${myname}"`" \ +run_test "echo \ + `run_prog ${MH_LIB_DIR}/ap -format '%(mymbox{text})' "${myname}"`" \ 1 "Local-Mailbox test" -run_test "${MH_LIB_DIR}/ap -format %(mymbox{text}) ${user}@${host}" \ - 0 "Local-mailbox overriding user@host test" +output=`run_prog ${MH_LIB_DIR}/ap -format '%(mymbox{text})' "${user}@${host}"` +run_test "echo $output" 0 "Local-mailbox overriding user@host test" + +# 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 \ + `run_prog ${MH_LIB_DIR}/ap -format '%(mymbox{text})' "${myname}"`" \ + 1 "Local-Mailbox with Alternate-Mailbox test" exit $failed