summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file
diff options
context:
space:
mode:
authorLauri Kenttä <lauri.kentta@gmail.com>2016-07-11 12:40:03 +0300
committerNikita Popov <nikic@php.net>2016-07-22 18:03:55 +0200
commit7a02704c0ecdf4373c810760e70a424841619e0c (patch)
treec9076eab42da2e8137b872663b1a1c37cdc66576 /ext/standard/tests/file
parentf775199ac70abef4bf7fa29c805d73df09131e21 (diff)
downloadphp-git-7a02704c0ecdf4373c810760e70a424841619e0c.tar.gz
Require strict base64 in data URI
As the tests already show, the data URI wrapper is supposed to fail for corrupt input, but for some reason, one case of invalid input is still allowed to pass?! Strict base64 makes a lot more sense here. Also, Chromium and Firefox fail on invalid base64, so it's a logical choice for PHP as well.
Diffstat (limited to 'ext/standard/tests/file')
-rw-r--r--ext/standard/tests/file/stream_rfc2397_006.phpt4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/standard/tests/file/stream_rfc2397_006.phpt b/ext/standard/tests/file/stream_rfc2397_006.phpt
index e6694a2861..f6616a0c88 100644
--- a/ext/standard/tests/file/stream_rfc2397_006.phpt
+++ b/ext/standard/tests/file/stream_rfc2397_006.phpt
@@ -26,7 +26,9 @@ NULL
Warning: file_get_contents() expects parameter 1 to be a valid path, string given in %s line %d
NULL
-string(13) "foobar foobar"
+
+Warning: file_get_contents(data:;base64,#Zm9vYmFyIGZvb2Jhcg==): failed to open stream: rfc2397: unable to decode in %sstream_rfc2397_006.php on line %d
+bool(false)
Warning: file_get_contents(data:;base64,#Zm9vYmFyIGZvb2Jhc=): failed to open stream: rfc2397: unable to decode in %sstream_rfc2397_006.php on line %d
bool(false)