2007-01-30 00:37:51 +03:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
|
|
|
* and is licensed under the LGPL. For more information, see
|
|
|
|
* <http://www.phpdoctrine.com>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Doctrine_Cache_TestCase
|
|
|
|
*
|
|
|
|
* @package Doctrine
|
|
|
|
* @subpackage Doctrine_Cache
|
|
|
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @category Object Relational Mapping
|
|
|
|
* @link www.phpdoctrine.com
|
|
|
|
* @since 1.0
|
|
|
|
* @version $Revision$
|
|
|
|
*/
|
2007-02-02 01:46:59 +03:00
|
|
|
class Doctrine_Cache_TestCase extends Doctrine_UnitTestCase
|
2007-01-30 00:37:51 +03:00
|
|
|
{
|
2007-02-02 01:46:59 +03:00
|
|
|
protected $cache;
|
2007-01-30 00:37:51 +03:00
|
|
|
|
2007-02-02 01:46:59 +03:00
|
|
|
public function prepareTables()
|
|
|
|
{ }
|
|
|
|
public function prepareData()
|
|
|
|
{ }
|
2007-02-05 15:04:56 +03:00
|
|
|
/**
|
2007-02-02 01:46:59 +03:00
|
|
|
public function testAdapterQueryAddsQueriesToCacheStack()
|
|
|
|
{
|
|
|
|
$this->dbh->query('SELECT * FROM user');
|
|
|
|
|
|
|
|
$this->assertEqual($this->cache->getAll(), array('main' => array('SELECT * FROM user')));
|
|
|
|
}
|
2007-02-05 15:04:56 +03:00
|
|
|
*/
|
|
|
|
public function testAdapterQueryChecksCache()
|
|
|
|
{
|
2007-09-03 18:57:18 +04:00
|
|
|
$query = 'SELECT * FROM user';
|
2007-02-05 15:04:56 +03:00
|
|
|
|
|
|
|
$resultSet = array(array('name' => 'John'), array('name' => 'Arnold'));
|
|
|
|
|
2007-09-03 18:57:18 +04:00
|
|
|
$this->cache->getDriver()->save(md5(serialize($query)), $resultSet);
|
2007-02-05 15:04:56 +03:00
|
|
|
|
|
|
|
$count = $this->dbh->getAdapter()->count();
|
|
|
|
|
|
|
|
$stmt = $this->dbh->query($query);
|
|
|
|
$data = $stmt->fetchAll(Doctrine::FETCH_ASSOC);
|
|
|
|
|
|
|
|
$this->assertEqual($data, $resultSet);
|
|
|
|
$this->assertEqual($this->dbh->getAdapter()->count(), $count);
|
|
|
|
}
|
|
|
|
public function testAdapterStatementExecuteChecksCache()
|
|
|
|
{
|
2007-09-03 18:57:18 +04:00
|
|
|
$query = 'SELECT * FROM user WHERE id = ?';
|
2007-02-05 15:04:56 +03:00
|
|
|
$params = array(1);
|
|
|
|
$resultSet = array(array('name' => 'John'), array('name' => 'Arnold'));
|
|
|
|
|
2007-09-03 18:57:18 +04:00
|
|
|
$this->cache->getDriver()->save(md5(serialize(array($query, $params))), $resultSet);
|
2007-02-05 15:04:56 +03:00
|
|
|
|
|
|
|
$count = $this->dbh->getAdapter()->count();
|
|
|
|
|
|
|
|
$stmt = $this->dbh->prepare($query);
|
|
|
|
$stmt->execute($params);
|
|
|
|
$data = $stmt->fetchAll(Doctrine::FETCH_ASSOC);
|
|
|
|
|
|
|
|
$this->assertEqual($data, $resultSet);
|
|
|
|
$this->assertEqual($this->dbh->getAdapter()->count(), $count);
|
|
|
|
}
|
2007-02-07 17:16:07 +03:00
|
|
|
public function testFetchAdvancesCacheDataPointer()
|
|
|
|
{
|
|
|
|
$query = 'SELECT * FROM user WHERE id = ?';
|
|
|
|
$count = $this->dbh->getAdapter()->count();
|
|
|
|
$params = array(1);
|
|
|
|
$stmt = $this->dbh->prepare($query);
|
|
|
|
$stmt->execute($params);
|
|
|
|
|
|
|
|
$row1 = $stmt->fetch();
|
|
|
|
$row2 = $stmt->fetch();
|
|
|
|
|
|
|
|
$this->assertEqual($row1, array('name' => 'John'));
|
|
|
|
$this->assertEqual($row2, array('name' => 'Arnold'));
|
|
|
|
|
|
|
|
$this->assertEqual($this->dbh->getAdapter()->count(), $count);
|
|
|
|
}
|
|
|
|
|
2007-02-02 01:46:59 +03:00
|
|
|
public function testAdapterStatementExecuteAddsQueriesToCacheStack()
|
|
|
|
{
|
|
|
|
$stmt = $this->dbh->prepare('SELECT * FROM user');
|
|
|
|
|
|
|
|
$stmt->execute();
|
|
|
|
|
|
|
|
$this->assertEqual($this->cache->getAll(), array('main' => array('SELECT * FROM user')));
|
|
|
|
}
|
2007-02-05 15:04:56 +03:00
|
|
|
public function testAdapterStatementFetchCallsCacheFetch()
|
|
|
|
{
|
|
|
|
$stmt = $this->dbh->prepare('SELECT * FROM user');
|
|
|
|
|
|
|
|
$stmt->execute();
|
|
|
|
|
|
|
|
$a = $stmt->fetchAll();
|
|
|
|
}
|
2007-02-09 23:03:58 +03:00
|
|
|
public function testAdapterStatementExecuteAddsQueriesToCache()
|
|
|
|
{
|
2007-09-03 18:57:18 +04:00
|
|
|
$this->cache->setOption('savePropability', 1);
|
2007-02-09 23:03:58 +03:00
|
|
|
|
2007-09-03 18:57:18 +04:00
|
|
|
$driver = $this->cache->getDriver();
|
2007-02-09 23:03:58 +03:00
|
|
|
|
2007-09-03 18:57:18 +04:00
|
|
|
$driver->deleteAll();
|
2007-02-09 23:03:58 +03:00
|
|
|
|
2007-09-03 18:57:18 +04:00
|
|
|
$this->assertEqual($driver->count(), 0);
|
2007-02-09 23:03:58 +03:00
|
|
|
|
|
|
|
$stmt = $this->dbh->prepare('SELECT * FROM user WHERE id = ?');
|
|
|
|
|
|
|
|
$stmt->execute(array(1));
|
|
|
|
|
|
|
|
$this->assertEqual($driver->count(), 1);
|
|
|
|
}
|
|
|
|
public function testAppendStatsWritesQueriesToStatsFile()
|
|
|
|
{
|
2007-09-03 18:57:18 +04:00
|
|
|
$this->cache->setOption('addStatsPropability', 1);
|
|
|
|
|
|
|
|
$data = array(1,2,3);
|
2007-02-09 23:03:58 +03:00
|
|
|
|
|
|
|
$this->cache->add('SELECT * FROM user');
|
|
|
|
$this->cache->add(array('SELECT * FROM user WHERE id = ?', array(1)));
|
|
|
|
|
|
|
|
$this->cache->appendStats();
|
|
|
|
|
|
|
|
$stats = $this->cache->readStats();
|
|
|
|
|
|
|
|
$this->assertEqual($stats[0], 'SELECT * FROM user');
|
|
|
|
$this->assertEqual($stats[1], array('SELECT * FROM user WHERE id = ?', array(1)));
|
|
|
|
}
|
|
|
|
public function testCleanRemovesDriver()
|
|
|
|
{
|
2007-09-03 18:57:18 +04:00
|
|
|
$this->cache->setOption('cleanPropability', 1);
|
2007-02-09 23:03:58 +03:00
|
|
|
|
|
|
|
$this->cache->add('SELECT * FROM user');
|
|
|
|
$this->cache->add(array('SELECT * FROM user WHERE id = ?', array(1)));
|
|
|
|
|
|
|
|
$this->cache->appendStats();
|
|
|
|
|
|
|
|
$stats = $this->cache->readStats();
|
|
|
|
|
|
|
|
$this->assertEqual($stats[0], 'SELECT * FROM user');
|
|
|
|
$this->assertEqual($stats[1], array('SELECT * FROM user WHERE id = ?', array(1)));
|
|
|
|
}
|
2007-02-07 17:16:07 +03:00
|
|
|
|
2007-02-02 01:46:59 +03:00
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
2007-09-03 18:57:18 +04:00
|
|
|
if ( ! isset($this->cache)) {
|
2007-02-02 01:46:59 +03:00
|
|
|
$this->cache = new Doctrine_Cache('Array');
|
2007-02-07 17:16:07 +03:00
|
|
|
$this->cache->setOption('cacheFile', false);
|
2007-02-09 23:03:58 +03:00
|
|
|
$this->cache->setOption('savePropability', 0);
|
|
|
|
|
2007-02-02 01:46:59 +03:00
|
|
|
$this->dbh->setAdapter(new Doctrine_Adapter_Mock());
|
|
|
|
$this->dbh->addListener($this->cache);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->cache->reset();
|
|
|
|
}
|
2007-01-30 00:37:51 +03:00
|
|
|
}
|