X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Furl001.phpt;h=e1bc2504875273bcfc98f75593f222f5225d2a9e;hp=6519ddfcb4900bd8ee21661fdb2294e40c655ff5;hb=860f294514633abead8ed6df000655a93e98a30c;hpb=61c5a47e7530b142df6b67332e60a339998c2492 diff --git a/tests/url001.phpt b/tests/url001.phpt index 6519ddf..e1bc250 100644 --- a/tests/url001.phpt +++ b/tests/url001.phpt @@ -1,7 +1,9 @@ --TEST-- url from env --SKIPIF-- - + --ENV-- SERVER_PORT=55555 HTTP_HOST=example.com @@ -12,7 +14,7 @@ s=b&i=0&e=&a[]=1&a[]=2 printf("%s\n", new http\Url); printf("%s\n", new http\Url("other", "index")); printf("%s\n", new http\Url(array("scheme" => "https", "port" => 443))); -printf("%s\n", new http\Url(array("path" => "/./up/../down/../././//index.php/.", "query" => null))); +printf("%s\n", new http\Url(array("path" => "/./up/../down/../././//index.php/.", "query" => null), null, http\Url::SANITIZE_PATH|http\Url::FROM_ENV)); printf("%s\n", new http\Url(null, null, 0)); ?> DONE @@ -21,5 +23,5 @@ http://example.com:55555/?s=b&i=0&e=&a[]=1&a[]=2 http://example.com:55555/index?s=b&i=0&e=&a[]=1&a[]=2 https://example.com/?s=b&i=0&e=&a[]=1&a[]=2 http://example.com:55555/index.php/ -http://localhost/ + DONE