Blame view
sources/apps/files_archive/tests/storage.php
886 Bytes
|
42e4f8d60
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
<?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.
*/
namespace Test\Files\Storage;
\OC_App::loadApp('files_archive');
class Archive_Zip extends Storage {
/**
* @var string tmpDir
*/
private $tmpFile;
public function setUp() {
$this->tmpFile=\OCP\Files::tmpFile('.zip');
$this->instance=new \OC\Files\Storage\Archive(array('archive'=>$this->tmpFile));
}
public function tearDown() {
unlink($this->tmpFile);
}
}
class Archive_Tar extends Storage {
/**
* @var string tmpDir
*/
private $tmpFile;
public function setUp() {
$this->tmpFile=\OCP\Files::tmpFile('.tar.gz');
$this->instance=new \OC\Files\Storage\Archive(array('archive'=>$this->tmpFile));
}
public function tearDown() {
unlink($this->tmpFile);
}
}
|