diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2012-10-13 14:20:00 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-10-13 14:35:20 +0200 |
commit | 8a87585c9d7c9b892b86c51349f536eb019a71cc (patch) | |
tree | f762364c1f8883277e8784f83cd8c4a012606ca2 /tests/lib/util.php | |
parent | 850826ceb83bea0517eced134df2814281d54cdd (diff) | |
download | nextcloud-server-8a87585c9d7c9b892b86c51349f536eb019a71cc.tar.gz nextcloud-server-8a87585c9d7c9b892b86c51349f536eb019a71cc.zip |
Little test for some util.php functions
Diffstat (limited to 'tests/lib/util.php')
-rw-r--r-- | tests/lib/util.php | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/tests/lib/util.php b/tests/lib/util.php new file mode 100644 index 00000000000..23fe2903613 --- /dev/null +++ b/tests/lib/util.php @@ -0,0 +1,45 @@ +<?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. + */ + +class Test_Util extends UnitTestCase { + + // Constructor + function Test_Util() { + date_default_timezone_set("UTC"); + } + + function testFormatDate() { + $result = OC_Util::formatDate(1350129205); + $expected = 'October 13, 2012, 11:53'; + $this->assertEquals($result, $expected); + + $result = OC_Util::formatDate(1102831200, true); + $expected = 'December 12, 2004'; + $this->assertEquals($result, $expected); + } + + function testCallRegister() { + $result = strlen(OC_Util::callRegister()); + $this->assertEquals($result, 20); + } + + function testSanitizeHTML() { + $badString = "<script>alert('Hacked!');</script>"; + $result = OC_Util::sanitizeHTML($badString); + $this->assertEquals($result, "<script>alert('Hacked!');</script>"); + + $goodString = "This is an harmless string."; + $result = OC_Util::sanitizeHTML($goodString); + $this->assertEquals($result, "This is an harmless string."); + } + + function testGenerate_random_bytes() { + $result = strlen(OC_Util::generate_random_bytes(59)); + $this->assertEquals($result, 59); + } +}
\ No newline at end of file |