1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/tests/ConnectionTestCase.php

250 lines
8.6 KiB
PHP
Raw Normal View History

2006-04-14 00:37:28 +04:00
<?php
2006-12-28 00:20:26 +03:00
/*
* $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_Connection_TestCase
*
* @package Doctrine
* @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-07-06 01:16:28 +04:00
class Doctrine_Connection_TestCase extends Doctrine_UnitTestCase
{
2007-02-17 15:38:02 +03:00
2007-07-06 01:16:28 +04:00
public function testUnknownModule()
{
try {
$this->connection->unknown;
$this->fail();
} catch(Doctrine_Connection_Exception $e) {
$this->pass();
}
}
2007-07-06 01:16:28 +04:00
public function testGetModule()
{
$this->assertTrue($this->connection->unitOfWork instanceof Doctrine_Connection_UnitOfWork);
//$this->assertTrue($this->connection->dataDict instanceof Doctrine_DataDict);
2007-07-06 01:16:28 +04:00
$this->assertTrue($this->connection->expression instanceof Doctrine_Expression_Driver);
$this->assertTrue($this->connection->transaction instanceof Doctrine_Transaction);
$this->assertTrue($this->connection->export instanceof Doctrine_Export);
2006-05-10 22:51:11 +04:00
}
2007-07-06 01:16:28 +04:00
public function testFetchAll()
{
2007-01-15 21:48:50 +03:00
$this->conn->exec('DROP TABLE entity');
$this->conn->exec('CREATE TABLE entity (id INT, name TEXT)');
2007-01-12 14:38:03 +03:00
$this->conn->exec("INSERT INTO entity (id, name) VALUES (1, 'zYne')");
$this->conn->exec("INSERT INTO entity (id, name) VALUES (2, 'John')");
$a = $this->conn->fetchAll('SELECT * FROM entity');
$this->assertEqual($a, array (
0 =>
array (
'id' => '1',
'name' => 'zYne',
),
1 =>
array (
'id' => '2',
'name' => 'John',
),
));
}
2007-07-06 01:16:28 +04:00
public function testFetchOne()
{
2007-01-12 14:38:03 +03:00
$c = $this->conn->fetchOne('SELECT COUNT(1) FROM entity');
$this->assertEqual($c, 2);
$c = $this->conn->fetchOne('SELECT COUNT(1) FROM entity WHERE id = ?', array(1));
$this->assertEqual($c, 1);
}
2007-07-06 01:16:28 +04:00
public function testFetchColumn()
{
2007-01-12 14:38:03 +03:00
$a = $this->conn->fetchColumn('SELECT * FROM entity');
$this->assertEqual($a, array (
0 => '1',
1 => '2',
));
$a = $this->conn->fetchColumn('SELECT * FROM entity WHERE id = ?', array(1));
$this->assertEqual($a, array (
0 => '1',
));
}
2007-07-06 01:16:28 +04:00
public function testFetchArray()
{
2007-01-12 14:38:03 +03:00
$a = $this->conn->fetchArray('SELECT * FROM entity');
$this->assertEqual($a, array (
0 => '1',
1 => 'zYne',
));
$a = $this->conn->fetchArray('SELECT * FROM entity WHERE id = ?', array(1));
$this->assertEqual($a, array (
0 => '1',
1 => 'zYne',
));
}
2007-07-06 01:16:28 +04:00
public function testFetchRow()
{
2007-01-12 14:38:03 +03:00
$c = $this->conn->fetchRow('SELECT * FROM entity');
$this->assertEqual($c, array (
'id' => '1',
'name' => 'zYne',
));
2007-07-06 01:16:28 +04:00
2007-01-12 14:38:03 +03:00
$c = $this->conn->fetchRow('SELECT * FROM entity WHERE id = ?', array(1));
$this->assertEqual($c, array (
'id' => '1',
'name' => 'zYne',
));
}
2007-07-06 01:16:28 +04:00
public function testFetchPairs()
{
2007-01-15 21:48:50 +03:00
$this->conn->exec('DROP TABLE entity');
2007-01-12 14:38:03 +03:00
}
2007-07-06 01:16:28 +04:00
public function testGetManager()
{
$this->assertTrue($this->connection->getManager() === $this->manager);
2006-04-14 00:37:28 +04:00
}
2007-07-06 01:16:28 +04:00
public function testDelete()
{
2006-12-28 00:20:26 +03:00
$user = $this->connection->create('User');
2007-05-27 13:37:16 +04:00
$this->connection->unitOfWork->delete($user);
2007-01-21 21:31:51 +03:00
$this->assertEqual($user->state(),Doctrine_Record::STATE_TCLEAN);
2006-04-14 00:37:28 +04:00
}
2007-07-06 01:16:28 +04:00
public function testGetTable()
{
2006-12-28 00:20:26 +03:00
$table = $this->connection->getTable('Group');
2006-04-14 00:37:28 +04:00
$this->assertTrue($table instanceof Doctrine_Table);
try {
2006-12-28 00:20:26 +03:00
$table = $this->connection->getTable('Unknown');
2006-04-14 00:37:28 +04:00
$f = false;
} catch(Doctrine_Exception $e) {
$f = true;
}
$this->assertTrue($f);
2006-12-28 00:20:26 +03:00
$table = $this->connection->getTable('User');
2006-04-14 00:37:28 +04:00
$this->assertTrue($table instanceof UserTable);
}
2007-07-06 01:16:28 +04:00
public function testCreate()
{
2006-12-28 00:20:26 +03:00
$email = $this->connection->create('Email');
2006-04-14 00:37:28 +04:00
$this->assertTrue($email instanceof Email);
}
2007-07-06 01:16:28 +04:00
public function testGetDbh()
{
$this->assertTrue($this->connection->getDbh() instanceof PDO);
2006-04-14 00:37:28 +04:00
}
2007-07-06 01:16:28 +04:00
public function testCount()
{
2006-08-22 03:20:33 +04:00
$this->assertTrue(is_integer(count($this->connection)));
2006-04-14 00:37:28 +04:00
}
2007-07-06 01:16:28 +04:00
public function testGetIterator()
{
2006-08-22 03:20:33 +04:00
$this->assertTrue($this->connection->getIterator() instanceof ArrayIterator);
2006-04-14 00:37:28 +04:00
}
2007-07-06 01:16:28 +04:00
public function testGetState()
{
$this->assertEqual($this->connection->transaction->getState(),Doctrine_Transaction::STATE_SLEEP);
2006-12-28 00:20:26 +03:00
$this->assertEqual(Doctrine_Lib::getConnectionStateAsString($this->connection->transaction->getState()), 'open');
2006-04-14 00:37:28 +04:00
}
2007-07-06 01:16:28 +04:00
public function testGetTables()
{
2006-08-22 03:20:33 +04:00
$this->assertTrue(is_array($this->connection->getTables()));
2006-04-14 00:37:28 +04:00
}
2007-07-06 01:16:28 +04:00
public function testRollback()
{
2006-08-22 03:20:33 +04:00
$this->connection->beginTransaction();
$this->assertEqual($this->connection->transaction->getTransactionLevel(),1);
$this->assertEqual($this->connection->transaction->getState(), Doctrine_Transaction::STATE_ACTIVE);
2006-08-22 03:20:33 +04:00
$this->connection->rollback();
$this->assertEqual($this->connection->transaction->getState(), Doctrine_Transaction::STATE_SLEEP);
$this->assertEqual($this->connection->transaction->getTransactionLevel(),0);
2006-04-14 00:37:28 +04:00
}
2007-09-02 21:31:03 +04:00
public function testNestedTransactions()
2007-07-06 01:16:28 +04:00
{
$this->assertEqual($this->connection->transaction->getTransactionLevel(),0);
2006-08-22 03:20:33 +04:00
$this->connection->beginTransaction();
$this->assertEqual($this->connection->transaction->getTransactionLevel(),1);
2007-05-27 13:37:16 +04:00
$this->assertEqual($this->connection->transaction->getState(), Doctrine_Transaction::STATE_ACTIVE);
2006-08-22 03:20:33 +04:00
$this->connection->beginTransaction();
2007-05-27 13:37:16 +04:00
$this->assertEqual($this->connection->transaction->getState(), Doctrine_Transaction::STATE_BUSY);
$this->assertEqual($this->connection->transaction->getTransactionLevel(),2);
2006-08-22 03:20:33 +04:00
$this->connection->commit();
2007-05-27 13:37:16 +04:00
$this->assertEqual($this->connection->transaction->getState(), Doctrine_Transaction::STATE_ACTIVE);
$this->assertEqual($this->connection->transaction->getTransactionLevel(),1);
2006-08-22 03:20:33 +04:00
$this->connection->commit();
2007-05-27 13:37:16 +04:00
$this->assertEqual($this->connection->transaction->getState(), Doctrine_Transaction::STATE_SLEEP);
$this->assertEqual($this->connection->transaction->getTransactionLevel(),0);
2006-04-14 00:37:28 +04:00
}
2007-09-02 21:31:03 +04:00
public function testSqliteDsn()
{
$conn = Doctrine_Manager::connection('sqlite:foo.sq3');
try {
$conn->connect();
$conn->close();
$this->pass();
} catch (Doctrine_Exception $e) {
$this->fail();
}
unlink('foo.sq3');
}
2006-04-14 00:37:28 +04:00
}