Add unit test

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

@ -38,6 +38,12 @@ class Test_Util extends PHPUnit_Framework_TestCase {
$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));
$this->assertEquals(59, $result);

Loading…
Cancel
Save