Skip to content
Snippets Groups Projects
Commit 698e7df8 authored by Christopher Smith's avatar Christopher Smith
Browse files

add tests for usernames with 2 & 3 byte utf8 characters

parent a758ffa6
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,22 @@ class auth_nameencode_test extends DokuWikiTest {
$out = '%40hey%24you';
$this->assertEquals(auth_nameencode($in),$out);
}
// include a two byte utf8 character which shouldn't be encoded
function test_hebrew(){
$in = 'nun-נ8';
$expect = 'nun%2dנ8';
$this->assertEquals($expect, auth_nameencode($in));
}
// include a three byte utf8 character which shouldn't be encoded
function test_devanagiri(){
$in = 'ut-fठ8';
$expect = 'ut%2dfठ8';
$this->assertEquals($expect, auth_nameencode($in));
}
}
//Setup VIM: ex: et ts=4 :
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment