Skip to content

Commit

Permalink
- MFH: make it portable without loosing pertinent data
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrejoye committed Aug 15, 2008
1 parent 9bdfe83 commit 32546c9
Showing 1 changed file with 38 additions and 13 deletions.
51 changes: 38 additions & 13 deletions ext/standard/tests/file/stream_copy_to_stream.phpt
Expand Up @@ -2,6 +2,7 @@
stream_copy_to_stream() tests
--FILE--
<?php
define('WIN', substr(PHP_OS, 0, 3) == 'WIN');

$initial_file = dirname(__FILE__).'/bug38086.txt';
$new_file = dirname(__FILE__).'/bug38086_1.txt';
Expand All @@ -24,8 +25,11 @@ stream_filter_append($src, "string.rot13", STREAM_FILTER_READ);
$dest = fopen($new_file, 'w');
var_dump(stream_copy_to_stream($src, $dest, -1));
fclose($src); fclose($dest);

var_dump(file_get_contents($new_file));
if (WIN) {
var_dump(str_replace("\r\n","\n", file_get_contents($new_file)));
} else {
var_dump(file_get_contents($new_file));
}
unlink($new_file);

/* --- */
Expand All @@ -37,7 +41,11 @@ $dest = fopen($new_file, 'w');
var_dump(stream_copy_to_stream($src, $dest));
fclose($src); fclose($dest);

var_dump(file_get_contents($new_file));
if (WIN) {
var_dump(str_replace("\r\n","\n", file_get_contents($new_file)));
} else {
var_dump(file_get_contents($new_file));
}
unlink($new_file);

/* --- */
Expand All @@ -48,7 +56,11 @@ $dest = fopen($new_file, 'w');
var_dump(stream_copy_to_stream($src, $dest));
fclose($src); fclose($dest);

var_dump(file_get_contents($new_file));
if (WIN) {
var_dump(str_replace("\r\n","\n", file_get_contents($new_file)));
} else {
var_dump(file_get_contents($new_file));
}
unlink($new_file);

/* --- */
Expand All @@ -59,7 +71,12 @@ $dest = fopen($new_file, 'w');
var_dump(stream_copy_to_stream($src, $dest, 1000000));
fclose($src); fclose($dest);

var_dump(file_get_contents($new_file));
if (WIN) {
var_dump(str_replace("\r\n","\n", file_get_contents($new_file)));
} else {
var_dump(file_get_contents($new_file));
}

unlink($new_file);

/* --- */
Expand All @@ -70,7 +87,11 @@ $dest = fopen($new_file, 'w');
var_dump(stream_copy_to_stream($src, $dest, 10));
fclose($src); fclose($dest);

var_dump(file_get_contents($new_file));
if (WIN) {
var_dump(str_replace("\r\n","\n", file_get_contents($new_file)));
} else {
var_dump(file_get_contents($new_file));
}
unlink($new_file);

/* --- */
Expand All @@ -81,45 +102,49 @@ $dest = fopen($new_file, 'w');
var_dump(stream_copy_to_stream($src, $dest, -1));
fclose($src); fclose($dest);

var_dump(file_get_contents($new_file));
if (WIN) {
var_dump(str_replace("\r\n","\n", file_get_contents($new_file)));
} else {
var_dump(file_get_contents($new_file));
}
unlink($new_file);

echo "Done\n";
?>
--EXPECTF--
int(0)
string(0) ""
int(134)
int(%d)
string(134) "Nabgure qnl
Jura gur cnvaf bs yvsr jba'g one zl jnl
V'yy oernx gurfr punvaf
Gung ubyq zr qbja
V'yy grne lbh qbja vagb zl cevingr uryy
"
int(134)
int(%d)
string(134) "Nabgure qnl
Jura gur cnvaf bs yvsr jba'g one zl jnl
V'yy oernx gurfr punvaf
Gung ubyq zr qbja
V'yy grne lbh qbja vagb zl cevingr uryy
"
int(134)
int(%d)
string(134) "Another day
When the pains of life won't bar my way
I'll break these chains
That hold me down
I'll tear you down into my private hell
"
int(134)
int(%d)
string(134) "Another day
When the pains of life won't bar my way
I'll break these chains
That hold me down
I'll tear you down into my private hell
"
int(10)
int(%d)
string(10) "Another da"
int(134)
int(%d)
string(134) "Another day
When the pains of life won't bar my way
I'll break these chains
Expand Down

0 comments on commit 32546c9

Please sign in to comment.