Fixed boolean test case
This commit is contained in:
parent
437fac4c9e
commit
2c16937dec
1 changed files with 25 additions and 21 deletions
|
@ -5,39 +5,43 @@ class Doctrine_BooleanTestCase extends Doctrine_UnitTestCase {
|
||||||
$this->tables = array("BooleanTest");
|
$this->tables = array("BooleanTest");
|
||||||
parent::prepareTables();
|
parent::prepareTables();
|
||||||
}
|
}
|
||||||
|
public function testSetFalse() {
|
||||||
|
$test = new BooleanTest();
|
||||||
|
$test->is_working = false;
|
||||||
|
|
||||||
public function testSet() {
|
$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 = new BooleanTest();
|
||||||
$test->is_working = true;
|
$test->is_working = true;
|
||||||
$this->assertEqual($test->is_working, true);
|
$this->assertEqual($test->is_working, true);
|
||||||
$test->save();
|
$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);
|
||||||
|
}
|
||||||
|
|
||||||
$test = new BooleanTest();
|
public function testFetching() {
|
||||||
$test->is_working = true;
|
|
||||||
$test->save();
|
|
||||||
|
|
||||||
$test = new BooleanTest();
|
|
||||||
$this->is_working = false;
|
|
||||||
$this->assertEqual($test->is_working, false);
|
|
||||||
$test->save();
|
|
||||||
|
|
||||||
$test = new BooleanTest();
|
|
||||||
$this->is_working = false;
|
|
||||||
$test->save();
|
|
||||||
|
|
||||||
$test = new BooleanTest();
|
|
||||||
$this->is_working = false;
|
|
||||||
$test->save();
|
|
||||||
|
|
||||||
$query = new Doctrine_Query($this->connection);
|
$query = new Doctrine_Query($this->connection);
|
||||||
$ret = $query->query('FROM BooleanTest WHERE BooleanTest.is_working = ?', array(false));
|
$ret = $query->query('FROM BooleanTest WHERE BooleanTest.is_working = ?', array(false));
|
||||||
$this->assertEqual(count($ret), 3);
|
$this->assertEqual(count($ret), 1);
|
||||||
|
|
||||||
$query = new Doctrine_Query($this->connection);
|
$query = new Doctrine_Query($this->connection);
|
||||||
$ret = $query->query('FROM BooleanTest WHERE BooleanTest.is_working = ?', array(true));
|
$ret = $query->query('FROM BooleanTest WHERE BooleanTest.is_working = ?', array(true));
|
||||||
$this->assertEqual(count($ret), 2);
|
$this->assertEqual(count($ret), 1);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Add table
Reference in a new issue