summaryrefslogtreecommitdiff
path: root/_test/tests/inc/utf8_basename.test.php
blob: 1544e9915484e9c7425c3c0db510fc44a132f8de (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php

class utf8_basename_test extends DokuWikiTest {

     function test1(){
        $data = array(
            array('/this/foo/bar.test.png',         '', 'bar.test.png'),
            array('\\this\\foo\\bar.test.png',      '', 'bar.test.png'),
            array('/this\\foo/bar.test.png',        '', 'bar.test.png'),
            array('/this/foo\\bar.test.png',        '', 'bar.test.png'),

            array('/this/ДокуВики/bar.test.png',    '', 'bar.test.png'),
            array('\\this\\ДокуВики\\bar.test.png', '', 'bar.test.png'),
            array('/this\\ДокуВики/bar.test.png',   '', 'bar.test.png'),
            array('/this/ДокуВики\\bar.test.png',   '', 'bar.test.png'),

            array('/this/foo/ДокуВики.test.png',    '', 'ДокуВики.test.png'),
            array('\\this\\foo\\ДокуВики.test.png', '', 'ДокуВики.test.png'),
            array('/this\\foo/ДокуВики.test.png',   '', 'ДокуВики.test.png'),
            array('/this/foo\\ДокуВики.test.png',   '', 'ДокуВики.test.png'),

            array('/this/foo/bar.test.png',         '.png', 'bar.test'),
            array('\\this\\foo\\bar.test.png',      '.png', 'bar.test'),
            array('/this\\foo/bar.test.png',        '.png', 'bar.test'),
            array('/this/foo\\bar.test.png',        '.png', 'bar.test'),

            array('/this/ДокуВики/bar.test.png',    '.png', 'bar.test'),
            array('\\this\\ДокуВики\\bar.test.png', '.png', 'bar.test'),
            array('/this\\ДокуВики/bar.test.png',   '.png', 'bar.test'),
            array('/this/ДокуВики\\bar.test.png',   '.png', 'bar.test'),

            array('/this/foo/ДокуВики.test.png',    '.png', 'ДокуВики.test'),
            array('\\this\\foo\\ДокуВики.test.png', '.png', 'ДокуВики.test'),
            array('/this\\foo/ДокуВики.test.png',   '.png', 'ДокуВики.test'),
            array('/this/foo\\ДокуВики.test.png',   '.png', 'ДокуВики.test'),

            array('/this/foo/bar.test.png',         '.foo', 'bar.test.png'),
            array('\\this\\foo\\bar.test.png',      '.foo', 'bar.test.png'),
            array('/this\\foo/bar.test.png',        '.foo', 'bar.test.png'),
            array('/this/foo\\bar.test.png',        '.foo', 'bar.test.png'),

            array('/this/ДокуВики/bar.test.png',    '.foo', 'bar.test.png'),
            array('\\this\\ДокуВики\\bar.test.png', '.foo', 'bar.test.png'),
            array('/this\\ДокуВики/bar.test.png',   '.foo', 'bar.test.png'),
            array('/this/ДокуВики\\bar.test.png',   '.foo', 'bar.test.png'),

            array('/this/foo/ДокуВики.test.png',    '.foo', 'ДокуВики.test.png'),
            array('\\this\\foo\\ДокуВики.test.png', '.foo', 'ДокуВики.test.png'),
            array('/this\\foo/ДокуВики.test.png',   '.foo', 'ДокуВики.test.png'),
            array('/this/foo\\ДокуВики.test.png',   '.foo', 'ДокуВики.test.png'),


            array('/this/foo/ДокуВики.test.Вик',    '.foo', 'ДокуВики.test.Вик'),
            array('\\this\\foo\\ДокуВики.test.Вик', '.foo', 'ДокуВики.test.Вик'),
            array('/this\\foo/ДокуВики.test.Вик',   '.foo', 'ДокуВики.test.Вик'),
            array('/this/foo\\ДокуВики.test.Вик',   '.foo', 'ДокуВики.test.Вик'),

            array('/this/foo/ДокуВики.test.Вик',    '.Вик', 'ДокуВики.test'),
            array('\\this\\foo\\ДокуВики.test.Вик', '.Вик', 'ДокуВики.test'),
            array('/this\\foo/ДокуВики.test.Вик',   '.Вик', 'ДокуВики.test'),
            array('/this/foo\\ДокуВики.test.Вик',   '.Вик', 'ДокуВики.test'),

            array('bar.test.png', '', 'bar.test.png'),
            array('bar.test.png', '.png', 'bar.test'),

            array('/bar.test.png', '', 'bar.test.png'),
            array('/bar.test.png', '.png', 'bar.test'),
            array('\\bar.test.png', '', 'bar.test.png'),
            array('\\bar.test.png', '.png', 'bar.test'),
            array('\\/bar.test.png', '', 'bar.test.png'),
            array('\\/bar.test.png', '.png', 'bar.test'),
            array('/\\bar.test.png', '', 'bar.test.png'),
            array('/\\bar.test.png', '.png', 'bar.test'),

            // PHP's basename does this too:
            array('foo/',   '', 'foo'),
            array('foo\\',  '', 'foo'),
            array('foo\\/', '', 'foo'),
            array('foo/\\', '', 'foo'),
            array('foo.png/',   '.png', 'foo'),
            array('foo.png\\',  '.png', 'foo'),
            array('foo.png\\/', '.png', 'foo'),
            array('foo.png/\\', '.png', 'foo'),
        );

        foreach($data as $test){
            $this->assertEquals($test[2], utf8_basename($test[0], $test[1]), "input: ('".$test[0]."', '".$test[1]."')");
        }
     }

}