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.
|
|
|
|
*/
|
|
|
|
|
2016-05-18 19:46:03 +03:00
|
|
|
namespace Test\Archive;
|
|
|
|
|
2016-05-02 08:23:14 +03:00
|
|
|
use OC\Archive\ZIP;
|
|
|
|
|
2016-05-18 19:46:03 +03:00
|
|
|
class ZIPTest extends TestBase {
|
2012-10-06 00:24:36 +04:00
|
|
|
protected function getExisting() {
|
2016-05-18 19:46:03 +03:00
|
|
|
$dir = \OC::$SERVERROOT . '/tests/data';
|
2016-05-02 08:23:14 +03:00
|
|
|
return new ZIP($dir . '/data.zip');
|
2012-10-06 00:24:36 +04:00
|
|
|
}
|
2012-03-03 03:57:03 +04:00
|
|
|
|
2012-10-06 00:24:36 +04:00
|
|
|
protected function getNew() {
|
2018-03-19 12:52:35 +03:00
|
|
|
return new ZIP(\OC::$server->getTempManager()->getTemporaryFile('.zip'));
|
2012-03-03 03:57:03 +04:00
|
|
|
}
|
|
|
|
}
|