2012-03-03 03:57:03 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Test_Filestorage_Archive_Zip extends Test_FileStorage {
|
|
|
|
/**
|
|
|
|
* @var string tmpDir
|
|
|
|
*/
|
2012-03-03 04:37:00 +04:00
|
|
|
private $tmpFile;
|
|
|
|
|
2012-03-03 03:57:03 +04:00
|
|
|
public function setUp(){
|
2012-05-02 14:54:31 +04:00
|
|
|
$this->tmpFile=OCP\Files::tmpFile('.zip');
|
2012-03-03 04:37:00 +04:00
|
|
|
$this->instance=new OC_Filestorage_Archive(array('archive'=>$this->tmpFile));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown(){
|
|
|
|
unlink($this->tmpFile);
|
2012-03-03 03:57:03 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|