summaryrefslogtreecommitdiff
path: root/_test/tests/inc/utf8_stripspecials.test.php
blob: c9dc3205fb755501cab69f299f9c1db963efdf2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
// use no mbstring help here
if(!defined('UTF8_NOMBSTRING')) define('UTF8_NOMBSTRING',1);

class utf8_stripspecials extends DokuWikiTest {


    function test1(){
        // we test multiple cases here - format: string, repl, additional, test
        $tests   = array();
        $tests[] = array('asciistring','','','asciistring');
        $tests[] = array('asciistring','','\._\-:','asciistring');
        $tests[] = array('ascii.string','','\._\-:','asciistring');
        $tests[] = array('ascii.string',' ','\._\-:','ascii string');
        $tests[] = array('2.1.14',' ','\._\-:','2 1 14');
        $tests[] = array('ascii.string','','\._\-:\*','asciistring');
        $tests[] = array('ascii.string',' ','\._\-:\*','ascii string');
        $tests[] = array('2.1.14',' ','\._\-:\*','2 1 14');
        $tests[] = array('string with nbsps','_','\*','string_with_nbsps');

        foreach($tests as $test){
            $this->assertEquals(utf8_stripspecials($test[0],$test[1],$test[2]),$test[3]);
        }
    }

}
//Setup VIM: ex: et ts=4 :