summaryrefslogtreecommitdiffstats
path: root/tests/lib/helper.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/helper.php')
-rw-r--r--tests/lib/helper.php213
1 files changed, 212 insertions, 1 deletions
diff --git a/tests/lib/helper.php b/tests/lib/helper.php
index 4311215795c..5663df7c9ae 100644
--- a/tests/lib/helper.php
+++ b/tests/lib/helper.php
@@ -23,6 +23,7 @@ class Test_Helper extends PHPUnit_Framework_TestCase {
array('0 B', 0),
array('1 kB', 1024),
array('9.5 MB', 10000000),
+ array('1.3 GB', 1395864371),
array('465.7 GB', 500000000000),
array('454.7 TB', 500000000000000),
array('444.1 PB', 500000000000000000),
@@ -30,6 +31,28 @@ class Test_Helper extends PHPUnit_Framework_TestCase {
}
/**
+ * @dataProvider phpFileSizeProvider
+ */
+ public function testPhpFileSize($expected, $input)
+ {
+ $result = OC_Helper::phpFileSize($input);
+ $this->assertEquals($expected, $result);
+ }
+
+ public function phpFileSizeProvider()
+ {
+ return array(
+ array('0B', 0),
+ array('1K', 1024),
+ array('9.5M', 10000000),
+ array('1.3G', 1395864371),
+ array('465.7G', 500000000000),
+ array('465661.3G', 500000000000000),
+ array('465661287.3G', 500000000000000000),
+ );
+ }
+
+ /**
* @dataProvider computerFileSizeProvider
*/
function testComputerFileSize($expected, $input) {
@@ -41,8 +64,9 @@ class Test_Helper extends PHPUnit_Framework_TestCase {
return array(
array(0.0, "0 B"),
array(1024.0, "1 kB"),
+ array(1395864371.0, '1.3 GB'),
array(9961472.0, "9.5 MB"),
- array(500041567436.8, "465.7 GB"),
+ array(500041567437.0, "465.7 GB"),
);
}
@@ -69,6 +93,18 @@ class Test_Helper extends PHPUnit_Framework_TestCase {
$this->assertEquals($result, $expected);
}
+ function testGetSecureMimeType() {
+ $dir=OC::$SERVERROOT.'/tests/data';
+
+ $result = OC_Helper::getSecureMimeType('image/svg+xml');
+ $expected = 'text/plain';
+ $this->assertEquals($result, $expected);
+
+ $result = OC_Helper::getSecureMimeType('image/png');
+ $expected = 'image/png';
+ $this->assertEquals($result, $expected);
+ }
+
function testGetFileNameMimeType() {
$this->assertEquals('text/plain', OC_Helper::getFileNameMimeType('foo.txt'));
$this->assertEquals('image/png', OC_Helper::getFileNameMimeType('foo.png'));
@@ -243,4 +279,179 @@ class Test_Helper extends PHPUnit_Framework_TestCase {
array(3670, true, \OC::$SERVERROOT . '/tests/data/testimage.png', \OC::$SERVERROOT . '/tests/data/testimage-copy.png'),
);
}
+
+ // Url generator methods
+
+ /**
+ * @small
+ * @brief test absolute URL construction
+ * @dataProvider provideDocRootURLs
+ */
+ function testMakeAbsoluteURLDocRoot($url, $expectedResult) {
+ \OC::$WEBROOT = '';
+ $result = \OC_Helper::makeURLAbsolute($url);
+
+ $this->assertEquals($expectedResult, $result);
+ }
+
+ /**
+ * @small
+ * @brief test absolute URL construction
+ * @dataProvider provideSubDirURLs
+ */
+ function testMakeAbsoluteURLSubDir($url, $expectedResult) {
+ \OC::$WEBROOT = '/owncloud';
+ $result = \OC_Helper::makeURLAbsolute($url);
+
+ $this->assertEquals($expectedResult, $result);
+ }
+
+ public function provideDocRootURLs() {
+ return array(
+ array('index.php', 'http://localhost/index.php'),
+ array('/index.php', 'http://localhost/index.php'),
+ array('/apps/index.php', 'http://localhost/apps/index.php'),
+ array('apps/index.php', 'http://localhost/apps/index.php'),
+ );
+ }
+
+ public function provideSubDirURLs() {
+ return array(
+ array('index.php', 'http://localhost/owncloud/index.php'),
+ array('/index.php', 'http://localhost/owncloud/index.php'),
+ array('/apps/index.php', 'http://localhost/owncloud/apps/index.php'),
+ array('apps/index.php', 'http://localhost/owncloud/apps/index.php'),
+ );
+ }
+
+ /**
+ * @small
+ * @brief test linkTo URL construction
+ * @dataProvider provideDocRootAppUrlParts
+ */
+ public function testLinkToDocRoot($app, $file, $args, $expectedResult) {
+ \OC::$WEBROOT = '';
+ $result = \OC_Helper::linkTo($app, $file, $args);
+
+ $this->assertEquals($expectedResult, $result);
+ }
+
+ /**
+ * @small
+ * @brief test linkTo URL construction in sub directory
+ * @dataProvider provideSubDirAppUrlParts
+ */
+ public function testLinkToSubDir($app, $file, $args, $expectedResult) {
+ \OC::$WEBROOT = '/owncloud';
+ $result = \OC_Helper::linkTo($app, $file, $args);
+
+ $this->assertEquals($expectedResult, $result);
+ }
+
+ public function provideDocRootAppUrlParts() {
+ return array(
+ array('files', 'index.php', array(), '/index.php/apps/files'),
+ array('files', 'index.php', array('trut' => 'trat', 'dut' => 'dat'), '/index.php/apps/files?trut=trat&dut=dat'),
+ array('', 'index.php', array('trut' => 'trat', 'dut' => 'dat'), '/index.php?trut=trat&dut=dat'),
+ );
+ }
+
+ public function provideSubDirAppUrlParts() {
+ return array(
+ array('files', 'index.php', array(), '/owncloud/index.php/apps/files'),
+ array('files', 'index.php', array('trut' => 'trat', 'dut' => 'dat'), '/owncloud/index.php/apps/files?trut=trat&dut=dat'),
+ array('', 'index.php', array('trut' => 'trat', 'dut' => 'dat'), '/owncloud/index.php?trut=trat&dut=dat'),
+ );
+ }
+
+ /**
+ * @small
+ * @brief test linkToAbsolute URL construction
+ * @dataProvider provideDocRootAppAbsoluteUrlParts
+ */
+ public function testLinkToAbsoluteDocRoot($app, $file, $args, $expectedResult) {
+ \OC::$WEBROOT = '';
+ $result = \OC_Helper::linkToAbsolute($app, $file, $args);
+
+ $this->assertEquals($expectedResult, $result);
+ }
+
+ /**
+ * @small
+ * @brief test linkToAbsolute URL construction in sub directory
+ * @dataProvider provideSubDirAppAbsoluteUrlParts
+ */
+ public function testLinkToAbsoluteSubDir($app, $file, $args, $expectedResult) {
+ \OC::$WEBROOT = '/owncloud';
+ $result = \OC_Helper::linkToAbsolute($app, $file, $args);
+
+ $this->assertEquals($expectedResult, $result);
+ }
+
+ public function provideDocRootAppAbsoluteUrlParts() {
+ return array(
+ array('files', 'index.php', array(), 'http://localhost/index.php/apps/files'),
+ array('files', 'index.php', array('trut' => 'trat', 'dut' => 'dat'), 'http://localhost/index.php/apps/files?trut=trat&dut=dat'),
+ array('', 'index.php', array('trut' => 'trat', 'dut' => 'dat'), 'http://localhost/index.php?trut=trat&dut=dat'),
+ );
+ }
+
+ public function provideSubDirAppAbsoluteUrlParts() {
+ return array(
+ array('files', 'index.php', array(), 'http://localhost/owncloud/index.php/apps/files'),
+ array('files', 'index.php', array('trut' => 'trat', 'dut' => 'dat'), 'http://localhost/owncloud/index.php/apps/files?trut=trat&dut=dat'),
+ array('', 'index.php', array('trut' => 'trat', 'dut' => 'dat'), 'http://localhost/owncloud/index.php?trut=trat&dut=dat'),
+ );
+ }
+
+ /**
+ * @small
+ * @brief test linkToRemoteBase URL construction
+ */
+ public function testLinkToRemoteBase() {
+ \OC::$WEBROOT = '';
+ $result = \OC_Helper::linkToRemoteBase('webdav');
+ $this->assertEquals('/remote.php/webdav', $result);
+
+ \OC::$WEBROOT = '/owncloud';
+ $result = \OC_Helper::linkToRemoteBase('webdav');
+ $this->assertEquals('/owncloud/remote.php/webdav', $result);
+ }
+
+ /**
+ * @small
+ * @brief test linkToRemote URL construction
+ */
+ public function testLinkToRemote() {
+ \OC::$WEBROOT = '';
+ $result = \OC_Helper::linkToRemote('webdav');
+ $this->assertEquals('http://localhost/remote.php/webdav/', $result);
+ $result = \OC_Helper::linkToRemote('webdav', false);
+ $this->assertEquals('http://localhost/remote.php/webdav', $result);
+
+ \OC::$WEBROOT = '/owncloud';
+ $result = \OC_Helper::linkToRemote('webdav');
+ $this->assertEquals('http://localhost/owncloud/remote.php/webdav/', $result);
+ $result = \OC_Helper::linkToRemote('webdav', false);
+ $this->assertEquals('http://localhost/owncloud/remote.php/webdav', $result);
+ }
+
+ /**
+ * @small
+ * @brief test linkToPublic URL construction
+ */
+ public function testLinkToPublic() {
+ \OC::$WEBROOT = '';
+ $result = \OC_Helper::linkToPublic('files');
+ $this->assertEquals('http://localhost/public.php?service=files', $result);
+ $result = \OC_Helper::linkToPublic('files', false);
+ $this->assertEquals('http://localhost/public.php?service=files', $result);
+
+ \OC::$WEBROOT = '/owncloud';
+ $result = \OC_Helper::linkToPublic('files');
+ $this->assertEquals('http://localhost/owncloud/public.php?service=files', $result);
+ $result = \OC_Helper::linkToPublic('files', false);
+ $this->assertEquals('http://localhost/owncloud/public.php?service=files', $result);
+ }
+
}