2013-08-08 13:04:40 +04:00
|
|
|
<?php
|
2014-03-03 17:27:24 +04:00
|
|
|
|
2013-08-08 13:04:40 +04:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
2014-11-11 01:30:38 +03:00
|
|
|
class Test_OC_Connector_Sabre_QuotaPlugin extends \Test\TestCase {
|
2013-08-08 13:04:40 +04:00
|
|
|
|
|
|
|
/**
|
2014-01-09 17:25:48 +04:00
|
|
|
* @var \Sabre\DAV\Server
|
2013-08-08 13:04:40 +04:00
|
|
|
*/
|
|
|
|
private $server;
|
|
|
|
|
|
|
|
/**
|
2015-02-12 14:29:01 +03:00
|
|
|
* @var \OC\Connector\Sabre\QuotaPlugin
|
2013-08-08 13:04:40 +04:00
|
|
|
*/
|
|
|
|
private $plugin;
|
|
|
|
|
2014-03-03 17:27:24 +04:00
|
|
|
private function init($quota) {
|
|
|
|
$view = $this->buildFileViewMock($quota);
|
2014-01-09 17:25:48 +04:00
|
|
|
$this->server = new \Sabre\DAV\Server();
|
2015-02-12 14:29:01 +03:00
|
|
|
$this->plugin = new \OC\Connector\Sabre\QuotaPlugin($view);
|
2013-08-08 13:04:40 +04:00
|
|
|
$this->plugin->initialize($this->server);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider lengthProvider
|
|
|
|
*/
|
2014-03-03 17:27:24 +04:00
|
|
|
public function testLength($expected, $headers) {
|
|
|
|
$this->init(0);
|
2015-02-12 14:29:01 +03:00
|
|
|
$this->server->httpRequest = new \Sabre\HTTP\Request(null, null, $headers);
|
2013-08-08 13:04:40 +04:00
|
|
|
$length = $this->plugin->getLength();
|
|
|
|
$this->assertEquals($expected, $length);
|
|
|
|
}
|
|
|
|
|
2013-08-08 15:33:00 +04:00
|
|
|
/**
|
|
|
|
* @dataProvider quotaOkayProvider
|
|
|
|
*/
|
2014-03-03 17:27:24 +04:00
|
|
|
public function testCheckQuota($quota, $headers) {
|
|
|
|
$this->init($quota);
|
2013-08-08 15:33:00 +04:00
|
|
|
|
2015-02-12 14:29:01 +03:00
|
|
|
$this->server->httpRequest = new \Sabre\HTTP\Request(null, null, $headers);
|
2013-08-08 15:33:00 +04:00
|
|
|
$result = $this->plugin->checkQuota('');
|
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-01-09 17:25:48 +04:00
|
|
|
* @expectedException \Sabre\DAV\Exception\InsufficientStorage
|
2013-08-08 15:33:00 +04:00
|
|
|
* @dataProvider quotaExceededProvider
|
|
|
|
*/
|
2014-03-03 17:27:24 +04:00
|
|
|
public function testCheckExceededQuota($quota, $headers) {
|
|
|
|
$this->init($quota);
|
2013-08-08 15:33:00 +04:00
|
|
|
|
2015-02-12 14:29:01 +03:00
|
|
|
$this->server->httpRequest = new \Sabre\HTTP\Request(null, null, $headers);
|
2013-08-08 15:33:00 +04:00
|
|
|
$this->plugin->checkQuota('');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function quotaOkayProvider() {
|
|
|
|
return array(
|
|
|
|
array(1024, array()),
|
2015-02-12 14:29:01 +03:00
|
|
|
array(1024, array('X-EXPECTED-ENTITY-LENGTH' => '1024')),
|
|
|
|
array(1024, array('CONTENT-LENGTH' => '512')),
|
|
|
|
array(1024, array('OC-TOTAL-LENGTH' => '1024', 'CONTENT-LENGTH' => '512')),
|
|
|
|
// \OCP\Files\FileInfo::SPACE-UNKNOWN = -2
|
2013-08-08 15:33:00 +04:00
|
|
|
array(-2, array()),
|
2015-02-12 14:29:01 +03:00
|
|
|
array(-2, array('X-EXPECTED-ENTITY-LENGTH' => '1024')),
|
|
|
|
array(-2, array('CONTENT-LENGTH' => '512')),
|
|
|
|
array(-2, array('OC-TOTAL-LENGTH' => '1024', 'CONTENT-LENGTH' => '512')),
|
2013-08-08 15:33:00 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function quotaExceededProvider() {
|
|
|
|
return array(
|
2015-02-12 14:29:01 +03:00
|
|
|
array(1023, array('X-EXPECTED-ENTITY-LENGTH' => '1024')),
|
|
|
|
array(511, array('CONTENT-LENGTH' => '512')),
|
|
|
|
array(2047, array('OC-TOTAL-LENGTH' => '2048', 'CONTENT-LENGTH' => '1024')),
|
2013-08-08 15:33:00 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function lengthProvider() {
|
2013-08-08 13:04:40 +04:00
|
|
|
return array(
|
|
|
|
array(null, array()),
|
2015-02-12 14:29:01 +03:00
|
|
|
array(1024, array('X-EXPECTED-ENTITY-LENGTH' => '1024')),
|
|
|
|
array(512, array('CONTENT-LENGTH' => '512')),
|
|
|
|
array(2048, array('OC-TOTAL-LENGTH' => '2048', 'CONTENT-LENGTH' => '1024')),
|
|
|
|
array(4096, array('OC-TOTAL-LENGTH' => '2048', 'X-EXPECTED-ENTITY-LENGTH' => '4096')),
|
2013-08-08 13:04:40 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-08-08 15:33:00 +04:00
|
|
|
private function buildFileViewMock($quota) {
|
|
|
|
// mock filesysten
|
2014-03-03 17:27:24 +04:00
|
|
|
$view = $this->getMock('\OC\Files\View', array('free_space'), array(), '', false);
|
2013-08-08 15:33:00 +04:00
|
|
|
$view->expects($this->any())->method('free_space')->withAnyParameters()->will($this->returnValue($quota));
|
|
|
|
|
|
|
|
return $view;
|
|
|
|
}
|
|
|
|
|
2013-08-08 13:04:40 +04:00
|
|
|
}
|