Total Complexity | 133 |
Total Lines | 1588 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like AbstractPlatformTest often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use AbstractPlatformTest, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
28 | abstract class AbstractPlatformTest extends DbalTestCase |
||
29 | { |
||
30 | /** @var AbstractPlatform */ |
||
31 | protected $platform; |
||
32 | |||
33 | abstract public function createPlatform() : AbstractPlatform; |
||
34 | |||
35 | protected function setUp() : void |
||
36 | { |
||
37 | $this->platform = $this->createPlatform(); |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * @group DDC-1360 |
||
42 | */ |
||
43 | public function testQuoteIdentifier() : void |
||
44 | { |
||
45 | if ($this->platform->getName() === 'mssql') { |
||
46 | $this->markTestSkipped('Not working this way on mssql.'); |
||
47 | } |
||
48 | |||
49 | $c = $this->platform->getIdentifierQuoteCharacter(); |
||
50 | self::assertEquals($c . 'test' . $c, $this->platform->quoteIdentifier('test')); |
||
51 | self::assertEquals($c . 'test' . $c . '.' . $c . 'test' . $c, $this->platform->quoteIdentifier('test.test')); |
||
52 | self::assertEquals(str_repeat($c, 4), $this->platform->quoteIdentifier($c)); |
||
53 | } |
||
54 | |||
55 | /** |
||
56 | * @group DDC-1360 |
||
57 | */ |
||
58 | public function testQuoteSingleIdentifier() : void |
||
59 | { |
||
60 | if ($this->platform->getName() === 'mssql') { |
||
61 | $this->markTestSkipped('Not working this way on mssql.'); |
||
62 | } |
||
63 | |||
64 | $c = $this->platform->getIdentifierQuoteCharacter(); |
||
65 | self::assertEquals($c . 'test' . $c, $this->platform->quoteSingleIdentifier('test')); |
||
66 | self::assertEquals($c . 'test.test' . $c, $this->platform->quoteSingleIdentifier('test.test')); |
||
67 | self::assertEquals(str_repeat($c, 4), $this->platform->quoteSingleIdentifier($c)); |
||
68 | } |
||
69 | |||
70 | /** |
||
71 | * @group DBAL-1029 |
||
72 | * @dataProvider getReturnsForeignKeyReferentialActionSQL |
||
73 | */ |
||
74 | public function testReturnsForeignKeyReferentialActionSQL(string $action, string $expectedSQL) : void |
||
75 | { |
||
76 | self::assertSame($expectedSQL, $this->platform->getForeignKeyReferentialActionSQL($action)); |
||
77 | } |
||
78 | |||
79 | /** |
||
80 | * @return mixed[][] |
||
81 | */ |
||
82 | public static function getReturnsForeignKeyReferentialActionSQL() : iterable |
||
83 | { |
||
84 | return [ |
||
85 | ['CASCADE', 'CASCADE'], |
||
86 | ['SET NULL', 'SET NULL'], |
||
87 | ['NO ACTION', 'NO ACTION'], |
||
88 | ['RESTRICT', 'RESTRICT'], |
||
89 | ['SET DEFAULT', 'SET DEFAULT'], |
||
90 | ['CaScAdE', 'CASCADE'], |
||
91 | ]; |
||
92 | } |
||
93 | |||
94 | public function testGetInvalidForeignKeyReferentialActionSQL() : void |
||
95 | { |
||
96 | $this->expectException('InvalidArgumentException'); |
||
97 | $this->platform->getForeignKeyReferentialActionSQL('unknown'); |
||
98 | } |
||
99 | |||
100 | public function testGetUnknownDoctrineMappingType() : void |
||
101 | { |
||
102 | $this->expectException(DBALException::class); |
||
103 | $this->platform->getDoctrineTypeMapping('foobar'); |
||
104 | } |
||
105 | |||
106 | public function testRegisterDoctrineMappingType() : void |
||
107 | { |
||
108 | $this->platform->registerDoctrineTypeMapping('foo', 'integer'); |
||
109 | self::assertEquals('integer', $this->platform->getDoctrineTypeMapping('foo')); |
||
110 | } |
||
111 | |||
112 | public function testRegisterUnknownDoctrineMappingType() : void |
||
113 | { |
||
114 | $this->expectException(DBALException::class); |
||
115 | $this->platform->registerDoctrineTypeMapping('foo', 'bar'); |
||
116 | } |
||
117 | |||
118 | /** |
||
119 | * @group DBAL-2594 |
||
120 | */ |
||
121 | public function testRegistersCommentedDoctrineMappingTypeImplicitly() : void |
||
122 | { |
||
123 | if (! Type::hasType('my_commented')) { |
||
124 | Type::addType('my_commented', CommentedType::class); |
||
125 | } |
||
126 | |||
127 | $type = Type::getType('my_commented'); |
||
128 | $this->platform->registerDoctrineTypeMapping('foo', 'my_commented'); |
||
129 | |||
130 | self::assertTrue($this->platform->isCommentedDoctrineType($type)); |
||
131 | } |
||
132 | |||
133 | /** |
||
134 | * @group DBAL-939 |
||
135 | * @dataProvider getIsCommentedDoctrineType |
||
136 | */ |
||
137 | public function testIsCommentedDoctrineType(Type $type, bool $commented) : void |
||
138 | { |
||
139 | self::assertSame($commented, $this->platform->isCommentedDoctrineType($type)); |
||
140 | } |
||
141 | |||
142 | /** |
||
143 | * @return mixed[] |
||
144 | */ |
||
145 | public function getIsCommentedDoctrineType() : iterable |
||
146 | { |
||
147 | $this->setUp(); |
||
148 | |||
149 | $data = []; |
||
150 | |||
151 | foreach (Type::getTypesMap() as $typeName => $className) { |
||
152 | $type = Type::getType($typeName); |
||
153 | |||
154 | $data[$typeName] = [ |
||
155 | $type, |
||
156 | $type->requiresSQLCommentHint($this->platform), |
||
157 | ]; |
||
158 | } |
||
159 | |||
160 | return $data; |
||
161 | } |
||
162 | |||
163 | public function testCreateWithNoColumns() : void |
||
164 | { |
||
165 | $table = new Table('test'); |
||
166 | |||
167 | $this->expectException(DBALException::class); |
||
168 | $sql = $this->platform->getCreateTableSQL($table); |
||
|
|||
169 | } |
||
170 | |||
171 | public function testGeneratesTableCreationSql() : void |
||
172 | { |
||
173 | $table = new Table('test'); |
||
174 | $table->addColumn('id', 'integer', ['notnull' => true, 'autoincrement' => true]); |
||
175 | $table->addColumn('test', 'string', ['notnull' => false, 'length' => 255]); |
||
176 | $table->setPrimaryKey(['id']); |
||
177 | |||
178 | $sql = $this->platform->getCreateTableSQL($table); |
||
179 | self::assertEquals($this->getGenerateTableSql(), $sql[0]); |
||
180 | } |
||
181 | |||
182 | abstract public function getGenerateTableSql() : string; |
||
183 | |||
184 | public function testGenerateTableWithMultiColumnUniqueIndex() : void |
||
185 | { |
||
186 | $table = new Table('test'); |
||
187 | $table->addColumn('foo', 'string', ['notnull' => false, 'length' => 255]); |
||
188 | $table->addColumn('bar', 'string', ['notnull' => false, 'length' => 255]); |
||
189 | $table->addUniqueIndex(['foo', 'bar']); |
||
190 | |||
191 | $sql = $this->platform->getCreateTableSQL($table); |
||
192 | self::assertEquals($this->getGenerateTableWithMultiColumnUniqueIndexSql(), $sql); |
||
193 | } |
||
194 | |||
195 | /** |
||
196 | * @return string[] |
||
197 | */ |
||
198 | abstract public function getGenerateTableWithMultiColumnUniqueIndexSql() : array; |
||
199 | |||
200 | public function testGeneratesIndexCreationSql() : void |
||
201 | { |
||
202 | $indexDef = new Index('my_idx', ['user_name', 'last_login']); |
||
203 | |||
204 | self::assertEquals( |
||
205 | $this->getGenerateIndexSql(), |
||
206 | $this->platform->getCreateIndexSQL($indexDef, 'mytable') |
||
207 | ); |
||
208 | } |
||
209 | |||
210 | abstract public function getGenerateIndexSql() : string; |
||
211 | |||
212 | public function testGeneratesUniqueIndexCreationSql() : void |
||
213 | { |
||
214 | $indexDef = new Index('index_name', ['test', 'test2'], true); |
||
215 | |||
216 | $sql = $this->platform->getCreateIndexSQL($indexDef, 'test'); |
||
217 | self::assertEquals($this->getGenerateUniqueIndexSql(), $sql); |
||
218 | } |
||
219 | |||
220 | abstract public function getGenerateUniqueIndexSql() : string; |
||
221 | |||
222 | public function testGeneratesPartialIndexesSqlOnlyWhenSupportingPartialIndexes() : void |
||
223 | { |
||
224 | $where = 'test IS NULL AND test2 IS NOT NULL'; |
||
225 | $indexDef = new Index('name', ['test', 'test2'], false, false, [], ['where' => $where]); |
||
226 | $uniqueConstraint = new UniqueConstraint('name', ['test', 'test2'], [], []); |
||
227 | |||
228 | $expected = ' WHERE ' . $where; |
||
229 | |||
230 | $actuals = []; |
||
231 | |||
232 | if ($this->supportsInlineIndexDeclaration()) { |
||
233 | $actuals[] = $this->platform->getIndexDeclarationSQL('name', $indexDef); |
||
234 | } |
||
235 | |||
236 | $uniqueConstraintSQL = $this->platform->getUniqueConstraintDeclarationSQL('name', $uniqueConstraint); |
||
237 | $indexSQL = $this->platform->getCreateIndexSQL($indexDef, 'table'); |
||
238 | |||
239 | $this->assertStringEndsNotWith($expected, $uniqueConstraintSQL, 'WHERE clause should NOT be present'); |
||
240 | if ($this->platform->supportsPartialIndexes()) { |
||
241 | self::assertStringEndsWith($expected, $indexSQL, 'WHERE clause should be present'); |
||
242 | } else { |
||
243 | self::assertStringEndsNotWith($expected, $indexSQL, 'WHERE clause should NOT be present'); |
||
244 | } |
||
245 | } |
||
246 | |||
247 | public function testGeneratesForeignKeyCreationSql() : void |
||
248 | { |
||
249 | $fk = new ForeignKeyConstraint(['fk_name_id'], 'other_table', ['id']); |
||
250 | |||
251 | $sql = $this->platform->getCreateForeignKeySQL($fk, 'test'); |
||
252 | self::assertEquals($this->getGenerateForeignKeySql(), $sql); |
||
253 | } |
||
254 | |||
255 | abstract public function getGenerateForeignKeySql() : string; |
||
256 | |||
257 | public function testGeneratesConstraintCreationSql() : void |
||
258 | { |
||
259 | $idx = new Index('constraint_name', ['test'], true, false); |
||
260 | $sql = $this->platform->getCreateConstraintSQL($idx, 'test'); |
||
261 | self::assertEquals($this->getGenerateConstraintUniqueIndexSql(), $sql); |
||
262 | |||
263 | $pk = new Index('constraint_name', ['test'], true, true); |
||
264 | $sql = $this->platform->getCreateConstraintSQL($pk, 'test'); |
||
265 | self::assertEquals($this->getGenerateConstraintPrimaryIndexSql(), $sql); |
||
266 | |||
267 | $fk = new ForeignKeyConstraint(['fk_name'], 'foreign', ['id'], 'constraint_fk'); |
||
268 | $sql = $this->platform->getCreateConstraintSQL($fk, 'test'); |
||
269 | self::assertEquals($this->getGenerateConstraintForeignKeySql($fk), $sql); |
||
270 | } |
||
271 | |||
272 | public function testGeneratesForeignKeySqlOnlyWhenSupportingForeignKeys() : void |
||
273 | { |
||
274 | $fk = new ForeignKeyConstraint(['fk_name'], 'foreign', ['id'], 'constraint_fk'); |
||
275 | |||
276 | if ($this->platform->supportsForeignKeyConstraints()) { |
||
277 | self::assertIsString($this->platform->getCreateForeignKeySQL($fk, 'test')); |
||
278 | } else { |
||
279 | $this->expectException(DBALException::class); |
||
280 | $this->platform->getCreateForeignKeySQL($fk, 'test'); |
||
281 | } |
||
282 | } |
||
283 | |||
284 | protected function getBitAndComparisonExpressionSql(string $value1, string $value2) : string |
||
285 | { |
||
286 | return '(' . $value1 . ' & ' . $value2 . ')'; |
||
287 | } |
||
288 | |||
289 | /** |
||
290 | * @group DDC-1213 |
||
291 | */ |
||
292 | public function testGeneratesBitAndComparisonExpressionSql() : void |
||
293 | { |
||
294 | $sql = $this->platform->getBitAndComparisonExpression('2', '4'); |
||
295 | self::assertEquals($this->getBitAndComparisonExpressionSql('2', '4'), $sql); |
||
296 | } |
||
297 | |||
298 | protected function getBitOrComparisonExpressionSql(string $value1, string $value2) : string |
||
299 | { |
||
300 | return '(' . $value1 . ' | ' . $value2 . ')'; |
||
301 | } |
||
302 | |||
303 | /** |
||
304 | * @group DDC-1213 |
||
305 | */ |
||
306 | public function testGeneratesBitOrComparisonExpressionSql() : void |
||
307 | { |
||
308 | $sql = $this->platform->getBitOrComparisonExpression('2', '4'); |
||
309 | self::assertEquals($this->getBitOrComparisonExpressionSql('2', '4'), $sql); |
||
310 | } |
||
311 | |||
312 | public function getGenerateConstraintUniqueIndexSql() : string |
||
313 | { |
||
314 | return 'ALTER TABLE test ADD CONSTRAINT constraint_name UNIQUE (test)'; |
||
315 | } |
||
316 | |||
317 | public function getGenerateConstraintPrimaryIndexSql() : string |
||
318 | { |
||
319 | return 'ALTER TABLE test ADD CONSTRAINT constraint_name PRIMARY KEY (test)'; |
||
320 | } |
||
321 | |||
322 | public function getGenerateConstraintForeignKeySql(ForeignKeyConstraint $fk) : string |
||
323 | { |
||
324 | $quotedForeignTable = $fk->getQuotedForeignTableName($this->platform); |
||
325 | |||
326 | return sprintf( |
||
327 | 'ALTER TABLE test ADD CONSTRAINT constraint_fk FOREIGN KEY (fk_name) REFERENCES %s (id)', |
||
328 | $quotedForeignTable |
||
329 | ); |
||
330 | } |
||
331 | |||
332 | /** |
||
333 | * @return string[] |
||
334 | */ |
||
335 | abstract public function getGenerateAlterTableSql() : array; |
||
336 | |||
337 | public function testGeneratesTableAlterationSql() : void |
||
338 | { |
||
339 | $expectedSql = $this->getGenerateAlterTableSql(); |
||
340 | |||
341 | $table = new Table('mytable'); |
||
342 | $table->addColumn('id', 'integer', ['autoincrement' => true]); |
||
343 | $table->addColumn('foo', 'integer'); |
||
344 | $table->addColumn('bar', 'string'); |
||
345 | $table->addColumn('bloo', 'boolean'); |
||
346 | $table->setPrimaryKey(['id']); |
||
347 | |||
348 | $tableDiff = new TableDiff('mytable'); |
||
349 | $tableDiff->fromTable = $table; |
||
350 | $tableDiff->newName = 'userlist'; |
||
351 | $tableDiff->addedColumns['quota'] = new Column('quota', Type::getType('integer'), ['notnull' => false]); |
||
352 | $tableDiff->removedColumns['foo'] = new Column('foo', Type::getType('integer')); |
||
353 | $tableDiff->changedColumns['bar'] = new ColumnDiff( |
||
354 | 'bar', |
||
355 | new Column( |
||
356 | 'baz', |
||
357 | Type::getType('string'), |
||
358 | [ |
||
359 | 'length' => 255, |
||
360 | 'default' => 'def', |
||
361 | ] |
||
362 | ), |
||
363 | ['type', 'notnull', 'default'] |
||
364 | ); |
||
365 | |||
366 | $tableDiff->changedColumns['bloo'] = new ColumnDiff( |
||
367 | 'bloo', |
||
368 | new Column( |
||
369 | 'bloo', |
||
370 | Type::getType('boolean'), |
||
371 | ['default' => false] |
||
372 | ), |
||
373 | ['type', 'notnull', 'default'] |
||
374 | ); |
||
375 | |||
376 | $sql = $this->platform->getAlterTableSQL($tableDiff); |
||
377 | |||
378 | self::assertEquals($expectedSql, $sql); |
||
379 | } |
||
380 | |||
381 | public function testGetCustomColumnDeclarationSql() : void |
||
382 | { |
||
383 | $field = ['columnDefinition' => 'MEDIUMINT(6) UNSIGNED']; |
||
384 | self::assertEquals('foo MEDIUMINT(6) UNSIGNED', $this->platform->getColumnDeclarationSQL('foo', $field)); |
||
385 | } |
||
386 | |||
387 | public function testGetCreateTableSqlDispatchEvent() : void |
||
388 | { |
||
389 | $listenerMock = $this->getMockBuilder('GetCreateTableSqlDispatchEvenListener') |
||
390 | ->setMethods(['onSchemaCreateTable', 'onSchemaCreateTableColumn']) |
||
391 | ->getMock(); |
||
392 | $listenerMock |
||
393 | ->expects($this->once()) |
||
394 | ->method('onSchemaCreateTable'); |
||
395 | $listenerMock |
||
396 | ->expects($this->exactly(2)) |
||
397 | ->method('onSchemaCreateTableColumn'); |
||
398 | |||
399 | $eventManager = new EventManager(); |
||
400 | $eventManager->addEventListener([Events::onSchemaCreateTable, Events::onSchemaCreateTableColumn], $listenerMock); |
||
401 | |||
402 | $this->platform->setEventManager($eventManager); |
||
403 | |||
404 | $table = new Table('test'); |
||
405 | $table->addColumn('foo', 'string', ['notnull' => false, 'length' => 255]); |
||
406 | $table->addColumn('bar', 'string', ['notnull' => false, 'length' => 255]); |
||
407 | |||
408 | $this->platform->getCreateTableSQL($table); |
||
409 | } |
||
410 | |||
411 | public function testGetDropTableSqlDispatchEvent() : void |
||
412 | { |
||
413 | $listenerMock = $this->getMockBuilder('GetDropTableSqlDispatchEventListener') |
||
414 | ->setMethods(['onSchemaDropTable']) |
||
415 | ->getMock(); |
||
416 | $listenerMock |
||
417 | ->expects($this->once()) |
||
418 | ->method('onSchemaDropTable'); |
||
419 | |||
420 | $eventManager = new EventManager(); |
||
421 | $eventManager->addEventListener([Events::onSchemaDropTable], $listenerMock); |
||
422 | |||
423 | $this->platform->setEventManager($eventManager); |
||
424 | |||
425 | $this->platform->getDropTableSQL('TABLE'); |
||
426 | } |
||
427 | |||
428 | public function testGetAlterTableSqlDispatchEvent() : void |
||
429 | { |
||
430 | $events = [ |
||
431 | 'onSchemaAlterTable', |
||
432 | 'onSchemaAlterTableAddColumn', |
||
433 | 'onSchemaAlterTableRemoveColumn', |
||
434 | 'onSchemaAlterTableChangeColumn', |
||
435 | 'onSchemaAlterTableRenameColumn', |
||
436 | ]; |
||
437 | |||
438 | $listenerMock = $this->getMockBuilder('GetAlterTableSqlDispatchEvenListener') |
||
439 | ->setMethods($events) |
||
440 | ->getMock(); |
||
441 | $listenerMock |
||
442 | ->expects($this->once()) |
||
443 | ->method('onSchemaAlterTable'); |
||
444 | $listenerMock |
||
445 | ->expects($this->once()) |
||
446 | ->method('onSchemaAlterTableAddColumn'); |
||
447 | $listenerMock |
||
448 | ->expects($this->once()) |
||
449 | ->method('onSchemaAlterTableRemoveColumn'); |
||
450 | $listenerMock |
||
451 | ->expects($this->once()) |
||
452 | ->method('onSchemaAlterTableChangeColumn'); |
||
453 | $listenerMock |
||
454 | ->expects($this->once()) |
||
455 | ->method('onSchemaAlterTableRenameColumn'); |
||
456 | |||
457 | $eventManager = new EventManager(); |
||
458 | $events = [ |
||
459 | Events::onSchemaAlterTable, |
||
460 | Events::onSchemaAlterTableAddColumn, |
||
461 | Events::onSchemaAlterTableRemoveColumn, |
||
462 | Events::onSchemaAlterTableChangeColumn, |
||
463 | Events::onSchemaAlterTableRenameColumn, |
||
464 | ]; |
||
465 | $eventManager->addEventListener($events, $listenerMock); |
||
466 | |||
467 | $this->platform->setEventManager($eventManager); |
||
468 | |||
469 | $table = new Table('mytable'); |
||
470 | $table->addColumn('removed', 'integer'); |
||
471 | $table->addColumn('changed', 'integer'); |
||
472 | $table->addColumn('renamed', 'integer'); |
||
473 | |||
474 | $tableDiff = new TableDiff('mytable'); |
||
475 | $tableDiff->fromTable = $table; |
||
476 | $tableDiff->addedColumns['added'] = new Column('added', Type::getType('integer'), []); |
||
477 | $tableDiff->removedColumns['removed'] = new Column('removed', Type::getType('integer'), []); |
||
478 | $tableDiff->changedColumns['changed'] = new ColumnDiff( |
||
479 | 'changed', |
||
480 | new Column('changed2', Type::getType('string'), ['length' => 255]) |
||
481 | ); |
||
482 | $tableDiff->renamedColumns['renamed'] = new Column('renamed2', Type::getType('integer')); |
||
483 | |||
484 | $this->platform->getAlterTableSQL($tableDiff); |
||
485 | } |
||
486 | |||
487 | /** |
||
488 | * @group DBAL-42 |
||
489 | */ |
||
490 | public function testCreateTableColumnComments() : void |
||
491 | { |
||
492 | $table = new Table('test'); |
||
493 | $table->addColumn('id', 'integer', ['comment' => 'This is a comment']); |
||
494 | $table->setPrimaryKey(['id']); |
||
495 | |||
496 | self::assertEquals($this->getCreateTableColumnCommentsSQL(), $this->platform->getCreateTableSQL($table)); |
||
497 | } |
||
498 | |||
499 | /** |
||
500 | * @group DBAL-42 |
||
501 | */ |
||
502 | public function testAlterTableColumnComments() : void |
||
503 | { |
||
504 | $tableDiff = new TableDiff('mytable'); |
||
505 | $tableDiff->addedColumns['quota'] = new Column('quota', Type::getType('integer'), ['comment' => 'A comment']); |
||
506 | $tableDiff->changedColumns['foo'] = new ColumnDiff( |
||
507 | 'foo', |
||
508 | new Column('foo', Type::getType('string'), ['length' => 255]), |
||
509 | ['comment'] |
||
510 | ); |
||
511 | $tableDiff->changedColumns['bar'] = new ColumnDiff( |
||
512 | 'bar', |
||
513 | new Column('baz', Type::getType('string'), [ |
||
514 | 'length' => 255, |
||
515 | 'comment' => 'B comment', |
||
516 | ]), |
||
517 | ['comment'] |
||
518 | ); |
||
519 | |||
520 | self::assertEquals($this->getAlterTableColumnCommentsSQL(), $this->platform->getAlterTableSQL($tableDiff)); |
||
521 | } |
||
522 | |||
523 | public function testCreateTableColumnTypeComments() : void |
||
524 | { |
||
525 | $table = new Table('test'); |
||
526 | $table->addColumn('id', 'integer'); |
||
527 | $table->addColumn('data', 'array'); |
||
528 | $table->setPrimaryKey(['id']); |
||
529 | |||
530 | self::assertEquals($this->getCreateTableColumnTypeCommentsSQL(), $this->platform->getCreateTableSQL($table)); |
||
531 | } |
||
532 | |||
533 | /** |
||
534 | * @return string[] |
||
535 | */ |
||
536 | public function getCreateTableColumnCommentsSQL() : array |
||
537 | { |
||
538 | $this->markTestSkipped('Platform does not support Column comments.'); |
||
539 | } |
||
540 | |||
541 | /** |
||
542 | * @return string[] |
||
543 | */ |
||
544 | public function getAlterTableColumnCommentsSQL() : array |
||
545 | { |
||
546 | $this->markTestSkipped('Platform does not support Column comments.'); |
||
547 | } |
||
548 | |||
549 | /** |
||
550 | * @return string[] |
||
551 | */ |
||
552 | public function getCreateTableColumnTypeCommentsSQL() : array |
||
553 | { |
||
554 | $this->markTestSkipped('Platform does not support Column comments.'); |
||
555 | } |
||
556 | |||
557 | public function testGetDefaultValueDeclarationSQL() : void |
||
558 | { |
||
559 | // non-timestamp value will get single quotes |
||
560 | $field = [ |
||
561 | 'type' => Type::getType('string'), |
||
562 | 'default' => 'non_timestamp', |
||
563 | ]; |
||
564 | |||
565 | self::assertEquals(" DEFAULT 'non_timestamp'", $this->platform->getDefaultValueDeclarationSQL($field)); |
||
566 | } |
||
567 | |||
568 | /** |
||
569 | * @group 2859 |
||
570 | */ |
||
571 | public function testGetDefaultValueDeclarationSQLDateTime() : void |
||
572 | { |
||
573 | // timestamps on datetime types should not be quoted |
||
574 | foreach (['datetime', 'datetimetz', 'datetime_immutable', 'datetimetz_immutable'] as $type) { |
||
575 | $field = [ |
||
576 | 'type' => Type::getType($type), |
||
577 | 'default' => $this->platform->getCurrentTimestampSQL(), |
||
578 | ]; |
||
579 | |||
580 | self::assertSame( |
||
581 | ' DEFAULT ' . $this->platform->getCurrentTimestampSQL(), |
||
582 | $this->platform->getDefaultValueDeclarationSQL($field) |
||
583 | ); |
||
584 | } |
||
585 | } |
||
586 | |||
587 | public function testGetDefaultValueDeclarationSQLForIntegerTypes() : void |
||
588 | { |
||
589 | foreach (['bigint', 'integer', 'smallint'] as $type) { |
||
590 | $field = [ |
||
591 | 'type' => Type::getType($type), |
||
592 | 'default' => 1, |
||
593 | ]; |
||
594 | |||
595 | self::assertEquals( |
||
596 | ' DEFAULT 1', |
||
597 | $this->platform->getDefaultValueDeclarationSQL($field) |
||
598 | ); |
||
599 | } |
||
600 | } |
||
601 | |||
602 | /** |
||
603 | * @group 2859 |
||
604 | */ |
||
605 | public function testGetDefaultValueDeclarationSQLForDateType() : void |
||
606 | { |
||
607 | $currentDateSql = $this->platform->getCurrentDateSQL(); |
||
608 | foreach (['date', 'date_immutable'] as $type) { |
||
609 | $field = [ |
||
610 | 'type' => Type::getType($type), |
||
611 | 'default' => $currentDateSql, |
||
612 | ]; |
||
613 | |||
614 | self::assertSame( |
||
615 | ' DEFAULT ' . $currentDateSql, |
||
616 | $this->platform->getDefaultValueDeclarationSQL($field) |
||
617 | ); |
||
618 | } |
||
619 | } |
||
620 | |||
621 | /** |
||
622 | * @group DBAL-45 |
||
623 | */ |
||
624 | public function testKeywordList() : void |
||
625 | { |
||
626 | $keywordList = $this->platform->getReservedKeywordsList(); |
||
627 | self::assertInstanceOf(KeywordList::class, $keywordList); |
||
628 | |||
629 | self::assertTrue($keywordList->isKeyword('table')); |
||
630 | } |
||
631 | |||
632 | /** |
||
633 | * @group DBAL-374 |
||
634 | */ |
||
635 | public function testQuotedColumnInPrimaryKeyPropagation() : void |
||
636 | { |
||
637 | $table = new Table('`quoted`'); |
||
638 | $table->addColumn('create', 'string', ['length' => 255]); |
||
639 | $table->setPrimaryKey(['create']); |
||
640 | |||
641 | $sql = $this->platform->getCreateTableSQL($table); |
||
642 | self::assertEquals($this->getQuotedColumnInPrimaryKeySQL(), $sql); |
||
643 | } |
||
644 | |||
645 | /** |
||
646 | * @return string[] |
||
647 | */ |
||
648 | abstract protected function getQuotedColumnInPrimaryKeySQL() : array; |
||
649 | |||
650 | /** |
||
651 | * @return string[] |
||
652 | */ |
||
653 | abstract protected function getQuotedColumnInIndexSQL() : array; |
||
654 | |||
655 | /** |
||
656 | * @return string[] |
||
657 | */ |
||
658 | abstract protected function getQuotedNameInIndexSQL() : array; |
||
659 | |||
660 | /** |
||
661 | * @return string[] |
||
662 | */ |
||
663 | abstract protected function getQuotedColumnInForeignKeySQL() : array; |
||
664 | |||
665 | /** |
||
666 | * @group DBAL-374 |
||
667 | */ |
||
668 | public function testQuotedColumnInIndexPropagation() : void |
||
669 | { |
||
670 | $table = new Table('`quoted`'); |
||
671 | $table->addColumn('create', 'string', ['length' => 255]); |
||
672 | $table->addIndex(['create']); |
||
673 | |||
674 | $sql = $this->platform->getCreateTableSQL($table); |
||
675 | self::assertEquals($this->getQuotedColumnInIndexSQL(), $sql); |
||
676 | } |
||
677 | |||
678 | public function testQuotedNameInIndexSQL() : void |
||
679 | { |
||
680 | $table = new Table('test'); |
||
681 | $table->addColumn('column1', 'string', ['length' => 255]); |
||
682 | $table->addIndex(['column1'], '`key`'); |
||
683 | |||
684 | $sql = $this->platform->getCreateTableSQL($table); |
||
685 | self::assertEquals($this->getQuotedNameInIndexSQL(), $sql); |
||
686 | } |
||
687 | |||
688 | /** |
||
689 | * @group DBAL-374 |
||
690 | */ |
||
691 | public function testQuotedColumnInForeignKeyPropagation() : void |
||
692 | { |
||
693 | $table = new Table('`quoted`'); |
||
694 | $table->addColumn('create', 'string', ['length' => 255]); |
||
695 | $table->addColumn('foo', 'string', ['length' => 255]); |
||
696 | $table->addColumn('`bar`', 'string', ['length' => 255]); |
||
697 | |||
698 | // Foreign table with reserved keyword as name (needs quotation). |
||
699 | $foreignTable = new Table('foreign'); |
||
700 | $foreignTable->addColumn('create', 'string'); // Foreign column with reserved keyword as name (needs quotation). |
||
701 | $foreignTable->addColumn('bar', 'string'); // Foreign column with non-reserved keyword as name (does not need quotation). |
||
702 | $foreignTable->addColumn('`foo-bar`', 'string'); // Foreign table with special character in name (needs quotation on some platforms, e.g. Sqlite). |
||
703 | |||
704 | $table->addForeignKeyConstraint($foreignTable, ['create', 'foo', '`bar`'], ['create', 'bar', '`foo-bar`'], [], 'FK_WITH_RESERVED_KEYWORD'); |
||
705 | |||
706 | // Foreign table with non-reserved keyword as name (does not need quotation). |
||
707 | $foreignTable = new Table('foo'); |
||
708 | $foreignTable->addColumn('create', 'string'); // Foreign column with reserved keyword as name (needs quotation). |
||
709 | $foreignTable->addColumn('bar', 'string'); // Foreign column with non-reserved keyword as name (does not need quotation). |
||
710 | $foreignTable->addColumn('`foo-bar`', 'string'); // Foreign table with special character in name (needs quotation on some platforms, e.g. Sqlite). |
||
711 | |||
712 | $table->addForeignKeyConstraint($foreignTable, ['create', 'foo', '`bar`'], ['create', 'bar', '`foo-bar`'], [], 'FK_WITH_NON_RESERVED_KEYWORD'); |
||
713 | |||
714 | // Foreign table with special character in name (needs quotation on some platforms, e.g. Sqlite). |
||
715 | $foreignTable = new Table('`foo-bar`'); |
||
716 | $foreignTable->addColumn('create', 'string'); // Foreign column with reserved keyword as name (needs quotation). |
||
717 | $foreignTable->addColumn('bar', 'string'); // Foreign column with non-reserved keyword as name (does not need quotation). |
||
718 | $foreignTable->addColumn('`foo-bar`', 'string'); // Foreign table with special character in name (needs quotation on some platforms, e.g. Sqlite). |
||
719 | |||
720 | $table->addForeignKeyConstraint($foreignTable, ['create', 'foo', '`bar`'], ['create', 'bar', '`foo-bar`'], [], 'FK_WITH_INTENDED_QUOTATION'); |
||
721 | |||
722 | $sql = $this->platform->getCreateTableSQL($table, AbstractPlatform::CREATE_FOREIGNKEYS); |
||
723 | self::assertEquals($this->getQuotedColumnInForeignKeySQL(), $sql); |
||
724 | } |
||
725 | |||
726 | /** |
||
727 | * @group DBAL-1051 |
||
728 | */ |
||
729 | public function testQuotesReservedKeywordInUniqueConstraintDeclarationSQL() : void |
||
730 | { |
||
731 | $constraint = new UniqueConstraint('select', ['foo'], [], []); |
||
732 | |||
733 | self::assertSame( |
||
734 | $this->getQuotesReservedKeywordInUniqueConstraintDeclarationSQL(), |
||
735 | $this->platform->getUniqueConstraintDeclarationSQL('select', $constraint) |
||
736 | ); |
||
737 | } |
||
738 | |||
739 | abstract protected function getQuotesReservedKeywordInUniqueConstraintDeclarationSQL() : string; |
||
740 | |||
741 | /** |
||
742 | * @group DBAL-2270 |
||
743 | */ |
||
744 | public function testQuotesReservedKeywordInTruncateTableSQL() : void |
||
745 | { |
||
746 | self::assertSame( |
||
747 | $this->getQuotesReservedKeywordInTruncateTableSQL(), |
||
748 | $this->platform->getTruncateTableSQL('select') |
||
749 | ); |
||
750 | } |
||
751 | |||
752 | abstract protected function getQuotesReservedKeywordInTruncateTableSQL() : string; |
||
753 | |||
754 | /** |
||
755 | * @group DBAL-1051 |
||
756 | */ |
||
757 | public function testQuotesReservedKeywordInIndexDeclarationSQL() : void |
||
758 | { |
||
759 | $index = new Index('select', ['foo']); |
||
760 | |||
761 | if (! $this->supportsInlineIndexDeclaration()) { |
||
762 | $this->expectException(DBALException::class); |
||
763 | } |
||
764 | |||
765 | self::assertSame( |
||
766 | $this->getQuotesReservedKeywordInIndexDeclarationSQL(), |
||
767 | $this->platform->getIndexDeclarationSQL('select', $index) |
||
768 | ); |
||
769 | } |
||
770 | |||
771 | abstract protected function getQuotesReservedKeywordInIndexDeclarationSQL() : string; |
||
772 | |||
773 | protected function supportsInlineIndexDeclaration() : bool |
||
774 | { |
||
775 | return true; |
||
776 | } |
||
777 | |||
778 | public function testSupportsCommentOnStatement() : void |
||
779 | { |
||
780 | self::assertSame($this->supportsCommentOnStatement(), $this->platform->supportsCommentOnStatement()); |
||
781 | } |
||
782 | |||
783 | protected function supportsCommentOnStatement() : bool |
||
784 | { |
||
785 | return false; |
||
786 | } |
||
787 | |||
788 | public function testGetCreateSchemaSQL() : void |
||
789 | { |
||
790 | $this->expectException(DBALException::class); |
||
791 | |||
792 | $this->platform->getCreateSchemaSQL('schema'); |
||
793 | } |
||
794 | |||
795 | /** |
||
796 | * @group DBAL-585 |
||
797 | */ |
||
798 | public function testAlterTableChangeQuotedColumn() : void |
||
799 | { |
||
800 | $tableDiff = new TableDiff('mytable'); |
||
801 | $tableDiff->fromTable = new Table('mytable'); |
||
802 | $tableDiff->changedColumns['foo'] = new ColumnDiff( |
||
803 | 'select', |
||
804 | new Column( |
||
805 | 'select', |
||
806 | Type::getType('string'), |
||
807 | ['length' => 255] |
||
808 | ), |
||
809 | ['type'] |
||
810 | ); |
||
811 | |||
812 | self::assertStringContainsString( |
||
813 | $this->platform->quoteIdentifier('select'), |
||
814 | implode(';', $this->platform->getAlterTableSQL($tableDiff)) |
||
815 | ); |
||
816 | } |
||
817 | |||
818 | /** |
||
819 | * @group DBAL-563 |
||
820 | */ |
||
821 | public function testUsesSequenceEmulatedIdentityColumns() : void |
||
822 | { |
||
823 | self::assertFalse($this->platform->usesSequenceEmulatedIdentityColumns()); |
||
824 | } |
||
825 | |||
826 | /** |
||
827 | * @group DBAL-563 |
||
828 | */ |
||
829 | public function testReturnsIdentitySequenceName() : void |
||
830 | { |
||
831 | $this->expectException(DBALException::class); |
||
832 | |||
833 | $this->platform->getIdentitySequenceName('mytable', 'mycolumn'); |
||
834 | } |
||
835 | |||
836 | public function testGetFixedLengthStringTypeDeclarationSQLNoLength() : void |
||
837 | { |
||
838 | self::assertSame( |
||
839 | $this->getExpectedFixedLengthStringTypeDeclarationSQLNoLength(), |
||
840 | $this->platform->getStringTypeDeclarationSQL(['fixed' => true]) |
||
841 | ); |
||
842 | } |
||
843 | |||
844 | protected function getExpectedFixedLengthStringTypeDeclarationSQLNoLength() : string |
||
845 | { |
||
846 | return 'CHAR'; |
||
847 | } |
||
848 | |||
849 | public function testGetFixedLengthStringTypeDeclarationSQLWithLength() : void |
||
850 | { |
||
851 | self::assertSame( |
||
852 | $this->getExpectedFixedLengthStringTypeDeclarationSQLWithLength(), |
||
853 | $this->platform->getStringTypeDeclarationSQL([ |
||
854 | 'fixed' => true, |
||
855 | 'length' => 16, |
||
856 | ]) |
||
857 | ); |
||
858 | } |
||
859 | |||
860 | protected function getExpectedFixedLengthStringTypeDeclarationSQLWithLength() : string |
||
861 | { |
||
862 | return 'CHAR(16)'; |
||
863 | } |
||
864 | |||
865 | public function testGetVariableLengthStringTypeDeclarationSQLNoLength() : void |
||
866 | { |
||
867 | self::assertSame( |
||
868 | $this->getExpectedVariableLengthStringTypeDeclarationSQLNoLength(), |
||
869 | $this->platform->getStringTypeDeclarationSQL([]) |
||
870 | ); |
||
871 | } |
||
872 | |||
873 | protected function getExpectedVariableLengthStringTypeDeclarationSQLNoLength() : string |
||
874 | { |
||
875 | return 'VARCHAR'; |
||
876 | } |
||
877 | |||
878 | public function testGetVariableLengthStringTypeDeclarationSQLWithLength() : void |
||
879 | { |
||
880 | self::assertSame( |
||
881 | $this->getExpectedVariableLengthStringTypeDeclarationSQLWithLength(), |
||
882 | $this->platform->getStringTypeDeclarationSQL(['length' => 16]) |
||
883 | ); |
||
884 | } |
||
885 | |||
886 | protected function getExpectedVariableLengthStringTypeDeclarationSQLWithLength() : string |
||
887 | { |
||
888 | return 'VARCHAR(16)'; |
||
889 | } |
||
890 | |||
891 | public function testGetFixedLengthBinaryTypeDeclarationSQLNoLength() : void |
||
892 | { |
||
893 | self::assertSame( |
||
894 | $this->getExpectedFixedLengthBinaryTypeDeclarationSQLNoLength(), |
||
895 | $this->platform->getBinaryTypeDeclarationSQL(['fixed' => true]) |
||
896 | ); |
||
897 | } |
||
898 | |||
899 | public function getExpectedFixedLengthBinaryTypeDeclarationSQLNoLength() : string |
||
900 | { |
||
901 | return 'BINARY'; |
||
902 | } |
||
903 | |||
904 | public function testGetFixedLengthBinaryTypeDeclarationSQLWithLength() : void |
||
905 | { |
||
906 | self::assertSame( |
||
907 | $this->getExpectedFixedLengthBinaryTypeDeclarationSQLWithLength(), |
||
908 | $this->platform->getBinaryTypeDeclarationSQL([ |
||
909 | 'fixed' => true, |
||
910 | 'length' => 16, |
||
911 | ]) |
||
912 | ); |
||
913 | } |
||
914 | |||
915 | public function getExpectedFixedLengthBinaryTypeDeclarationSQLWithLength() : string |
||
916 | { |
||
917 | return 'BINARY(16)'; |
||
918 | } |
||
919 | |||
920 | public function testGetVariableLengthBinaryTypeDeclarationSQLNoLength() : void |
||
921 | { |
||
922 | self::assertSame( |
||
923 | $this->getExpectedVariableLengthBinaryTypeDeclarationSQLNoLength(), |
||
924 | $this->platform->getBinaryTypeDeclarationSQL([]) |
||
925 | ); |
||
926 | } |
||
927 | |||
928 | public function getExpectedVariableLengthBinaryTypeDeclarationSQLNoLength() : string |
||
929 | { |
||
930 | return 'VARBINARY'; |
||
931 | } |
||
932 | |||
933 | public function testGetVariableLengthBinaryTypeDeclarationSQLWithLength() : void |
||
934 | { |
||
935 | self::assertSame( |
||
936 | $this->getExpectedVariableLengthBinaryTypeDeclarationSQLWithLength(), |
||
937 | $this->platform->getBinaryTypeDeclarationSQL(['length' => 16]) |
||
938 | ); |
||
939 | } |
||
940 | |||
941 | public function getExpectedVariableLengthBinaryTypeDeclarationSQLWithLength() : string |
||
942 | { |
||
943 | return 'VARBINARY(16)'; |
||
944 | } |
||
945 | |||
946 | /** |
||
947 | * @group DBAL-553 |
||
948 | */ |
||
949 | public function hasNativeJsonType() : void |
||
950 | { |
||
951 | self::assertFalse($this->platform->hasNativeJsonType()); |
||
952 | } |
||
953 | |||
954 | /** |
||
955 | * @group DBAL-553 |
||
956 | */ |
||
957 | public function testReturnsJsonTypeDeclarationSQL() : void |
||
958 | { |
||
959 | $column = [ |
||
960 | 'length' => 666, |
||
961 | 'notnull' => true, |
||
962 | 'type' => Type::getType('json'), |
||
963 | ]; |
||
964 | |||
965 | self::assertSame( |
||
966 | $this->platform->getClobTypeDeclarationSQL($column), |
||
967 | $this->platform->getJsonTypeDeclarationSQL($column) |
||
968 | ); |
||
969 | } |
||
970 | |||
971 | /** |
||
972 | * @group DBAL-234 |
||
973 | */ |
||
974 | public function testAlterTableRenameIndex() : void |
||
975 | { |
||
976 | $tableDiff = new TableDiff('mytable'); |
||
977 | $tableDiff->fromTable = new Table('mytable'); |
||
978 | $tableDiff->fromTable->addColumn('id', 'integer'); |
||
979 | $tableDiff->fromTable->setPrimaryKey(['id']); |
||
980 | $tableDiff->renamedIndexes = [ |
||
981 | 'idx_foo' => new Index('idx_bar', ['id']), |
||
982 | ]; |
||
983 | |||
984 | self::assertSame( |
||
985 | $this->getAlterTableRenameIndexSQL(), |
||
986 | $this->platform->getAlterTableSQL($tableDiff) |
||
987 | ); |
||
988 | } |
||
989 | |||
990 | /** |
||
991 | * @return string[] |
||
992 | * |
||
993 | * @group DBAL-234 |
||
994 | */ |
||
995 | protected function getAlterTableRenameIndexSQL() : array |
||
996 | { |
||
997 | return [ |
||
998 | 'DROP INDEX idx_foo', |
||
999 | 'CREATE INDEX idx_bar ON mytable (id)', |
||
1000 | ]; |
||
1001 | } |
||
1002 | |||
1003 | /** |
||
1004 | * @group DBAL-234 |
||
1005 | */ |
||
1006 | public function testQuotesAlterTableRenameIndex() : void |
||
1007 | { |
||
1008 | $tableDiff = new TableDiff('table'); |
||
1009 | $tableDiff->fromTable = new Table('table'); |
||
1010 | $tableDiff->fromTable->addColumn('id', 'integer'); |
||
1011 | $tableDiff->fromTable->setPrimaryKey(['id']); |
||
1012 | $tableDiff->renamedIndexes = [ |
||
1013 | 'create' => new Index('select', ['id']), |
||
1014 | '`foo`' => new Index('`bar`', ['id']), |
||
1015 | ]; |
||
1016 | |||
1017 | self::assertSame( |
||
1018 | $this->getQuotedAlterTableRenameIndexSQL(), |
||
1019 | $this->platform->getAlterTableSQL($tableDiff) |
||
1020 | ); |
||
1021 | } |
||
1022 | |||
1023 | /** |
||
1024 | * @return string[] |
||
1025 | * |
||
1026 | * @group DBAL-234 |
||
1027 | */ |
||
1028 | protected function getQuotedAlterTableRenameIndexSQL() : array |
||
1029 | { |
||
1030 | return [ |
||
1031 | 'DROP INDEX "create"', |
||
1032 | 'CREATE INDEX "select" ON "table" (id)', |
||
1033 | 'DROP INDEX "foo"', |
||
1034 | 'CREATE INDEX "bar" ON "table" (id)', |
||
1035 | ]; |
||
1036 | } |
||
1037 | |||
1038 | /** |
||
1039 | * @group DBAL-835 |
||
1040 | */ |
||
1041 | public function testQuotesAlterTableRenameColumn() : void |
||
1042 | { |
||
1043 | $fromTable = new Table('mytable'); |
||
1044 | |||
1045 | $fromTable->addColumn('unquoted1', 'integer', ['comment' => 'Unquoted 1']); |
||
1046 | $fromTable->addColumn('unquoted2', 'integer', ['comment' => 'Unquoted 2']); |
||
1047 | $fromTable->addColumn('unquoted3', 'integer', ['comment' => 'Unquoted 3']); |
||
1048 | |||
1049 | $fromTable->addColumn('create', 'integer', ['comment' => 'Reserved keyword 1']); |
||
1050 | $fromTable->addColumn('table', 'integer', ['comment' => 'Reserved keyword 2']); |
||
1051 | $fromTable->addColumn('select', 'integer', ['comment' => 'Reserved keyword 3']); |
||
1052 | |||
1053 | $fromTable->addColumn('`quoted1`', 'integer', ['comment' => 'Quoted 1']); |
||
1054 | $fromTable->addColumn('`quoted2`', 'integer', ['comment' => 'Quoted 2']); |
||
1055 | $fromTable->addColumn('`quoted3`', 'integer', ['comment' => 'Quoted 3']); |
||
1056 | |||
1057 | $toTable = new Table('mytable'); |
||
1058 | |||
1059 | $toTable->addColumn('unquoted', 'integer', ['comment' => 'Unquoted 1']); // unquoted -> unquoted |
||
1060 | $toTable->addColumn('where', 'integer', ['comment' => 'Unquoted 2']); // unquoted -> reserved keyword |
||
1061 | $toTable->addColumn('`foo`', 'integer', ['comment' => 'Unquoted 3']); // unquoted -> quoted |
||
1062 | |||
1063 | $toTable->addColumn('reserved_keyword', 'integer', ['comment' => 'Reserved keyword 1']); // reserved keyword -> unquoted |
||
1064 | $toTable->addColumn('from', 'integer', ['comment' => 'Reserved keyword 2']); // reserved keyword -> reserved keyword |
||
1065 | $toTable->addColumn('`bar`', 'integer', ['comment' => 'Reserved keyword 3']); // reserved keyword -> quoted |
||
1066 | |||
1067 | $toTable->addColumn('quoted', 'integer', ['comment' => 'Quoted 1']); // quoted -> unquoted |
||
1068 | $toTable->addColumn('and', 'integer', ['comment' => 'Quoted 2']); // quoted -> reserved keyword |
||
1069 | $toTable->addColumn('`baz`', 'integer', ['comment' => 'Quoted 3']); // quoted -> quoted |
||
1070 | |||
1071 | $comparator = new Comparator(); |
||
1072 | |||
1073 | self::assertEquals( |
||
1074 | $this->getQuotedAlterTableRenameColumnSQL(), |
||
1075 | $this->platform->getAlterTableSQL($comparator->diffTable($fromTable, $toTable)) |
||
1076 | ); |
||
1077 | } |
||
1078 | |||
1079 | /** |
||
1080 | * Returns SQL statements for {@link testQuotesAlterTableRenameColumn}. |
||
1081 | * |
||
1082 | * @return string[] |
||
1083 | * |
||
1084 | * @group DBAL-835 |
||
1085 | */ |
||
1086 | abstract protected function getQuotedAlterTableRenameColumnSQL() : array; |
||
1087 | |||
1088 | /** |
||
1089 | * @group DBAL-835 |
||
1090 | */ |
||
1091 | public function testQuotesAlterTableChangeColumnLength() : void |
||
1092 | { |
||
1093 | $fromTable = new Table('mytable'); |
||
1094 | |||
1095 | $fromTable->addColumn('unquoted1', 'string', ['comment' => 'Unquoted 1', 'length' => 10]); |
||
1096 | $fromTable->addColumn('unquoted2', 'string', ['comment' => 'Unquoted 2', 'length' => 10]); |
||
1097 | $fromTable->addColumn('unquoted3', 'string', ['comment' => 'Unquoted 3', 'length' => 10]); |
||
1098 | |||
1099 | $fromTable->addColumn('create', 'string', ['comment' => 'Reserved keyword 1', 'length' => 10]); |
||
1100 | $fromTable->addColumn('table', 'string', ['comment' => 'Reserved keyword 2', 'length' => 10]); |
||
1101 | $fromTable->addColumn('select', 'string', ['comment' => 'Reserved keyword 3', 'length' => 10]); |
||
1102 | |||
1103 | $toTable = new Table('mytable'); |
||
1104 | |||
1105 | $toTable->addColumn('unquoted1', 'string', ['comment' => 'Unquoted 1', 'length' => 255]); |
||
1106 | $toTable->addColumn('unquoted2', 'string', ['comment' => 'Unquoted 2', 'length' => 255]); |
||
1107 | $toTable->addColumn('unquoted3', 'string', ['comment' => 'Unquoted 3', 'length' => 255]); |
||
1108 | |||
1109 | $toTable->addColumn('create', 'string', ['comment' => 'Reserved keyword 1', 'length' => 255]); |
||
1110 | $toTable->addColumn('table', 'string', ['comment' => 'Reserved keyword 2', 'length' => 255]); |
||
1111 | $toTable->addColumn('select', 'string', ['comment' => 'Reserved keyword 3', 'length' => 255]); |
||
1112 | |||
1113 | $comparator = new Comparator(); |
||
1114 | |||
1115 | self::assertEquals( |
||
1116 | $this->getQuotedAlterTableChangeColumnLengthSQL(), |
||
1117 | $this->platform->getAlterTableSQL($comparator->diffTable($fromTable, $toTable)) |
||
1118 | ); |
||
1119 | } |
||
1120 | |||
1121 | /** |
||
1122 | * Returns SQL statements for {@link testQuotesAlterTableChangeColumnLength}. |
||
1123 | * |
||
1124 | * @return string[] |
||
1125 | * |
||
1126 | * @group DBAL-835 |
||
1127 | */ |
||
1128 | abstract protected function getQuotedAlterTableChangeColumnLengthSQL() : array; |
||
1129 | |||
1130 | /** |
||
1131 | * @group DBAL-807 |
||
1132 | */ |
||
1133 | public function testAlterTableRenameIndexInSchema() : void |
||
1134 | { |
||
1135 | $tableDiff = new TableDiff('myschema.mytable'); |
||
1136 | $tableDiff->fromTable = new Table('myschema.mytable'); |
||
1137 | $tableDiff->fromTable->addColumn('id', 'integer'); |
||
1138 | $tableDiff->fromTable->setPrimaryKey(['id']); |
||
1139 | $tableDiff->renamedIndexes = [ |
||
1140 | 'idx_foo' => new Index('idx_bar', ['id']), |
||
1141 | ]; |
||
1142 | |||
1143 | self::assertSame( |
||
1144 | $this->getAlterTableRenameIndexInSchemaSQL(), |
||
1145 | $this->platform->getAlterTableSQL($tableDiff) |
||
1146 | ); |
||
1147 | } |
||
1148 | |||
1149 | /** |
||
1150 | * @return string[] |
||
1151 | * |
||
1152 | * @group DBAL-807 |
||
1153 | */ |
||
1154 | protected function getAlterTableRenameIndexInSchemaSQL() : array |
||
1155 | { |
||
1156 | return [ |
||
1157 | 'DROP INDEX idx_foo', |
||
1158 | 'CREATE INDEX idx_bar ON myschema.mytable (id)', |
||
1159 | ]; |
||
1160 | } |
||
1161 | |||
1162 | /** |
||
1163 | * @group DBAL-807 |
||
1164 | */ |
||
1165 | public function testQuotesAlterTableRenameIndexInSchema() : void |
||
1166 | { |
||
1167 | $tableDiff = new TableDiff('`schema`.table'); |
||
1168 | $tableDiff->fromTable = new Table('`schema`.table'); |
||
1169 | $tableDiff->fromTable->addColumn('id', 'integer'); |
||
1170 | $tableDiff->fromTable->setPrimaryKey(['id']); |
||
1171 | $tableDiff->renamedIndexes = [ |
||
1172 | 'create' => new Index('select', ['id']), |
||
1173 | '`foo`' => new Index('`bar`', ['id']), |
||
1174 | ]; |
||
1175 | |||
1176 | self::assertSame( |
||
1177 | $this->getQuotedAlterTableRenameIndexInSchemaSQL(), |
||
1178 | $this->platform->getAlterTableSQL($tableDiff) |
||
1179 | ); |
||
1180 | } |
||
1181 | |||
1182 | /** |
||
1183 | * @return string[] |
||
1184 | * |
||
1185 | * @group DBAL-234 |
||
1186 | */ |
||
1187 | protected function getQuotedAlterTableRenameIndexInSchemaSQL() : array |
||
1188 | { |
||
1189 | return [ |
||
1190 | 'DROP INDEX "schema"."create"', |
||
1191 | 'CREATE INDEX "select" ON "schema"."table" (id)', |
||
1192 | 'DROP INDEX "schema"."foo"', |
||
1193 | 'CREATE INDEX "bar" ON "schema"."table" (id)', |
||
1194 | ]; |
||
1195 | } |
||
1196 | |||
1197 | /** |
||
1198 | * @group DBAL-1237 |
||
1199 | */ |
||
1200 | public function testQuotesDropForeignKeySQL() : void |
||
1201 | { |
||
1202 | if (! $this->platform->supportsForeignKeyConstraints()) { |
||
1203 | $this->markTestSkipped( |
||
1204 | sprintf('%s does not support foreign key constraints.', get_class($this->platform)) |
||
1205 | ); |
||
1206 | } |
||
1207 | |||
1208 | $tableName = 'table'; |
||
1209 | $table = new Table($tableName); |
||
1210 | $foreignKeyName = 'select'; |
||
1211 | $foreignKey = new ForeignKeyConstraint([], 'foo', [], 'select'); |
||
1212 | $expectedSql = $this->getQuotesDropForeignKeySQL(); |
||
1213 | |||
1214 | self::assertSame($expectedSql, $this->platform->getDropForeignKeySQL($foreignKeyName, $tableName)); |
||
1215 | self::assertSame($expectedSql, $this->platform->getDropForeignKeySQL($foreignKey, $table)); |
||
1216 | } |
||
1217 | |||
1218 | protected function getQuotesDropForeignKeySQL() : string |
||
1219 | { |
||
1220 | return 'ALTER TABLE "table" DROP FOREIGN KEY "select"'; |
||
1221 | } |
||
1222 | |||
1223 | /** |
||
1224 | * @group DBAL-1237 |
||
1225 | */ |
||
1226 | public function testQuotesDropConstraintSQL() : void |
||
1227 | { |
||
1228 | $tableName = 'table'; |
||
1229 | $table = new Table($tableName); |
||
1230 | $constraintName = 'select'; |
||
1231 | $constraint = new ForeignKeyConstraint([], 'foo', [], 'select'); |
||
1232 | $expectedSql = $this->getQuotesDropConstraintSQL(); |
||
1233 | |||
1234 | self::assertSame($expectedSql, $this->platform->getDropConstraintSQL($constraintName, $tableName)); |
||
1235 | self::assertSame($expectedSql, $this->platform->getDropConstraintSQL($constraint, $table)); |
||
1236 | } |
||
1237 | |||
1238 | protected function getQuotesDropConstraintSQL() : string |
||
1239 | { |
||
1240 | return 'ALTER TABLE "table" DROP CONSTRAINT "select"'; |
||
1241 | } |
||
1242 | |||
1243 | protected function getStringLiteralQuoteCharacter() : string |
||
1244 | { |
||
1245 | return "'"; |
||
1246 | } |
||
1247 | |||
1248 | public function testGetStringLiteralQuoteCharacter() : void |
||
1249 | { |
||
1250 | self::assertSame($this->getStringLiteralQuoteCharacter(), $this->platform->getStringLiteralQuoteCharacter()); |
||
1251 | } |
||
1252 | |||
1253 | protected function getQuotedCommentOnColumnSQLWithoutQuoteCharacter() : string |
||
1254 | { |
||
1255 | return "COMMENT ON COLUMN mytable.id IS 'This is a comment'"; |
||
1256 | } |
||
1257 | |||
1258 | public function testGetCommentOnColumnSQLWithoutQuoteCharacter() : void |
||
1259 | { |
||
1260 | self::assertEquals( |
||
1261 | $this->getQuotedCommentOnColumnSQLWithoutQuoteCharacter(), |
||
1262 | $this->platform->getCommentOnColumnSQL('mytable', 'id', 'This is a comment') |
||
1263 | ); |
||
1264 | } |
||
1265 | |||
1266 | protected function getQuotedCommentOnColumnSQLWithQuoteCharacter() : string |
||
1267 | { |
||
1268 | return "COMMENT ON COLUMN mytable.id IS 'It''s a quote !'"; |
||
1269 | } |
||
1270 | |||
1271 | public function testGetCommentOnColumnSQLWithQuoteCharacter() : void |
||
1272 | { |
||
1273 | $c = $this->getStringLiteralQuoteCharacter(); |
||
1274 | |||
1275 | self::assertEquals( |
||
1276 | $this->getQuotedCommentOnColumnSQLWithQuoteCharacter(), |
||
1277 | $this->platform->getCommentOnColumnSQL('mytable', 'id', 'It' . $c . 's a quote !') |
||
1278 | ); |
||
1279 | } |
||
1280 | |||
1281 | /** |
||
1282 | * @see testGetCommentOnColumnSQL |
||
1283 | * |
||
1284 | * @return string[] |
||
1285 | */ |
||
1286 | abstract protected function getCommentOnColumnSQL() : array; |
||
1287 | |||
1288 | /** |
||
1289 | * @group DBAL-1004 |
||
1290 | */ |
||
1291 | public function testGetCommentOnColumnSQL() : void |
||
1292 | { |
||
1293 | self::assertSame( |
||
1294 | $this->getCommentOnColumnSQL(), |
||
1295 | [ |
||
1296 | $this->platform->getCommentOnColumnSQL('foo', 'bar', 'comment'), // regular identifiers |
||
1297 | $this->platform->getCommentOnColumnSQL('`Foo`', '`BAR`', 'comment'), // explicitly quoted identifiers |
||
1298 | $this->platform->getCommentOnColumnSQL('select', 'from', 'comment'), // reserved keyword identifiers |
||
1299 | ] |
||
1300 | ); |
||
1301 | } |
||
1302 | |||
1303 | /** |
||
1304 | * @group DBAL-1176 |
||
1305 | * @dataProvider getGeneratesInlineColumnCommentSQL |
||
1306 | */ |
||
1307 | public function testGeneratesInlineColumnCommentSQL(?string $comment, string $expectedSql) : void |
||
1308 | { |
||
1309 | if (! $this->platform->supportsInlineColumnComments()) { |
||
1310 | $this->markTestSkipped(sprintf('%s does not support inline column comments.', get_class($this->platform))); |
||
1311 | } |
||
1312 | |||
1313 | self::assertSame($expectedSql, $this->platform->getInlineColumnCommentSQL($comment)); |
||
1314 | } |
||
1315 | |||
1316 | /** |
||
1317 | * @return mixed[][] |
||
1318 | */ |
||
1319 | public static function getGeneratesInlineColumnCommentSQL() : iterable |
||
1320 | { |
||
1321 | return [ |
||
1322 | 'regular comment' => ['Regular comment', static::getInlineColumnRegularCommentSQL()], |
||
1323 | 'comment requiring escaping' => [ |
||
1324 | sprintf( |
||
1325 | 'Using inline comment delimiter %s works', |
||
1326 | static::getInlineColumnCommentDelimiter() |
||
1327 | ), |
||
1328 | static::getInlineColumnCommentRequiringEscapingSQL(), |
||
1329 | ], |
||
1330 | 'empty comment' => ['', static::getInlineColumnEmptyCommentSQL()], |
||
1331 | ]; |
||
1332 | } |
||
1333 | |||
1334 | protected static function getInlineColumnCommentDelimiter() : string |
||
1335 | { |
||
1336 | return "'"; |
||
1337 | } |
||
1338 | |||
1339 | protected static function getInlineColumnRegularCommentSQL() : string |
||
1340 | { |
||
1341 | return "COMMENT 'Regular comment'"; |
||
1342 | } |
||
1343 | |||
1344 | protected static function getInlineColumnCommentRequiringEscapingSQL() : string |
||
1345 | { |
||
1346 | return "COMMENT 'Using inline comment delimiter '' works'"; |
||
1347 | } |
||
1348 | |||
1349 | protected static function getInlineColumnEmptyCommentSQL() : string |
||
1350 | { |
||
1351 | return "COMMENT ''"; |
||
1352 | } |
||
1353 | |||
1354 | protected function getQuotedStringLiteralWithoutQuoteCharacter() : string |
||
1355 | { |
||
1356 | return "'No quote'"; |
||
1357 | } |
||
1358 | |||
1359 | protected function getQuotedStringLiteralWithQuoteCharacter() : string |
||
1360 | { |
||
1361 | return "'It''s a quote'"; |
||
1362 | } |
||
1363 | |||
1364 | protected function getQuotedStringLiteralQuoteCharacter() : string |
||
1365 | { |
||
1366 | return "''''"; |
||
1367 | } |
||
1368 | |||
1369 | /** |
||
1370 | * @group DBAL-1176 |
||
1371 | */ |
||
1372 | public function testThrowsExceptionOnGeneratingInlineColumnCommentSQLIfUnsupported() : void |
||
1373 | { |
||
1374 | if ($this->platform->supportsInlineColumnComments()) { |
||
1375 | $this->markTestSkipped(sprintf('%s supports inline column comments.', get_class($this->platform))); |
||
1376 | } |
||
1377 | |||
1378 | $this->expectException(DBALException::class); |
||
1379 | $this->expectExceptionMessage('Operation "Doctrine\\DBAL\\Platforms\\AbstractPlatform::getInlineColumnCommentSQL" is not supported by platform.'); |
||
1380 | $this->expectExceptionCode(0); |
||
1381 | |||
1382 | $this->platform->getInlineColumnCommentSQL('unsupported'); |
||
1383 | } |
||
1384 | |||
1385 | public function testQuoteStringLiteral() : void |
||
1386 | { |
||
1387 | $c = $this->getStringLiteralQuoteCharacter(); |
||
1388 | |||
1389 | self::assertEquals( |
||
1390 | $this->getQuotedStringLiteralWithoutQuoteCharacter(), |
||
1391 | $this->platform->quoteStringLiteral('No quote') |
||
1392 | ); |
||
1393 | self::assertEquals( |
||
1394 | $this->getQuotedStringLiteralWithQuoteCharacter(), |
||
1395 | $this->platform->quoteStringLiteral('It' . $c . 's a quote') |
||
1396 | ); |
||
1397 | self::assertEquals( |
||
1398 | $this->getQuotedStringLiteralQuoteCharacter(), |
||
1399 | $this->platform->quoteStringLiteral($c) |
||
1400 | ); |
||
1401 | } |
||
1402 | |||
1403 | /** |
||
1404 | * @group DBAL-423 |
||
1405 | */ |
||
1406 | public function testReturnsGuidTypeDeclarationSQL() : void |
||
1407 | { |
||
1408 | $this->expectException(DBALException::class); |
||
1409 | |||
1410 | $this->platform->getGuidTypeDeclarationSQL([]); |
||
1411 | } |
||
1412 | |||
1413 | /** |
||
1414 | * @group DBAL-1010 |
||
1415 | */ |
||
1416 | public function testGeneratesAlterTableRenameColumnSQL() : void |
||
1417 | { |
||
1418 | $table = new Table('foo'); |
||
1419 | $table->addColumn( |
||
1420 | 'bar', |
||
1421 | 'integer', |
||
1422 | ['notnull' => true, 'default' => 666, 'comment' => 'rename test'] |
||
1423 | ); |
||
1424 | |||
1425 | $tableDiff = new TableDiff('foo'); |
||
1426 | $tableDiff->fromTable = $table; |
||
1427 | $tableDiff->renamedColumns['bar'] = new Column( |
||
1428 | 'baz', |
||
1429 | Type::getType('integer'), |
||
1430 | ['notnull' => true, 'default' => 666, 'comment' => 'rename test'] |
||
1431 | ); |
||
1432 | |||
1433 | self::assertSame($this->getAlterTableRenameColumnSQL(), $this->platform->getAlterTableSQL($tableDiff)); |
||
1434 | } |
||
1435 | |||
1436 | /** |
||
1437 | * @return string[] |
||
1438 | */ |
||
1439 | abstract public function getAlterTableRenameColumnSQL() : array; |
||
1440 | |||
1441 | /** |
||
1442 | * @group DBAL-1016 |
||
1443 | */ |
||
1444 | public function testQuotesTableIdentifiersInAlterTableSQL() : void |
||
1445 | { |
||
1446 | $table = new Table('"foo"'); |
||
1447 | $table->addColumn('id', 'integer'); |
||
1448 | $table->addColumn('fk', 'integer'); |
||
1449 | $table->addColumn('fk2', 'integer'); |
||
1450 | $table->addColumn('fk3', 'integer'); |
||
1451 | $table->addColumn('bar', 'integer'); |
||
1452 | $table->addColumn('baz', 'integer'); |
||
1453 | $table->addForeignKeyConstraint('fk_table', ['fk'], ['id'], [], 'fk1'); |
||
1454 | $table->addForeignKeyConstraint('fk_table', ['fk2'], ['id'], [], 'fk2'); |
||
1455 | |||
1456 | $tableDiff = new TableDiff('"foo"'); |
||
1457 | $tableDiff->fromTable = $table; |
||
1458 | $tableDiff->newName = 'table'; |
||
1459 | $tableDiff->addedColumns['bloo'] = new Column('bloo', Type::getType('integer')); |
||
1460 | $tableDiff->changedColumns['bar'] = new ColumnDiff( |
||
1461 | 'bar', |
||
1462 | new Column('bar', Type::getType('integer'), ['notnull' => false]), |
||
1463 | ['notnull'], |
||
1464 | $table->getColumn('bar') |
||
1465 | ); |
||
1466 | $tableDiff->renamedColumns['id'] = new Column('war', Type::getType('integer')); |
||
1467 | $tableDiff->removedColumns['baz'] = new Column('baz', Type::getType('integer')); |
||
1468 | $tableDiff->addedForeignKeys[] = new ForeignKeyConstraint(['fk3'], 'fk_table', ['id'], 'fk_add'); |
||
1469 | $tableDiff->changedForeignKeys[] = new ForeignKeyConstraint(['fk2'], 'fk_table2', ['id'], 'fk2'); |
||
1470 | $tableDiff->removedForeignKeys[] = new ForeignKeyConstraint(['fk'], 'fk_table', ['id'], 'fk1'); |
||
1471 | |||
1472 | self::assertSame( |
||
1473 | $this->getQuotesTableIdentifiersInAlterTableSQL(), |
||
1474 | $this->platform->getAlterTableSQL($tableDiff) |
||
1475 | ); |
||
1476 | } |
||
1477 | |||
1478 | /** |
||
1479 | * @return string[] |
||
1480 | */ |
||
1481 | abstract protected function getQuotesTableIdentifiersInAlterTableSQL() : array; |
||
1482 | |||
1483 | /** |
||
1484 | * @group DBAL-1090 |
||
1485 | */ |
||
1486 | public function testAlterStringToFixedString() : void |
||
1487 | { |
||
1488 | $table = new Table('mytable'); |
||
1489 | $table->addColumn('name', 'string', ['length' => 2]); |
||
1490 | |||
1491 | $tableDiff = new TableDiff('mytable'); |
||
1492 | $tableDiff->fromTable = $table; |
||
1493 | |||
1494 | $tableDiff->changedColumns['name'] = new ColumnDiff( |
||
1495 | 'name', |
||
1496 | new Column( |
||
1497 | 'name', |
||
1498 | Type::getType('string'), |
||
1499 | ['fixed' => true, 'length' => 2] |
||
1500 | ), |
||
1501 | ['fixed'] |
||
1502 | ); |
||
1503 | |||
1504 | $sql = $this->platform->getAlterTableSQL($tableDiff); |
||
1505 | |||
1506 | $expectedSql = $this->getAlterStringToFixedStringSQL(); |
||
1507 | |||
1508 | self::assertEquals($expectedSql, $sql); |
||
1509 | } |
||
1510 | |||
1511 | /** |
||
1512 | * @return string[] |
||
1513 | */ |
||
1514 | abstract protected function getAlterStringToFixedStringSQL() : array; |
||
1515 | |||
1516 | /** |
||
1517 | * @group DBAL-1062 |
||
1518 | */ |
||
1519 | public function testGeneratesAlterTableRenameIndexUsedByForeignKeySQL() : void |
||
1541 | ); |
||
1542 | } |
||
1543 | |||
1544 | /** |
||
1545 | * @return string[] |
||
1546 | */ |
||
1547 | abstract protected function getGeneratesAlterTableRenameIndexUsedByForeignKeySQL() : array; |
||
1548 | |||
1549 | /** |
||
1550 | * @param mixed[] $column |
||
1551 | * |
||
1552 | * @group DBAL-1082 |
||
1553 | * @dataProvider getGeneratesDecimalTypeDeclarationSQL |
||
1554 | */ |
||
1555 | public function testGeneratesDecimalTypeDeclarationSQL(array $column, string $expectedSql) : void |
||
1558 | } |
||
1559 | |||
1560 | /** |
||
1561 | * @return mixed[][] |
||
1562 | */ |
||
1563 | public static function getGeneratesDecimalTypeDeclarationSQL() : iterable |
||
1564 | { |
||
1565 | return [ |
||
1566 | [[], 'NUMERIC(10, 0)'], |
||
1567 | [['unsigned' => true], 'NUMERIC(10, 0)'], |
||
1568 | [['unsigned' => false], 'NUMERIC(10, 0)'], |
||
1569 | [['precision' => 5], 'NUMERIC(5, 0)'], |
||
1570 | [['scale' => 5], 'NUMERIC(10, 5)'], |
||
1571 | [['precision' => 8, 'scale' => 2], 'NUMERIC(8, 2)'], |
||
1572 | ]; |
||
1573 | } |
||
1574 | |||
1575 | /** |
||
1576 | * @param mixed[] $column |
||
1577 | * |
||
1578 | * @group DBAL-1082 |
||
1579 | * @dataProvider getGeneratesFloatDeclarationSQL |
||
1580 | */ |
||
1581 | public function testGeneratesFloatDeclarationSQL(array $column, string $expectedSql) : void |
||
1582 | { |
||
1583 | self::assertSame($expectedSql, $this->platform->getFloatDeclarationSQL($column)); |
||
1584 | } |
||
1585 | |||
1586 | /** |
||
1587 | * @return mixed[][] |
||
1588 | */ |
||
1589 | public static function getGeneratesFloatDeclarationSQL() : iterable |
||
1590 | { |
||
1591 | return [ |
||
1592 | [[], 'DOUBLE PRECISION'], |
||
1593 | [['unsigned' => true], 'DOUBLE PRECISION'], |
||
1594 | [['unsigned' => false], 'DOUBLE PRECISION'], |
||
1595 | [['precision' => 5], 'DOUBLE PRECISION'], |
||
1596 | [['scale' => 5], 'DOUBLE PRECISION'], |
||
1597 | [['precision' => 8, 'scale' => 2], 'DOUBLE PRECISION'], |
||
1598 | ]; |
||
1599 | } |
||
1600 | |||
1601 | public function testItEscapesStringsForLike() : void |
||
1602 | { |
||
1603 | self::assertSame( |
||
1604 | '\_25\% off\_ your next purchase \\\\o/', |
||
1605 | $this->platform->escapeStringForLike('_25% off_ your next purchase \o/', '\\') |
||
1606 | ); |
||
1607 | } |
||
1608 | |||
1609 | public function testZeroOffsetWithoutLimitIsIgnored() : void |
||
1616 | ); |
||
1617 | } |
||
1618 | } |
||
1619 |