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

class utf8_strtolower_test extends DokuWikiTest {

    function test_givens(){
        $data = array(
            'Αρχιτεκτονική Μελέτη' => 'αρχιτεκτονική μελέτη', // FS#2173
        );

        foreach($data as $input => $expected) {
            $this->assertEquals($expected, utf8_strtolower($input));
        }

        // just make sure our data was correct
        if(function_exists('mb_strtolower')) {
            foreach($data as $input => $expected) {
                $this->assertEquals($expected, mb_strtolower($input, 'utf-8'));
            }
        }
    }
}