2012-03-28 20:32:51 +00: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 16:46:03 +00:00
|
|
|
namespace Test\Archive;
|
|
|
|
|
|
|
|
|
2016-05-02 05:23:14 +00:00
|
|
|
use OC\Archive\TAR;
|
|
|
|
|
2016-05-18 16:46:03 +00:00
|
|
|
class TARTest extends TestBase {
|
2014-11-10 21:59:50 +00:00
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
2016-05-18 16:46:03 +00:00
|
|
|
if (\OC_Util::runningOnWindows()) {
|
2014-11-10 10:01:43 +00:00
|
|
|
$this->markTestSkipped('[Windows] tar archives are not supported on Windows');
|
2014-08-16 08:26:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-05 20:24:36 +00:00
|
|
|
protected function getExisting() {
|
2016-05-18 16:46:03 +00:00
|
|
|
$dir = \OC::$SERVERROOT . '/tests/data';
|
2016-05-02 05:23:14 +00:00
|
|
|
return new TAR($dir . '/data.tar.gz');
|
2012-10-05 20:24:36 +00:00
|
|
|
}
|
2012-03-28 20:32:51 +00:00
|
|
|
|
2012-10-05 20:24:36 +00:00
|
|
|
protected function getNew() {
|
2016-05-18 16:46:03 +00:00
|
|
|
return new TAR(\OCP\Files::tmpFile('.tar.gz'));
|
2012-03-28 20:32:51 +00:00
|
|
|
}
|
|
|
|
}
|