| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <?php
- declare(strict_types=1);
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\ORM;
- use Cake\ORM\Entity;
- use Cake\TestSuite\TestCase;
- use Cake\Utility\Text;
- /**
- * Integration tests for Table class with uuid primary keys.
- */
- class TableUuidTest extends TestCase
- {
- /**
- * Fixtures
- *
- * @var array<string>
- */
- protected array $fixtures = [
- 'core.BinaryUuidItems',
- 'core.UuidItems',
- ];
- /**
- * setup
- */
- public function setUp(): void
- {
- parent::setUp();
- static::setAppNamespace();
- }
- /**
- * Provider for testing that string and binary uuids work the same
- *
- * @return array
- */
- public function uuidTableProvider(): array
- {
- return [['uuid_items'], ['binary_uuid_items']];
- }
- /**
- * Test saving new records sets uuids
- *
- * @dataProvider uuidTableProvider
- */
- public function testSaveNew(string $tableName): void
- {
- $entity = new Entity([
- 'name' => 'shiny new',
- 'published' => true,
- ]);
- $table = $this->getTableLocator()->get($tableName);
- $this->assertSame($entity, $table->save($entity));
- $this->assertMatchesRegularExpression('/^[a-f0-9-]{36}$/', $entity->id, 'Should be 36 characters');
- $row = $table->find('all')->where(['id' => $entity->id])->first();
- $row->id = strtolower($row->id);
- $this->assertEquals($entity->toArray(), $row->toArray());
- }
- /**
- * Test saving new records allows manual uuids
- *
- * @dataProvider uuidTableProvider
- */
- public function testSaveNewSpecificId(string $tableName): void
- {
- $id = Text::uuid();
- $entity = new Entity([
- 'id' => $id,
- 'name' => 'shiny and new',
- 'published' => true,
- ]);
- $table = $this->getTableLocator()->get($tableName);
- $this->assertSame($entity, $table->save($entity));
- $this->assertSame($id, $entity->id);
- $row = $table->find('all')->where(['id' => $id])->first();
- $this->assertNotEmpty($row);
- $this->assertSame($id, strtolower($row->id));
- $this->assertSame($entity->name, $row->name);
- }
- /**
- * Test saving existing records works
- *
- * @dataProvider uuidTableProvider
- */
- public function testSaveUpdate(string $tableName): void
- {
- $id = '481fc6d0-b920-43e0-a40d-6d1740cf8569';
- $entity = new Entity([
- 'id' => $id,
- 'name' => 'shiny update',
- 'published' => true,
- ]);
- $table = $this->getTableLocator()->get($tableName);
- $this->assertSame($entity, $table->save($entity));
- $this->assertSame($id, $entity->id, 'Should be 36 characters');
- $row = $table->find('all')->where(['id' => $entity->id])->first();
- $row->id = strtolower($row->id);
- $this->assertEquals($entity->toArray(), $row->toArray());
- }
- /**
- * Test delete with string pk.
- *
- * @dataProvider uuidTableProvider
- */
- public function testGetById(string $tableName): void
- {
- $table = $this->getTableLocator()->get($tableName);
- $entity = $table->find('all')->firstOrFail();
- $result = $table->get($entity->id);
- $this->assertSame($result->id, $entity->id);
- }
- /**
- * Test delete with string pk.
- *
- * @dataProvider uuidTableProvider
- */
- public function testDelete(string $tableName): void
- {
- $table = $this->getTableLocator()->get($tableName);
- $entity = $table->find('all')->firstOrFail();
- $this->assertTrue($table->delete($entity));
- $query = $table->find('all')->where(['id' => $entity->id]);
- $this->assertEmpty($query->first(), 'No row left');
- }
- /**
- * Tests that sql server does not error when an empty uuid is bound
- *
- * @dataProvider uuidTableProvider
- */
- public function testEmptyUuid(string $tableName): void
- {
- $id = '';
- $table = $this->getTableLocator()->get($tableName);
- $entity = $table->find('all')
- ->where(['id' => $id])
- ->first();
- $this->assertNull($entity);
- }
- }
|