X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=tests%2Furl001.phpt;h=647c7a529ab6a8d3bf9f98c4f49d18783b1a470a;hp=e1bc2504875273bcfc98f75593f222f5225d2a9e;hb=54059a470e850eb8380bde2a4ed117e25c1b3e95;hpb=b54d9ed0b0cd930f76754fe281e66f36a953085b diff --git a/tests/url001.phpt b/tests/url001.phpt index e1bc250..647c7a5 100644 --- a/tests/url001.phpt +++ b/tests/url001.phpt @@ -11,11 +11,12 @@ HTTP_HOST=example.com s=b&i=0&e=&a[]=1&a[]=2 --FILE-- "https", "port" => 443))); -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)); +printf("%s\n", new http\Env\Url); +printf("%s\n", new http\Env\Url("other", "index")); +printf("%s\n", new http\Env\Url(array("scheme" => "https", "port" => 443))); +printf("%s\n", new http\Env\Url(array("path" => "/./up/../down/../././//index.php/.", "query" => null), null, http\Url::SANITIZE_PATH|http\Url::FROM_ENV)); +printf("%s\n", new http\Env\Url(null, null, 0)); +printf("%s\n", new http\Url(null, null, http\Url::FROM_ENV)); ?> DONE --EXPECTF-- @@ -23,5 +24,6 @@ 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://example.com:55555/?s=b&i=0&e=&a[]=1&a[]=2 +http://example.com:55555/?s=b&i=0&e=&a[]=1&a[]=2 DONE