[DDC-1766] Add test with explicit cache key.
This commit is contained in:
parent
864fbbdaaf
commit
fd2a22bd56
1 changed files with 13 additions and 3 deletions
|
@ -32,31 +32,41 @@ class HydrationCacheTest extends OrmFunctionalTestCase
|
||||||
|
|
||||||
|
|
||||||
$dql = "SELECT u FROM Doctrine\Tests\Models\Cms\CmsUser u";
|
$dql = "SELECT u FROM Doctrine\Tests\Models\Cms\CmsUser u";
|
||||||
|
|
||||||
$users = $this->_em->createQuery($dql)
|
$users = $this->_em->createQuery($dql)
|
||||||
->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache))
|
->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache))
|
||||||
->getResult();
|
->getResult();
|
||||||
|
|
||||||
$c = $this->getCurrentQueryCount();
|
$c = $this->getCurrentQueryCount();
|
||||||
$dql = "SELECT u FROM Doctrine\Tests\Models\Cms\CmsUser u";
|
|
||||||
$users = $this->_em->createQuery($dql)
|
$users = $this->_em->createQuery($dql)
|
||||||
->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache))
|
->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache))
|
||||||
->getResult();
|
->getResult();
|
||||||
|
|
||||||
$this->assertEquals($c, $this->getCurrentQueryCount(), "Should not execute query. Its cached!");
|
$this->assertEquals($c, $this->getCurrentQueryCount(), "Should not execute query. Its cached!");
|
||||||
|
|
||||||
$dql = "SELECT u FROM Doctrine\Tests\Models\Cms\CmsUser u";
|
|
||||||
$users = $this->_em->createQuery($dql)
|
$users = $this->_em->createQuery($dql)
|
||||||
->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache))
|
->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache))
|
||||||
->getArrayResult();
|
->getArrayResult();
|
||||||
|
|
||||||
$this->assertEquals($c + 1, $this->getCurrentQueryCount(), "Hydration is part of cache key.");
|
$this->assertEquals($c + 1, $this->getCurrentQueryCount(), "Hydration is part of cache key.");
|
||||||
|
|
||||||
$dql = "SELECT u FROM Doctrine\Tests\Models\Cms\CmsUser u";
|
|
||||||
$users = $this->_em->createQuery($dql)
|
$users = $this->_em->createQuery($dql)
|
||||||
->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache))
|
->setHydrationCacheProfile(new QueryCacheProfile(null, null, $cache))
|
||||||
->getArrayResult();
|
->getArrayResult();
|
||||||
|
|
||||||
$this->assertEquals($c + 1, $this->getCurrentQueryCount(), "Hydration now cached");
|
$this->assertEquals($c + 1, $this->getCurrentQueryCount(), "Hydration now cached");
|
||||||
|
|
||||||
|
$users = $this->_em->createQuery($dql)
|
||||||
|
->setHydrationCacheProfile(new QueryCacheProfile(null, 'cachekey', $cache))
|
||||||
|
->getArrayResult();
|
||||||
|
|
||||||
|
$this->assertTrue($cache->contains('cachekey'), 'Explicit cache key');
|
||||||
|
|
||||||
|
$users = $this->_em->createQuery($dql)
|
||||||
|
->setHydrationCacheProfile(new QueryCacheProfile(null, 'cachekey', $cache))
|
||||||
|
->getArrayResult();
|
||||||
|
$this->assertEquals($c + 2, $this->getCurrentQueryCount(), "Hydration now cached");
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue