nextcloud/tests/lib/Archive/TARTest.php

24 lines
514 B
PHP
Raw Normal View History

<?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;
use OC\Archive\TAR;
2016-05-18 19:46:03 +03:00
class TARTest 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';
return new TAR($dir . '/data.tar.gz');
2012-10-06 00:24:36 +04:00
}
2012-10-06 00:24:36 +04:00
protected function getNew() {
return new TAR(\OC::$server->getTempManager()->getTemporaryFile('.tar.gz'));
}
}