Browse Source

Update tests to match Felipe's null byte arg parsing change

pull/271/head
Christopher Jones 15 years ago
parent
commit
a3ddc02e8e
  1. 13
      ext/oci8/tests/null_byte_1.phpt

13
ext/oci8/tests/null_byte_1.phpt

@ -1,5 +1,5 @@
--TEST--
Protect against null bytes in LOB filenames (http://news.php.net/php.internals/50202)
Protect against null bytes in LOB filenames
--SKIPIF--
<?php if (!extension_loaded('oci8')) die ("skip no oci8 extension"); ?>
--INI--
@ -8,6 +8,9 @@ error_reporting = E_WARNING
--FILE--
<?php
// See http://news.php.net/php.internals/50202
// http://svn.php.net/viewvc?view=revision&revision=311870
require(dirname(__FILE__).'/connect.inc');
// Run Test
@ -29,10 +32,10 @@ var_dump($r);
--EXPECTF--
Test 1: Import
Warning: OCI-Lob::savefile(): Filename cannot contain null bytes in %snull_byte_1.php on line %d
bool(false)
Warning: OCI-Lob::savefile() expects parameter 1 to be valid path, string given in %snull_byte_1.php on line %d
NULL
Test 2: Export
Warning: OCI-Lob::export(): Filename cannot contain null bytes in %snull_byte_1.php on line %d
bool(false)
Warning: OCI-Lob::export() expects parameter 1 to be valid path, string given in %snull_byte_1.php on line %d
NULL
===DONE===
Loading…
Cancel
Save