X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=test%2Fformat%2Ftest-myname;h=dda0f37bf8cb8e79092f5d2c2597a4702478e224;hb=26ac907a39f8711907707d53050c2f950a47242f;hp=2b48c2f165899d41d531f5c18b6967b237fa7e17;hpb=0a7c642d8e5474dc67ca3a5595c07731cce7e098;p=mmh diff --git a/test/format/test-myname b/test/format/test-myname index 2b48c2f..dda0f37 100755 --- a/test/format/test-myname +++ b/test/format/test-myname @@ -26,9 +26,34 @@ echo "Signature: Some Random Name 1" >> ${MH} run_test "${MH_LIB_DIR}/ap -format %(myname) ignore" \ "Some Random Name 1" "MH Profile Signature test" -export SIGNATURE="Some Random Name 2" +SIGNATURE="Some Random Name 2" +export SIGNATURE run_test "${MH_LIB_DIR}/ap -format %(myname) ignore" \ "${SIGNATURE}" "SIGNATURE Environment test" +#### Test escaping of display names. +escape="${MH_OBJ_DIR}/test/getfullname" +run_test "$escape "'user' 'user' 'no escape' +run_test "$escape "'first.last' '"first.last"' 'escape' +run_test "$escape "'"first.last"' '"first.last"' 'already escaped' +run_test "$escape "'first.last"' '"first.last"' 'missing initial "' +run_test "$escape "'"first.last' '"first.last"' 'missing final "' +run_test "$escape "'embedded"quote' '"embedded\"quote"' 'embedded quote' +run_test "$escape "'server\name,#' '"server\name"' 'Windows form' +run_test "$escape "'"' '"\""' 'special "' +run_test "$escape "'(' '"("' 'special (' +run_test "$escape "')' '")"' 'special )' +#### We stop at the first comma so this one gets eliminated: +run_test "$escape "',' '' 'special ,' +run_test "$escape "'.' '"."' 'special .' +run_test "$escape "':' '":"' 'special :' +run_test "$escape "';' '";"' 'special ;' +run_test "$escape "'<' '"<"' 'special <' +run_test "$escape "'>' '">"' 'special >' +run_test "$escape "'@' '"@"' 'special @' +run_test "$escape "'[' '"["' 'special [' +run_test "$escape "'\\' '"\\"' 'special \\' +run_test "$escape "']' '"]"' 'special ]' + exit $failed