2012-03-28 16: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-09-05 17:28:59 -04:00
|
|
|
require_once 'archive.php';
|
2012-03-28 16:32:51 -04:00
|
|
|
|
2013-03-12 05:33:40 -04:00
|
|
|
if (!OC_Util::runningOnWindows()) {
|
2012-10-05 16:24:36 -04:00
|
|
|
class Test_Archive_TAR extends Test_Archive {
|
2013-06-24 16:38:05 -04:00
|
|
|
public function setUp() {
|
|
|
|
|
if (floatval(phpversion())>=5.5) {
|
|
|
|
|
$this->markTestSkipped('php 5.5 changed unpack function.');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-10-05 16:24:36 -04:00
|
|
|
protected function getExisting() {
|
|
|
|
|
$dir = OC::$SERVERROOT . '/tests/data';
|
|
|
|
|
return new OC_Archive_TAR($dir . '/data.tar.gz');
|
|
|
|
|
}
|
2012-03-28 16:32:51 -04:00
|
|
|
|
2012-10-05 16:24:36 -04:00
|
|
|
protected function getNew() {
|
|
|
|
|
return new OC_Archive_TAR(OCP\Files::tmpFile('.tar.gz'));
|
2012-03-28 16:32:51 -04:00
|
|
|
}
|
|
|
|
|
}
|
2013-03-12 05:33:40 -04:00
|
|
|
}
|