Skip to content
Snippets Groups Projects
Commit 18a1225b authored by jknockaert's avatar jknockaert Committed by Björn Schießle
Browse files

enable testRewind

parent 49df8ef5
Branches
No related tags found
Loading
......@@ -167,20 +167,20 @@ class Encryption extends \Test\TestCase {
// fclose($stream);
// }
// public function testRewind() {
// $fileName = tempnam("/tmp", "FOO");
// $stream = $this->getStream($fileName, 'w+', 0);
// $this->assertEquals(6, fwrite($stream, 'foobar'));
// $this->assertEquals(TRUE, rewind($stream));
// $this->assertEquals('foobar', fread($stream, 100));
// $this->assertEquals(TRUE, rewind($stream));
// $this->assertEquals(3, fwrite($stream, 'bar'));
// fclose($stream);
//
// $stream = $this->getStream($fileName, 'r', 6);
// $this->assertEquals('barbar', fread($stream, 100));
// fclose($stream);
// }
public function testRewind() {
$fileName = tempnam("/tmp", "FOO");
$stream = $this->getStream($fileName, 'w+', 0);
$this->assertEquals(6, fwrite($stream, 'foobar'));
$this->assertEquals(TRUE, rewind($stream));
$this->assertEquals('foobar', fread($stream, 100));
$this->assertEquals(TRUE, rewind($stream));
$this->assertEquals(3, fwrite($stream, 'bar'));
fclose($stream);
$stream = $this->getStream($fileName, 'r', 6);
$this->assertEquals('barbar', fread($stream, 100));
fclose($stream);
}
public function testSeek() {
$fileName = tempnam("/tmp", "FOO");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment