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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM;
use Doctrine\Common\Cache\Psr6\CacheAdapter;
use Doctrine\DBAL\Cache\QueryCacheProfile;
use Doctrine\Deprecations\PHPUnit\VerifyDeprecations;
use Doctrine\ORM\AbstractQuery;
use Doctrine\ORM\Configuration;
use Doctrine\ORM\EntityManagerInterface;
use PHPUnit\Framework\TestCase;
use Psr\Cache\CacheItemPoolInterface;
use stdClass;
final class AbstractQueryTest extends TestCase
{
use VerifyDeprecations;
/**
* @requires function Doctrine\DBAL\Cache\QueryCacheProfile::getResultCacheDriver
*/
public function testItMakesHydrationCacheProfilesAwareOfTheResultCacheDriver(): void
{
$cache = $this->createMock(CacheItemPoolInterface::class);
$configuration = new Configuration();
$configuration->setHydrationCache($cache);
$entityManager = $this->createMock(EntityManagerInterface::class);
$entityManager->method('getConfiguration')->willReturn($configuration);
$query = $this->getMockForAbstractClass(AbstractQuery::class, [$entityManager]);
$cacheProfile = new QueryCacheProfile();
$query->setHydrationCacheProfile($cacheProfile);
self::assertSame($cache, CacheAdapter::wrap($query->getHydrationCacheProfile()->getResultCacheDriver()));
}
/**
* @requires function Doctrine\DBAL\Cache\QueryCacheProfile::getResultCache
*/
public function testItMakesHydrationCacheProfilesAwareOfTheResultCache(): void
{
$cache = $this->createMock(CacheItemPoolInterface::class);
$configuration = new Configuration();
$configuration->setHydrationCache($cache);
$entityManager = $this->createMock(EntityManagerInterface::class);
$entityManager->method('getConfiguration')->willReturn($configuration);
$query = $this->getMockForAbstractClass(AbstractQuery::class, [$entityManager]);
$cacheProfile = new QueryCacheProfile();
$query->setHydrationCacheProfile($cacheProfile);
self::assertSame($cache, $query->getHydrationCacheProfile()->getResultCache());
$this->expectNoDeprecationWithIdentifier('https://github.com/doctrine/dbal/pull/4620');
}
public function testItMakesResultCacheProfilesAwareOfTheResultCache(): void
{
$cache = $this->createMock(CacheItemPoolInterface::class);
$configuration = new Configuration();
$configuration->setResultCache($cache);
$entityManager = $this->createMock(EntityManagerInterface::class);
$entityManager->method('getConfiguration')->willReturn($configuration);
$query = $this->getMockForAbstractClass(AbstractQuery::class, [$entityManager]);
$cacheProfile = new QueryCacheProfile();
$query->setResultCacheProfile($cacheProfile);
self::assertSame($cache, CacheAdapter::wrap($query->getResultCacheDriver()));
$this->expectNoDeprecationWithIdentifier('https://github.com/doctrine/dbal/pull/4620');
}
/** @dataProvider provideSettersWithDeprecatedDefault */
public function testCallingSettersWithoutArgumentsIsDeprecated(string $setter): void
{
$entityManager = $this->createMock(EntityManagerInterface::class);
$entityManager->method('getConfiguration')->willReturn(new Configuration());
$query = $this->getMockForAbstractClass(AbstractQuery::class, [$entityManager]);
$this->expectDeprecationWithIdentifier('https://github.com/doctrine/orm/pull/9791');
$query->$setter();
}
/** @return array<string, array{string}> */
public function provideSettersWithDeprecatedDefault(): array
{
return [
'setHydrationCacheProfile' => ['setHydrationCacheProfile'],
'setResultCache' => ['setResultCache'],
'setResultCacheProfile' => ['setResultCacheProfile'],
];
}
public function testSettingTheResultCacheIsPossibleWithoutCallingDeprecatedMethods(): void
{
$cache = $this->createMock(CacheItemPoolInterface::class);
$entityManager = $this->createMock(EntityManagerInterface::class);
$entityManager->method('getConfiguration')->willReturn(new Configuration());
$query = $this->getMockForAbstractClass(AbstractQuery::class, [$entityManager]);
$query->setResultCache($cache);
self::assertSame($cache, CacheAdapter::wrap($query->getResultCacheDriver()));
$this->expectNoDeprecationWithIdentifier('https://github.com/doctrine/dbal/pull/4620');
}
public function testSettingTheFetchModeToRandomIntegersIsDeprecated(): void
{
$query = $this->getMockForAbstractClass(
AbstractQuery::class,
[],
'',
false // no need to call the constructor
);
$this->expectDeprecationWithIdentifier('https://github.com/doctrine/orm/pull/9777');
$query->setFetchMode(stdClass::class, 'foo', 42);
}
}
|