diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/archive/tar.php | 9 | ||||
-rw-r--r-- | tests/lib/connector/sabre/quotaplugin.php | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/tests/lib/archive/tar.php b/tests/lib/archive/tar.php index e66a8740879..db98bb4e9c2 100644 --- a/tests/lib/archive/tar.php +++ b/tests/lib/archive/tar.php @@ -8,8 +8,14 @@ require_once 'archive.php'; -if (!OC_Util::runningOnWindows()) { class Test_Archive_TAR extends Test_Archive { + public function setUp() { + if (OC_Util::runningOnWindows()) { + $this->markTestSkipped('tar archives are not supported on windows'); + } + parent::setUp(); + } + protected function getExisting() { $dir = OC::$SERVERROOT . '/tests/data'; return new OC_Archive_TAR($dir . '/data.tar.gz'); @@ -19,4 +25,3 @@ class Test_Archive_TAR extends Test_Archive { return new OC_Archive_TAR(OCP\Files::tmpFile('.tar.gz')); } } -} diff --git a/tests/lib/connector/sabre/quotaplugin.php b/tests/lib/connector/sabre/quotaplugin.php index 1024ae6af8f..3b144cf56b5 100644 --- a/tests/lib/connector/sabre/quotaplugin.php +++ b/tests/lib/connector/sabre/quotaplugin.php @@ -63,7 +63,7 @@ class Test_OC_Connector_Sabre_QuotaPlugin extends PHPUnit_Framework_TestCase { array(1024, array('HTTP_X_EXPECTED_ENTITY_LENGTH' => '1024')), array(1024, array('HTTP_CONTENT_LENGTH' => '512')), array(1024, array('HTTP_OC_TOTAL_LENGTH' => '1024', 'HTTP_CONTENT_LENGTH' => '512')), - // OC\Files\FREE_SPACE_UNKNOWN = -2 + // \OCP\Files\FileInfo::SPACE_UNKNOWN = -2 array(-2, array()), array(-2, array('HTTP_X_EXPECTED_ENTITY_LENGTH' => '1024')), array(-2, array('HTTP_CONTENT_LENGTH' => '512')), |