File: BinaryDataAccessTest.php

package info (click to toggle)
php-doctrine-dbal 4.3.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 5,092 kB
  • sloc: php: 60,293; xml: 618; makefile: 23
file content (372 lines) | stat: -rw-r--r-- 12,021 bytes parent folder | download
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Tests\Functional;

use Doctrine\DBAL\ArrayParameterType;
use Doctrine\DBAL\ParameterType;
use Doctrine\DBAL\Schema\Column;
use Doctrine\DBAL\Schema\PrimaryKeyConstraint;
use Doctrine\DBAL\Schema\Table;
use Doctrine\DBAL\Tests\FunctionalTestCase;
use Doctrine\DBAL\Tests\TestUtil;
use Doctrine\DBAL\Types\Types;

use function array_change_key_case;
use function array_keys;
use function array_map;
use function hex2bin;
use function is_resource;
use function stream_get_contents;

use const CASE_LOWER;

class BinaryDataAccessTest extends FunctionalTestCase
{
    protected function setUp(): void
    {
        if (TestUtil::isDriverOneOf('pdo_oci')) {
            self::markTestSkipped("PDO_OCI doesn't support binding binary values");
        }

        $table = Table::editor()
            ->setUnquotedName('binary_fetch_table')
            ->setColumns(
                Column::editor()
                    ->setUnquotedName('test_int')
                    ->setTypeName(Types::INTEGER)
                    ->create(),
                Column::editor()
                    ->setUnquotedName('test_binary')
                    ->setTypeName(Types::BINARY)
                    ->setNotNull(false)
                    ->setLength(4)
                    ->create(),
            )
            ->setPrimaryKeyConstraint(
                PrimaryKeyConstraint::editor()
                    ->setUnquotedColumnNames('test_int')
                    ->create(),
            )
            ->create();

        $this->dropAndCreateTable($table);

        $this->connection->insert('binary_fetch_table', [
            'test_int' => 1,
            'test_binary' => hex2bin('C0DEF00D'),
        ], [
            'test_binary' => ParameterType::BINARY,
        ]);
    }

    public function testPrepareWithBindValue(): void
    {
        $sql  = 'SELECT test_int, test_binary FROM binary_fetch_table WHERE test_int = ? AND test_binary = ?';
        $stmt = $this->connection->prepare($sql);

        $stmt->bindValue(1, 1);
        $stmt->bindValue(2, hex2bin('C0DEF00D'), ParameterType::BINARY);

        $row = $stmt->executeQuery()->fetchAssociative();

        self::assertIsArray($row);
        $row = array_change_key_case($row, CASE_LOWER);
        self::assertEquals(['test_int', 'test_binary'], array_keys($row));
        self::assertEquals(1, $row['test_int']);

        $binaryResult = $row['test_binary'];
        if (is_resource($binaryResult)) {
            $binaryResult = stream_get_contents($binaryResult);
        }

        self::assertEquals(hex2bin('C0DEF00D'), $binaryResult);
    }

    public function testPrepareWithFetchAllAssociative(): void
    {
        $paramInt = 1;
        $paramBin = hex2bin('C0DEF00D');

        $sql  = 'SELECT test_int, test_binary FROM binary_fetch_table WHERE test_int = ? AND test_binary = ?';
        $stmt = $this->connection->prepare($sql);

        $stmt->bindValue(1, $paramInt);
        $stmt->bindValue(2, $paramBin, ParameterType::BINARY);

        $rows    = $stmt->executeQuery()->fetchAllAssociative();
        $rows[0] = array_change_key_case($rows[0], CASE_LOWER);

        self::assertEquals(['test_int', 'test_binary'], array_keys($rows[0]));
        self::assertEquals(1, $rows[0]['test_int']);

        $binaryResult = $rows[0]['test_binary'];
        if (is_resource($binaryResult)) {
            $binaryResult = stream_get_contents($binaryResult);
        }

        self::assertEquals(hex2bin('C0DEF00D'), $binaryResult);
    }

    public function testPrepareWithFetchOne(): void
    {
        $paramInt = 1;
        $paramBin = hex2bin('C0DEF00D');

        $sql  = 'SELECT test_int FROM binary_fetch_table WHERE test_int = ? AND test_binary = ?';
        $stmt = $this->connection->prepare($sql);

        $stmt->bindValue(1, $paramInt);
        $stmt->bindValue(2, $paramBin, ParameterType::BINARY);

        $column = $stmt->executeQuery()->fetchOne();
        self::assertEquals(1, $column);
    }

    public function testFetchAllAssociative(): void
    {
        $sql  = 'SELECT test_int, test_binary FROM binary_fetch_table WHERE test_int = ? AND test_binary = ?';
        $data = $this->connection->fetchAllAssociative($sql, [1, hex2bin('C0DEF00D')], [1 => ParameterType::BINARY]);

        self::assertCount(1, $data);

        $row = $data[0];
        self::assertCount(2, $row);

        $row = array_change_key_case($row, CASE_LOWER);
        self::assertEquals(1, $row['test_int']);

        $binaryResult = $row['test_binary'];
        if (is_resource($binaryResult)) {
            $binaryResult = stream_get_contents($binaryResult);
        }

        self::assertEquals(hex2bin('C0DEF00D'), $binaryResult);
    }

    public function testFetchAllWithTypes(): void
    {
        $sql  = 'SELECT test_int, test_binary FROM binary_fetch_table WHERE test_int = ? AND test_binary = ?';
        $data = $this->connection->fetchAllAssociative(
            $sql,
            [1, hex2bin('C0DEF00D')],
            [ParameterType::STRING, Types::BINARY],
        );

        self::assertCount(1, $data);

        $row = $data[0];
        self::assertCount(2, $row);

        $row = array_change_key_case($row, CASE_LOWER);
        self::assertEquals(1, $row['test_int']);

        $binaryResult = $row['test_binary'];
        if (is_resource($binaryResult)) {
            $binaryResult = stream_get_contents($binaryResult);
        }

        self::assertEquals(hex2bin('C0DEF00D'), $binaryResult);
    }

    public function testFetchAssociative(): void
    {
        $sql = 'SELECT test_int, test_binary FROM binary_fetch_table WHERE test_int = ? AND test_binary = ?';
        $row = $this->connection->fetchAssociative($sql, [1, hex2bin('C0DEF00D')], [1 => ParameterType::BINARY]);

        self::assertNotFalse($row);

        $row = array_change_key_case($row, CASE_LOWER);

        self::assertEquals(1, $row['test_int']);

        $binaryResult = $row['test_binary'];
        if (is_resource($binaryResult)) {
            $binaryResult = stream_get_contents($binaryResult);
        }

        self::assertEquals(hex2bin('C0DEF00D'), $binaryResult);
    }

    public function testFetchAssocWithTypes(): void
    {
        $sql = 'SELECT test_int, test_binary FROM binary_fetch_table WHERE test_int = ? AND test_binary = ?';
        $row = $this->connection->fetchAssociative(
            $sql,
            [1, hex2bin('C0DEF00D')],
            [ParameterType::STRING, Types::BINARY],
        );

        self::assertNotFalse($row);

        $row = array_change_key_case($row, CASE_LOWER);

        self::assertEquals(1, $row['test_int']);

        $binaryResult = $row['test_binary'];
        if (is_resource($binaryResult)) {
            $binaryResult = stream_get_contents($binaryResult);
        }

        self::assertEquals(hex2bin('C0DEF00D'), $binaryResult);
    }

    public function testFetchArray(): void
    {
        $sql = 'SELECT test_int, test_binary FROM binary_fetch_table WHERE test_int = ? AND test_binary = ?';
        $row = $this->connection->fetchNumeric($sql, [1, hex2bin('C0DEF00D')], [1 => ParameterType::BINARY]);
        self::assertNotFalse($row);

        self::assertEquals(1, $row[0]);

        $binaryResult = $row[1];
        if (is_resource($binaryResult)) {
            $binaryResult = stream_get_contents($binaryResult);
        }

        self::assertEquals(hex2bin('C0DEF00D'), $binaryResult);
    }

    public function testFetchArrayWithTypes(): void
    {
        $sql = 'SELECT test_int, test_binary FROM binary_fetch_table WHERE test_int = ? AND test_binary = ?';
        $row = $this->connection->fetchNumeric(
            $sql,
            [1, hex2bin('C0DEF00D')],
            [ParameterType::STRING, Types::BINARY],
        );

        self::assertNotFalse($row);

        $row = array_change_key_case($row, CASE_LOWER);

        self::assertEquals(1, $row[0]);

        $binaryResult = $row[1];
        if (is_resource($binaryResult)) {
            $binaryResult = stream_get_contents($binaryResult);
        }

        self::assertEquals(hex2bin('C0DEF00D'), $binaryResult);
    }

    public function testFetchColumn(): void
    {
        $sql     = 'SELECT test_int FROM binary_fetch_table WHERE test_int = ? AND test_binary = ?';
        $testInt = $this->connection->fetchOne($sql, [1, hex2bin('C0DEF00D')], [1 => ParameterType::BINARY]);

        self::assertEquals(1, $testInt);

        $sql        = 'SELECT test_binary FROM binary_fetch_table WHERE test_int = ? AND test_binary = ?';
        $testBinary = $this->connection->fetchOne($sql, [1, hex2bin('C0DEF00D')], [1 => ParameterType::BINARY]);

        if (is_resource($testBinary)) {
            $testBinary = stream_get_contents($testBinary);
        }

        self::assertEquals(hex2bin('C0DEF00D'), $testBinary);
    }

    public function testFetchOneWithTypes(): void
    {
        $sql    = 'SELECT test_binary FROM binary_fetch_table WHERE test_int = ? AND test_binary = ?';
        $column = $this->connection->fetchOne(
            $sql,
            [1, hex2bin('C0DEF00D')],
            [ParameterType::STRING, Types::BINARY],
        );

        if (is_resource($column)) {
            $column = stream_get_contents($column);
        }

        self::assertIsString($column);
        self::assertEquals(hex2bin('C0DEF00D'), $column);
    }

    public function testNativeArrayListSupport(): void
    {
        $binaryValues = [
            hex2bin('A0AEFA'),
            hex2bin('1F43BA'),
            hex2bin('8C9D2A'),
            hex2bin('72E8AA'),
            hex2bin('5B6F9A'),
            hex2bin('DAB24A'),
            hex2bin('3E71CA'),
            hex2bin('F0D6EA'),
            hex2bin('6A8B5A'),
            hex2bin('C582FA'),
        ];

        for ($i = 100; $i < 110; $i++) {
            $this->connection->insert('binary_fetch_table', [
                'test_int' => $i,
                'test_binary' => $binaryValues[$i - 100],
            ], [
                'test_binary' => ParameterType::BINARY,
            ]);
        }

        $result = $this->connection->executeQuery(
            'SELECT test_int FROM binary_fetch_table WHERE test_int IN (?)',
            [[100, 101, 102, 103, 104]],
            [ArrayParameterType::INTEGER],
        );

        $data = $result->fetchAllNumeric();
        self::assertCount(5, $data);
        self::assertEquals([[100], [101], [102], [103], [104]], $data);

        $result = $this->connection->executeQuery(
            'SELECT test_int FROM binary_fetch_table WHERE test_binary IN (?)',
            [
                [
                    $binaryValues[0],
                    $binaryValues[1],
                    $binaryValues[2],
                    $binaryValues[3],
                    $binaryValues[4],
                ],
            ],
            [ArrayParameterType::BINARY],
        );

        $data = $result->fetchAllNumeric();
        self::assertCount(5, $data);
        self::assertEquals([[100], [101], [102], [103], [104]], $data);

        $result = $this->connection->executeQuery(
            'SELECT test_binary FROM binary_fetch_table WHERE test_binary IN (?)',
            [
                [
                    $binaryValues[0],
                    $binaryValues[1],
                    $binaryValues[2],
                    $binaryValues[3],
                    $binaryValues[4],
                ],
            ],
            [ArrayParameterType::BINARY],
        );

        $data = $result->fetchFirstColumn();
        self::assertCount(5, $data);

        $data = array_map(
            static fn ($binaryField) => is_resource($binaryField)
                ? stream_get_contents($binaryField)
                : $binaryField,
            $data,
        );

        self::assertEquals([
            $binaryValues[0],
            $binaryValues[1],
            $binaryValues[2],
            $binaryValues[3],
            $binaryValues[4],
        ], $data);
    }
}