Add unit test

remotes/origin/stable6
Victor Dubiniuk 12 years ago
parent 257096f1d4
commit c0b210f0d5
  1. 6
      tests/lib/util.php

@ -37,6 +37,12 @@ class Test_Util extends PHPUnit_Framework_TestCase {
$result = OC_Util::sanitizeHTML($goodString);
$this->assertEquals("This is an harmless string.", $result);
}
function testEncodePath(){
$component = '/§#@test%&^ä/-child';
$result = OC_Util::encodePath($component);
$this->assertEquals("/%C2%A7%23%40test%25%26%5E%C3%A4/-child", $result);
}
function testGenerate_random_bytes() {
$result = strlen(OC_Util::generate_random_bytes(59));

Loading…
Cancel
Save