Merge pull request #15831 from owncloud/enc2-unittestcleanuptmpfile

Delete temp files after testing encryption stream wrapper
This commit is contained in:
Thomas Müller 2015-04-23 14:43:22 +02:00
commit 3b1a3cc27b
1 changed files with 6 additions and 0 deletions

View File

@ -148,6 +148,8 @@ class Encryption extends \Test\TestCase {
$stream = $this->getStream($fileName, 'r', 6);
$this->assertEquals('foobar', fread($stream, 100));
fclose($stream);
unlink($fileName);
}
public function testSeek() {
@ -161,6 +163,8 @@ class Encryption extends \Test\TestCase {
$stream = $this->getStream($fileName, 'r', 9);
$this->assertEquals('foofoobar', fread($stream, 100));
fclose($stream);
unlink($fileName);
}
function dataFilesProvider() {
@ -198,6 +202,8 @@ class Encryption extends \Test\TestCase {
fclose($stream);
$this->assertEquals($expectedData, $data);
unlink($fileName);
}
/**