diff options
author | Guy Brand <gb@unistra.fr> | 2012-09-10 17:04:45 +0200 |
---|---|---|
committer | Guy Brand <gb@unistra.fr> | 2012-09-10 17:04:45 +0200 |
commit | 0f8ac4e8c5872a6b68b350f96a9ecde0291edefa (patch) | |
tree | ad7938bb4143d5e5a38fd7a8d131e4171aec657d /_test/tests/inc/auth_nameencode.test.php | |
parent | 58ec8fa9128e4581749955de87530f432e387588 (diff) | |
parent | b31fcef02fd24b3e746c9618e77152c7b84c2f2a (diff) | |
download | rpg-0f8ac4e8c5872a6b68b350f96a9ecde0291edefa.tar.gz rpg-0f8ac4e8c5872a6b68b350f96a9ecde0291edefa.tar.bz2 |
Merge branch 'master' into stable
Diffstat (limited to '_test/tests/inc/auth_nameencode.test.php')
-rw-r--r-- | _test/tests/inc/auth_nameencode.test.php | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/_test/tests/inc/auth_nameencode.test.php b/_test/tests/inc/auth_nameencode.test.php new file mode 100644 index 000000000..21db304e0 --- /dev/null +++ b/_test/tests/inc/auth_nameencode.test.php @@ -0,0 +1,47 @@ +<?php + +class auth_nameencode_test extends DokuWikiTest { + + function teardown() { + global $cache_authname; + $cache_authname = array(); + } + + function test_simple(){ + $in = 'hey$you'; + $out = 'hey%24you'; + $this->assertEquals(auth_nameencode($in),$out); + } + + function test_quote(){ + $in = 'hey"you'; + $out = 'hey%22you'; + $this->assertEquals(auth_nameencode($in),$out); + } + + function test_complex(){ + $in = 'hey $ you !$%! foo '; + $out = 'hey%20%24%20you%20%21%24%25%21%20foo%20'; + $this->assertEquals(auth_nameencode($in),$out); + } + + function test_complexutf8(){ + $in = 'häü $ yü !$%! foo '; + $out = 'häü%20%24%20yü%20%21%24%25%21%20foo%20'; + $this->assertEquals(auth_nameencode($in),$out); + } + + function test_groupskipon(){ + $in = '@hey$you'; + $out = '@hey%24you'; + $this->assertEquals(auth_nameencode($in,true),$out); + } + + function test_groupskipoff(){ + $in = '@hey$you'; + $out = '%40hey%24you'; + $this->assertEquals(auth_nameencode($in),$out); + } +} + +//Setup VIM: ex: et ts=4 : |