diff options
Diffstat (limited to 'util/t')
| -rwxr-xr-x | util/t/uriparse/parse-retard-uri | 13 | ||||
| -rwxr-xr-x | util/t/uriparse/parse-url | 5 | 
2 files changed, 16 insertions, 2 deletions
| diff --git a/util/t/uriparse/parse-retard-uri b/util/t/uriparse/parse-retard-uri new file mode 100755 index 00000000..14aab28e --- /dev/null +++ b/util/t/uriparse/parse-retard-uri @@ -0,0 +1,13 @@ +#!/bin/sh +set -euf +tempfile="`mktemp /tmp/test.XXXXXXXX`" +trap "/bin/rm -f $tempfile" EXIT INT + +uriparse "http://'lolwut:\"khan@domain.tld/'''" > $tempfile +. $tempfile +[ $HOSTN == "domain.tld" ] && \ +    [ "$USERNAME" == "'lolwut" ] && \ +    [ "$PASSWORD" == '"khan' ] && \ +    [ "$URIPATH" == "/'''" ]  + + diff --git a/util/t/uriparse/parse-url b/util/t/uriparse/parse-url index 153afb4a..b0c926ca 100755 --- a/util/t/uriparse/parse-url +++ b/util/t/uriparse/parse-url @@ -3,10 +3,11 @@ set -euf  tempfile="`mktemp /tmp/test.XXXXXXXX`"  trap "/bin/rm -f $tempfile" EXIT INT -urlparse "http://user:pass@domain.tld/path" > $tempfile +uriparse "http://user:pass@domain.tld/path" > $tempfile  . $tempfile -[ $HOSTNAME == "domain.tld" ] && \ +[ $HOSTN == "domain.tld" ] && \      [ $USERNAME == "user" ] && \      [ $PASSWORD == "pass" ] && \      [ $URIPATH == "/path" ]  + | 
