nextcloud/tests/lib/util.php

63 lines
1.8 KiB
PHP
Raw Normal View History

<?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 19:47:17 +04:00
class Test_Util extends PHPUnit_Framework_TestCase {
// Constructor
function Test_Util() {
date_default_timezone_set("UTC");
}
function testFormatDate() {
$result = OC_Util::formatDate(1350129205);
$expected = 'October 13, 2012 11:53';
2012-10-19 00:27:49 +04:00
$this->assertEquals($expected, $result);
$result = OC_Util::formatDate(1102831200, true);
$expected = 'December 12, 2004';
2012-10-18 19:35:19 +04:00
$this->assertEquals($expected, $result);
}
function testCallRegister() {
$result = strlen(OC_Util::callRegister());
2012-10-18 19:35:19 +04:00
$this->assertEquals(20, $result);
}
function testSanitizeHTML() {
$badString = "<script>alert('Hacked!');</script>";
$result = OC_Util::sanitizeHTML($badString);
2012-10-18 19:35:19 +04:00
$this->assertEquals("&lt;script&gt;alert(&#039;Hacked!&#039;);&lt;/script&gt;", $result);
$goodString = "This is an harmless string.";
$result = OC_Util::sanitizeHTML($goodString);
2012-10-18 19:35:19 +04:00
$this->assertEquals("This is an harmless string.", $result);
}
function testGenerate_random_bytes() {
$result = strlen(OC_Util::generate_random_bytes(59));
2012-10-18 19:35:19 +04:00
$this->assertEquals(59, $result);
}
function testGetDefaultEmailAddress() {
$email = \OCP\Util::getDefaultEmailAddress("no-reply");
$this->assertEquals('no-reply@localhost.localdomain', $email);
}
function testGetDefaultEmailAddressFromConfig() {
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');
}
function testGetInstanceIdGeneratesValidId() {
OC_Config::deleteKey('instanceid');
$this->assertStringStartsWith('oc', OC_Util::getInstanceId());
}
}