2012-10-13 08:20:00 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Copyright (c) 2012 Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
|
* later.
|
|
|
|
|
* See the COPYING-README file.
|
|
|
|
|
*/
|
|
|
|
|
|
2013-01-24 10:47:17 -05:00
|
|
|
class Test_Util extends PHPUnit_Framework_TestCase {
|
2012-10-13 08:20:00 -04:00
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
|
function Test_Util() {
|
2012-11-04 16:16:04 -05:00
|
|
|
date_default_timezone_set("UTC");
|
2012-10-13 08:20:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testFormatDate() {
|
|
|
|
|
$result = OC_Util::formatDate(1350129205);
|
2012-10-18 15:22:41 -04:00
|
|
|
$expected = 'October 13, 2012 11:53';
|
2012-10-18 16:27:49 -04:00
|
|
|
$this->assertEquals($expected, $result);
|
2012-10-13 08:20:00 -04:00
|
|
|
|
|
|
|
|
$result = OC_Util::formatDate(1102831200, true);
|
|
|
|
|
$expected = 'December 12, 2004';
|
2012-10-18 11:35:19 -04:00
|
|
|
$this->assertEquals($expected, $result);
|
2012-10-13 08:20:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testCallRegister() {
|
|
|
|
|
$result = strlen(OC_Util::callRegister());
|
2012-10-18 11:35:19 -04:00
|
|
|
$this->assertEquals(20, $result);
|
2012-10-13 08:20:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testSanitizeHTML() {
|
|
|
|
|
$badString = "<script>alert('Hacked!');</script>";
|
|
|
|
|
$result = OC_Util::sanitizeHTML($badString);
|
2012-10-18 11:35:19 -04:00
|
|
|
$this->assertEquals("<script>alert('Hacked!');</script>", $result);
|
2012-10-13 08:20:00 -04:00
|
|
|
|
|
|
|
|
$goodString = "This is an harmless string.";
|
|
|
|
|
$result = OC_Util::sanitizeHTML($goodString);
|
2012-10-18 11:35:19 -04:00
|
|
|
$this->assertEquals("This is an harmless string.", $result);
|
2012-11-04 16:16:04 -05:00
|
|
|
}
|
2012-10-13 08:20:00 -04:00
|
|
|
|
|
|
|
|
function testGenerate_random_bytes() {
|
|
|
|
|
$result = strlen(OC_Util::generate_random_bytes(59));
|
2012-10-18 11:35:19 -04:00
|
|
|
$this->assertEquals(59, $result);
|
2012-11-04 16:16:04 -05:00
|
|
|
}
|
2013-03-04 15:10:18 -05:00
|
|
|
|
|
|
|
|
function testGetDefaultEmailAddress() {
|
|
|
|
|
$email = \OCP\Util::getDefaultEmailAddress("no-reply");
|
|
|
|
|
$this->assertEquals('no-reply@localhost.localdomain', $email);
|
2013-03-26 04:40:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function testGetDefaultEmailAddressFromConfig() {
|
2013-03-22 05:08:53 -04:00
|
|
|
OC_Config::setValue('mail_domain', 'example.com');
|
|
|
|
|
$email = \OCP\Util::getDefaultEmailAddress("no-reply");
|
|
|
|
|
$this->assertEquals('no-reply@example.com', $email);
|
|
|
|
|
OC_Config::deleteKey('mail_domain');
|
2013-03-04 15:10:18 -05:00
|
|
|
}
|
2013-03-26 17:49:32 -04:00
|
|
|
|
|
|
|
|
function testGetInstanceIdGeneratesValidId() {
|
|
|
|
|
OC_Config::deleteKey('instanceid');
|
|
|
|
|
$this->assertStringStartsWith('oc', OC_Util::getInstanceId());
|
|
|
|
|
}
|
2013-03-22 05:08:53 -04:00
|
|
|
}
|