* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Cache\Tests\Adapter; use Symfony\Component\Cache\Adapter\PdoAdapter; use Symfony\Component\Cache\Tests\Traits\PdoPruneableTrait; /** * @group time-sensitive */ class PdoAdapterTest extends AdapterTestCase { use PdoPruneableTrait; protected static $dbFile; public static function setupBeforeClass() { if (!extension_loaded('pdo_sqlite')) { self::markTestSkipped('Extension pdo_sqlite required.'); } self::$dbFile = tempnam(sys_get_temp_dir(), 'sf_sqlite_cache'); $pool = new PdoAdapter('sqlite:'.self::$dbFile); $pool->createTable(); } public static function tearDownAfterClass() { @unlink(self::$dbFile); } public function createCachePool($defaultLifetime = 0) { return new PdoAdapter('sqlite:'.self::$dbFile, 'ns', $defaultLifetime); } public function testCleanupExpiredItems() { $pdo = new \PDO('sqlite:'.self::$dbFile); $getCacheItemCount = function () use ($pdo) { return (int) $pdo->query('SELECT COUNT(*) FROM cache_items')->fetch(\PDO::FETCH_COLUMN); }; $this->assertSame(0, $getCacheItemCount()); $cache = $this->createCachePool(); $item = $cache->getItem('some_nice_key'); $item->expiresAfter(1); $item->set(1); $cache->save($item); $this->assertSame(1, $getCacheItemCount()); sleep(2); $newItem = $cache->getItem($item->getKey()); $this->assertFalse($newItem->isHit()); $this->assertSame(0, $getCacheItemCount(), 'PDOAdapter must clean up expired items'); } } __halt_compiler();----SIGNATURE:----v0BekMW484ZRfBhq3fnny4MZzguY0Hn8yEzbUimEsUQcWZiuOqWy5m1W0mA4y7YMB6SQosfH9r2Bjh186orRDYHHt5/SYOg8pZPjKjNhGviKXc8upZgWeJqQ3CorUWokTPgy14dg6YoT7x1OLT/+B9gs+nYb9nMTDA0dXoabFUsVsRGy6mh5v9lwmzVqUCrcd09EwuHuhE46MisRDHLl0EK0fbhA0jbfbDLsV+cYLr8nf1xDTdxBKUguJ8K6rCcStbpWsEbF5wVsh7K/jJfpoI+XFnrp/NFnnA2CjUZAOlV7BKzrvzkUrRVq5CALediZ8pktXfL3UodAYUT0WRToIIdBKtSbkYu9nH29QVLjPN0bfvQvupO0nNmsVcz9fevFwpok/ISxiZQHY4kDedBxarrdnvjyH3+W8e8ZjtLR2UJk6Z+Qxarm+1HcmDPEejvuwEYF63L+JNMQcmydvl9O8YLpQxMQHV/QK0yU8fztbbs1H5tCDZd34Ns6IUE+Xsg3PQ0A5IJSprhha7pGkKeEhvEXPd/qx3HOOn64KSd3WydMguTQB98J+iiwy+4GBDwGoOTKCZNkKIXLJSv3OJ4yFU4meL8Qcm9rfvwFSNYMGrOQPTvvfccJBaHipejeuoTZm9lQ6AHZWHX522jmm4kU136Z4uYkWIU7v5WPVI/4S2M=----ATTACHMENT:----MTQzOTYxNTgxNzE5Nzk1MyA5NDIyNzQ3NTA5MjczNjIxIDM0MTI2MDkxNTAzNDE1OTA=