1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/tests/BooleanTestCase.php
2006-09-26 21:12:14 +00:00

66 lines
2.4 KiB
PHP

<?php
class Doctrine_BooleanTestCase extends Doctrine_UnitTestCase {
public function prepareData() { }
public function prepareTables() {
$this->tables = array("BooleanTest");
parent::prepareTables();
}
public function testSetFalse() {
$test = new BooleanTest();
$test->is_working = false;
$this->assertEqual($test->is_working, false);
$this->assertEqual($test->getState(), Doctrine_Record::STATE_TDIRTY);
$test->save();
$test->refresh();
$this->assertEqual($test->is_working, false);
}
public function testSetTrue() {
$test = new BooleanTest();
$test->is_working = true;
$this->assertEqual($test->is_working, true);
$test->save();
$test->refresh();
$this->assertEqual($test->is_working, true);
$this->connection->clear();
$test = $test->getTable()->find($test->id);
$this->assertEqual($test->is_working, true);
}
public function testNormalQuerying() {
$query = new Doctrine_Query($this->connection);
$ret = $query->query('FROM BooleanTest WHERE BooleanTest.is_working = 0');
$this->assertEqual(count($ret), 1);
$query = new Doctrine_Query($this->connection);
$ret = $query->query('FROM BooleanTest WHERE BooleanTest.is_working = 1');
Doctrine_Lib::formatSql($query->getQuery());
$this->assertEqual(count($ret), 1);
}
public function testPreparedQueries() {
$query = new Doctrine_Query($this->connection);
$ret = $query->query('FROM BooleanTest WHERE BooleanTest.is_working = ?', array(false));
$this->assertEqual(count($ret), 1);
$query = new Doctrine_Query($this->connection);
$ret = $query->query('FROM BooleanTest WHERE BooleanTest.is_working = ?', array(true));
$this->assertEqual(count($ret), 1);
}
public function testFetchingWithSmartConversion() {
$query = new Doctrine_Query($this->connection);
$ret = $query->query('FROM BooleanTest WHERE BooleanTest.is_working = false');
$this->assertEqual(count($ret), 1);
$query = new Doctrine_Query($this->connection);
$ret = $query->query('FROM BooleanTest WHERE BooleanTest.is_working = true');
Doctrine_Lib::formatSql($query->getQuery());
$this->assertEqual(count($ret), 1);
}
}
?>