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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Cache;
use Doctrine\Deprecations\PHPUnit\VerifyDeprecations;
use Doctrine\ORM\Cache\CacheKey;
use Doctrine\ORM\Cache\CollectionCacheKey;
use Doctrine\ORM\Cache\EntityCacheKey;
use Doctrine\Tests\DoctrineTestCase;
/** @group DDC-2183 */
class CacheKeyTest extends DoctrineTestCase
{
use VerifyDeprecations;
public function testEntityCacheKeyIdentifierCollision(): void
{
$key1 = new EntityCacheKey('Foo', ['id' => 1]);
$key2 = new EntityCacheKey('Bar', ['id' => 1]);
self::assertNotEquals($key1->hash, $key2->hash);
}
public function testEntityCacheKeyIdentifierType(): void
{
$key1 = new EntityCacheKey('Foo', ['id' => 1]);
$key2 = new EntityCacheKey('Foo', ['id' => '1']);
self::assertEquals($key1->hash, $key2->hash);
}
public function testEntityCacheKeyIdentifierOrder(): void
{
$key1 = new EntityCacheKey('Foo', ['foo_bar' => 1, 'bar_foo' => 2]);
$key2 = new EntityCacheKey('Foo', ['bar_foo' => 2, 'foo_bar' => 1]);
self::assertEquals($key1->hash, $key2->hash);
}
public function testCollectionCacheKeyIdentifierType(): void
{
$key1 = new CollectionCacheKey('Foo', 'assoc', ['id' => 1]);
$key2 = new CollectionCacheKey('Foo', 'assoc', ['id' => '1']);
self::assertEquals($key1->hash, $key2->hash);
}
public function testCollectionCacheKeyIdentifierOrder(): void
{
$key1 = new CollectionCacheKey('Foo', 'assoc', ['foo_bar' => 1, 'bar_foo' => 2]);
$key2 = new CollectionCacheKey('Foo', 'assoc', ['bar_foo' => 2, 'foo_bar' => 1]);
self::assertEquals($key1->hash, $key2->hash);
}
public function testCollectionCacheKeyIdentifierCollision(): void
{
$key1 = new CollectionCacheKey('Foo', 'assoc', ['id' => 1]);
$key2 = new CollectionCacheKey('Bar', 'assoc', ['id' => 1]);
self::assertNotEquals($key1->hash, $key2->hash);
}
public function testCollectionCacheKeyAssociationCollision(): void
{
$key1 = new CollectionCacheKey('Foo', 'assoc1', ['id' => 1]);
$key2 = new CollectionCacheKey('Foo', 'assoc2', ['id' => 1]);
self::assertNotEquals($key1->hash, $key2->hash);
}
public function testConstructor(): void
{
$key = new class ('my-hash') extends CacheKey {
};
self::assertSame('my-hash', $key->hash);
}
public function testDeprecatedConstructor(): void
{
$this->expectDeprecationWithIdentifier('https://github.com/doctrine/orm/pull/10212');
$key = new class extends CacheKey {
public function __construct()
{
$this->hash = 'my-hash';
parent::__construct();
}
};
self::assertSame('my-hash', $key->hash);
}
}
|