]> granicus.if.org Git - php/commitdiff
add a test case previously broken by a bad fix
authorStanislav Malyshev <stas@php.net>
Fri, 25 Apr 2014 06:58:38 +0000 (23:58 -0700)
committerStanislav Malyshev <stas@php.net>
Fri, 25 Apr 2014 06:58:38 +0000 (23:58 -0700)
ext/standard/tests/url/parse_url_basic_001.phpt
ext/standard/tests/url/parse_url_basic_002.phpt
ext/standard/tests/url/parse_url_basic_003.phpt
ext/standard/tests/url/parse_url_basic_004.phpt
ext/standard/tests/url/parse_url_basic_005.phpt
ext/standard/tests/url/parse_url_basic_006.phpt
ext/standard/tests/url/parse_url_basic_007.phpt
ext/standard/tests/url/parse_url_basic_008.phpt
ext/standard/tests/url/parse_url_basic_009.phpt
ext/standard/tests/url/urls.inc

index 4c5b0944c66036018ce31181d21275dc652bc35a..a6f4f7a252144c6e48afaa433475cc89b7df3122 100644 (file)
@@ -845,6 +845,13 @@ echo "Done";
   string(1) "/"
 }
 
+--> /rest/Users?filter={"id":"123"}: array(2) {
+  ["path"]=>
+  string(11) "/rest/Users"
+  ["query"]=>
+  string(19) "filter={"id":"123"}"
+}
+
 --> http:///blah.com: bool(false)
 
 --> http://:80: bool(false)
index ed0f08a84f53421577b01b6a96230a48fc3f17af..c05d1f487ab2b749320ad5156b6ba448a168e62e 100644 (file)
@@ -110,6 +110,7 @@ echo "Done";
 --> http://[x:80]/   : string(4) "http"
 -->    : NULL
 --> /   : NULL
+--> /rest/Users?filter={"id":"123"}   : NULL
 --> http:///blah.com   : bool(false)
 --> http://:80   : bool(false)
 --> http://user@:80   : bool(false)
index a2bbfa6482bd6ca0827912eb6526cfd4419074cc..88eda504d561af6da05e2b749282ae0803f6bd30 100644 (file)
@@ -109,6 +109,7 @@ echo "Done";
 --> http://[x:80]/   : string(6) "[x:80]"
 -->    : NULL
 --> /   : NULL
+--> /rest/Users?filter={"id":"123"}   : NULL
 --> http:///blah.com   : bool(false)
 --> http://:80   : bool(false)
 --> http://user@:80   : bool(false)
index 839ebee554fff518b344bff12e4ffa7ef3d46c66..e3b9abd91ccf55ffd77fc7413a13e58bac8f69ea 100644 (file)
@@ -109,6 +109,7 @@ echo "Done";
 --> http://[x:80]/   : NULL
 -->    : NULL
 --> /   : NULL
+--> /rest/Users?filter={"id":"123"}   : NULL
 --> http:///blah.com   : bool(false)
 --> http://:80   : bool(false)
 --> http://user@:80   : bool(false)
index c113461fe7591a3480ce666c532bd710e0c32245..1fc946e5b391165ee7c3b32e7f65cc9850e3a7bb 100644 (file)
@@ -109,6 +109,7 @@ echo "Done";
 --> http://[x:80]/   : NULL
 -->    : NULL
 --> /   : NULL
+--> /rest/Users?filter={"id":"123"}   : NULL
 --> http:///blah.com   : bool(false)
 --> http://:80   : bool(false)
 --> http://user@:80   : bool(false)
index 24de1cc23384f8c1e72db20c047b7839a112a430..5104326198810f1b01e14b47433bec764b92610a 100644 (file)
@@ -109,6 +109,7 @@ echo "Done";
 --> http://[x:80]/   : NULL
 -->    : NULL
 --> /   : NULL
+--> /rest/Users?filter={"id":"123"}   : NULL
 --> http:///blah.com   : bool(false)
 --> http://:80   : bool(false)
 --> http://user@:80   : bool(false)
index d4006879f4e99af5477cbb87ee71f8e33866d9bb..8e0455398360202861e6e5a68a27fe44443516a9 100644 (file)
@@ -109,6 +109,7 @@ echo "Done";
 --> http://[x:80]/   : string(1) "/"
 -->    : string(0) ""
 --> /   : string(1) "/"
+--> /rest/Users?filter={"id":"123"}   : string(11) "/rest/Users"
 --> http:///blah.com   : bool(false)
 --> http://:80   : bool(false)
 --> http://user@:80   : bool(false)
index b283829c46624975a7ddc0e79d5a00258a3b5705..0c77221465e7827464bcd481987dffc067bead8a 100644 (file)
@@ -109,6 +109,7 @@ echo "Done";
 --> http://[x:80]/   : NULL
 -->    : NULL
 --> /   : NULL
+--> /rest/Users?filter={"id":"123"}   : string(19) "filter={"id":"123"}"
 --> http:///blah.com   : bool(false)
 --> http://:80   : bool(false)
 --> http://user@:80   : bool(false)
index a7d70f34da7ec59f60c1e3a8b832c7e7197c0da8..487b2711497379dd9dfe4d75ef18ed6e85f136cf 100644 (file)
@@ -109,6 +109,7 @@ echo "Done";
 --> http://[x:80]/   : NULL
 -->    : NULL
 --> /   : NULL
+--> /rest/Users?filter={"id":"123"}   : NULL
 --> http:///blah.com   : bool(false)
 --> http://:80   : bool(false)
 --> http://user@:80   : bool(false)
index 4192f4a869770cab296f77ec9ac2137c50008cf4..d8ffe9137804f392100fb4d3fa5ddbf4a7f701e2 100644 (file)
@@ -89,6 +89,7 @@ $urls = array(
 'http://[x:80]/',
 '',
 '/',
+'/rest/Users?filter={"id":"123"}',
 
 // Severely malformed URLs that do not parse:
 'http:///blah.com',