Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PMA_quoting_slashing_test.php « common « libraries « test - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5d837a9e06debbddf0b17ca441e08b38d356178 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Test for quoting, slashing/backslashing
 *
 * @package PhpMyAdmin-test
 * @group common.lib-tests
 */

/*
 * Include to test.
 */
require_once 'libraries/Util.class.php';
require_once 'libraries/sqlparser.data.php';

/**
 * Test for quoting, slashing/backslashing
 *
 * @package PhpMyAdmin-test
 * @group common.lib-tests
 */
class PMA_QuotingSlashing_Test extends PHPUnit_Framework_TestCase
{

    /**
     * sqlAddslashes test
     *
     * @return void
     */
    public function testAddSlashes()
    {
        $string = "\'test''\''\'\r\t\n";

        $this->assertEquals(
            "\\\\\\\\\'test\'\'\\\\\\\\\'\'\\\\\\\\\'\\r\\t\\n",
            PMA_Util::sqlAddSlashes($string, true, true, true)
        );
        $this->assertEquals(
            "\\\\\\\\''test''''\\\\\\\\''''\\\\\\\\''\\r\\t\\n",
            PMA_Util::sqlAddSlashes($string, true, true, false)
        );
        $this->assertEquals(
            "\\\\\\\\\'test\'\'\\\\\\\\\'\'\\\\\\\\\'\r\t\n",
            PMA_Util::sqlAddSlashes($string, true, false, true)
        );
        $this->assertEquals(
            "\\\\\\\\''test''''\\\\\\\\''''\\\\\\\\''\r\t\n",
            PMA_Util::sqlAddSlashes($string, true, false, false)
        );
        $this->assertEquals(
            "\\\\\'test\'\'\\\\\'\'\\\\\'\\r\\t\\n",
            PMA_Util::sqlAddSlashes($string, false, true, true)
        );
        $this->assertEquals(
            "\\\\''test''''\\\\''''\\\\''\\r\\t\\n",
            PMA_Util::sqlAddSlashes($string, false, true, false)
        );
        $this->assertEquals(
            "\\\\\'test\'\'\\\\\'\'\\\\\'\r\t\n",
            PMA_Util::sqlAddSlashes($string, false, false, true)
        );
        $this->assertEquals(
            "\\\\''test''''\\\\''''\\\\''\r\t\n",
            PMA_Util::sqlAddSlashes($string, false, false, false)
        );
    }

    /**
     * data provider for PMA_Util::unQuote test
     *
     * @return array
     */
    public function unQuoteProvider()
    {
        return array(
            array('"test\'"', "test'"),
            array("'test''", "test'"),
            array("`test'`", "test'"),
            array("'test'test", "'test'test")
        );
    }

    /**
     * PMA_Util::unQuote test
     *
     * @param string $param    String
     * @param string $expected Expected output
     *
     * @return void
     *
     * @dataProvider unQuoteProvider
     */
    public function testUnQuote($param, $expected)
    {
        $this->assertEquals(
            $expected, PMA_Util::unQuote($param)
        );
    }

    /**
     * data provider for PMA_Util::unQuote test with chosen quote
     *
     * @return array
     */
    public function unQuoteSelectedProvider()
    {
        return array(
            array('"test\'"', "test'"),
            array("'test''", "'test''"),
            array("`test'`", "`test'`"),
            array("'test'test", "'test'test")
        );
    }

    /**
     * PMA_Util::unQuote test with chosen quote
     *
     * @param string $param    String
     * @param string $expected Expected output
     *
     * @return void
     *
     * @dataProvider unQuoteSelectedProvider
     */
    public function testUnQuoteSelectedChar($param, $expected)
    {
        $this->assertEquals(
            $expected, PMA_Util::unQuote($param, '"')
        );
    }

    /**
     * data provider for backquote test
     *
     * @return array
     */
    public function backquoteDataProvider()
    {
        return array(
            array('0', '`0`'),
            array('test', '`test`'),
            array('te`st', '`te``st`'),
            array(
                array('test', 'te`st', '', '*'),
                array('`test`', '`te``st`', '', '*')
            )
        );
    }

    /**
     * backquote test with different param $do_it (true, false)
     *
     * @param string $a String
     * @param string $b Expected output
     *
     * @return void
     *
     * @dataProvider backquoteDataProvider
     */
    public function testBackquote($a, $b)
    {
        // Test bypass quoting (used by dump functions)
        $this->assertEquals($a, PMA_Util::backquote($a, false));

        // Test backquote
        $this->assertEquals($b, PMA_Util::backquote($a));
    }

    /**
     * data provider for backquoteCompat test
     *
     * @return array
     */
    public function backquoteCompatDataProvider()
    {
        return array(
            array('0', '"0"'),
            array('test', '"test"'),
            array('te`st', '"te`st"'),
            array(
                array('test', 'te`st', '', '*'),
                array('"test"', '"te`st"', '', '*')
            )
        );
    }

    /**
     * backquoteCompat test with different param $compatibility (NONE, MSSQL)
     *
     * @param string $a String
     * @param string $b Expected output
     *
     * @return void
     *
     * @dataProvider backquoteCompatDataProvider
     */
    public function testbackquoteCompat($a, $b)
    {
        // Test bypass quoting (used by dump functions)
        $this->assertEquals($a, PMA_Util::backquoteCompat($a, 'NONE', false));

        // Run tests in MSSQL compatibility mode
        // Test bypass quoting (used by dump functions)
        $this->assertEquals($a, PMA_Util::backquoteCompat($a, 'MSSQL', false));

        // Test backquote
        $this->assertEquals($b, PMA_Util::backquoteCompat($a, 'MSSQL'));
    }

    /**
     * backquoteCompat test with forbidden words
     *
     * @return void
     */
    public function testBackquoteForbidenWords()
    {
        foreach (SqlParser\Context::$KEYWORDS as $keyword => $type) {
            if ($type & SqlParser\Token::FLAG_KEYWORD_RESERVED) {
                $this->assertEquals(
                    "`" . $keyword . "`",
                    PMA_Util::backquote($keyword, false)
                );
            } else {
                $this->assertEquals(
                    $keyword,
                    PMA_Util::backquote($keyword, false)
                );
            }
        }
    }
}
?>