[Pkg-owncloud-commits] [owncloud] 58/215: enable testRewind
David Prévot
taffit at moszumanska.debian.org
Tue May 5 01:01:22 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch stable8
in repository owncloud.
commit 18a1225b0c0a8c44353a7f262b33aee2b5896f46
Author: jknockaert <jasper at knockaert.nl>
Date: Wed Apr 22 12:52:01 2015 +0200
enable testRewind
---
tests/lib/files/stream/encryption.php | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/tests/lib/files/stream/encryption.php b/tests/lib/files/stream/encryption.php
index 36e668a..fdd710e 100644
--- a/tests/lib/files/stream/encryption.php
+++ b/tests/lib/files/stream/encryption.php
@@ -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");
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list