. */ /** * Doctrine_Validator_FutureTestCase * * @package Doctrine * @author Roman Borschel * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ */ class Doctrine_Validator_Past_TestCase extends Doctrine_UnitTestCase { public function prepareTables() { $this->tables[] = 'ValidatorTest_DateModel'; parent::prepareTables(); } public function prepareData() { } public function testInvalidPastDates() { $this->manager->setAttribute(Doctrine::ATTR_VALIDATE, Doctrine::VALIDATE_ALL); // one year ahead $user1 = new ValidatorTest_DateModel(); $user1->birthday = date('Y-m-d', time() + 365 * 24 * 60 * 60); $this->assertFalse($user1->trySave()); // one month ahead $user1 = new ValidatorTest_DateModel(); $user1->birthday = date('Y-m-d', time() + 30 * 24 * 60 * 60); $this->assertFalse($user1->trySave()); // one day ahead $user1->birthday = date('Y-m-d', time() + 24 * 60 * 60); $this->assertFalse($user1->trySave()); $this->manager->setAttribute(Doctrine::ATTR_VALIDATE, Doctrine::VALIDATE_NONE); } public function testValidPastDates() { $this->manager->setAttribute(Doctrine::ATTR_VALIDATE, Doctrine::VALIDATE_ALL); $user1 = new ValidatorTest_DateModel(); $user1->birthday = date('Y-m-d', 42); $this->assertTrue($user1->trySave()); $user1->birthday = date('Y-m-d', mktime(0,0,0,6,3,1981)); $this->assertTrue($user1->trySave()); $user1->birthday = date('Y-m-d', mktime(0,0,0,3,9,1983)); $this->assertTrue($user1->trySave()); $this->manager->setAttribute(Doctrine::ATTR_VALIDATE, Doctrine::VALIDATE_NONE); } }