diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2013-10-19 18:24:20 +0100 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2013-10-19 18:24:20 +0100 |
commit | 698e7df8c9d5c43a93ed6822efa537158682a700 (patch) | |
tree | ffb3ca334d6b78bfe09ccbd82d969df4ca6e20d2 | |
parent | a758ffa6011ed8273c8eb2e5deba7a4629fb37e9 (diff) | |
download | rpg-698e7df8c9d5c43a93ed6822efa537158682a700.tar.gz rpg-698e7df8c9d5c43a93ed6822efa537158682a700.tar.bz2 |
add tests for usernames with 2 & 3 byte utf8 characters
-rw-r--r-- | _test/tests/inc/auth_nameencode.test.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/_test/tests/inc/auth_nameencode.test.php b/_test/tests/inc/auth_nameencode.test.php index da9f31f90..64e437004 100644 --- a/_test/tests/inc/auth_nameencode.test.php +++ b/_test/tests/inc/auth_nameencode.test.php @@ -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 : |