2012-03-29 00:32:51 +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.
|
|
|
|
*/
|
|
|
|
|
2012-10-06 00:24:36 +04:00
|
|
|
class Test_Archive_TAR extends Test_Archive {
|
2014-11-11 00:59:50 +03:00
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
2014-08-16 12:26:26 +04:00
|
|
|
if (OC_Util::runningOnWindows()) {
|
2014-11-10 13:01:43 +03:00
|
|
|
$this->markTestSkipped('[Windows] tar archives are not supported on Windows');
|
2014-08-16 12:26:26 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-06 00:24:36 +04:00
|
|
|
protected function getExisting() {
|
|
|
|
$dir = OC::$SERVERROOT . '/tests/data';
|
|
|
|
return new OC_Archive_TAR($dir . '/data.tar.gz');
|
|
|
|
}
|
2012-03-29 00:32:51 +04:00
|
|
|
|
2012-10-06 00:24:36 +04:00
|
|
|
protected function getNew() {
|
|
|
|
return new OC_Archive_TAR(OCP\Files::tmpFile('.tar.gz'));
|
2012-03-29 00:32:51 +04:00
|
|
|
}
|
|
|
|
}
|