Author: jwage Date: 2008-08-27 06:11:09 +0100 (Wed, 27 Aug 2008) New Revision: 4841
Added: branches/1.0/tests/Ticket/1325TestCase.php Modified: branches/1.0/tests/run.php Log: Adding coverage for #1325 Added: branches/1.0/tests/Ticket/1325TestCase.php =================================================================== --- branches/1.0/tests/Ticket/1325TestCase.php (rev 0) +++ branches/1.0/tests/Ticket/1325TestCase.php 2008-08-27 05:11:09 UTC (rev 4841) @@ -0,0 +1,97 @@ +<?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.org>. + */ + +/** + * Doctrine_Ticket_1325_TestCase + * + * @package Doctrine + * @author Andrea Baron <[EMAIL PROTECTED]> + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.org + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Ticket_1325_TestCase extends Doctrine_UnitTestCase +{ + public function prepareTables() + { + $this->tables[] = 'Ticket_1325_TableName_NoAlias'; + $this->tables[] = 'Ticket_1325_TableName_Aliased'; + parent::prepareTables(); + } + + public function testShouldInsertWithoutAlias() + { + $elem = new Ticket_1325_TableName_NoAlias(); + $elem->id = 1; + $elem->save(); + + $res = Doctrine_Query::create() + ->from('Ticket_1325_TableName_NoAlias') + ->fetchOne(array(), Doctrine::HYDRATE_ARRAY); + + $now = time(); + $time = strtotime($res['event_date']); + $this->assertTrue(($now + 5 >= $time) && ($time >= $now)); + } + + public function testShouldInsertWithAlias() + { + $elem = new Ticket_1325_TableName_Aliased(); + $elem->id = 1; + $elem->save(); + + $res = Doctrine_Query::create() + ->from('Ticket_1325_TableName_Aliased') + ->fetchOne(array(), Doctrine::HYDRATE_ARRAY); + + $now = time(); + $time = strtotime($res['eventDate']); + $this->assertTrue(($now + 5 >= $time) && ($time >= $now)); + } +} + +class Ticket_1325_TableName_NoAlias extends Doctrine_Record +{ + public function setTableDefinition() + { + $this->hasColumn('id', 'integer', 4, array('primary' => true, 'autoincrement' => true)); + } + + public function setUp() + { + $this->actAs(new Doctrine_Template_Timestampable(array('created' => array('name' => 'event_date', 'type' => 'timestamp'), 'updated' => array('disabled' => true)))); + } +} + +class Ticket_1325_TableName_Aliased extends Doctrine_Record +{ + public function setTableDefinition() + { + $this->hasColumn('id', 'integer', 4, array('primary' => true, 'autoincrement' => true)); + } + + public function setUp() + { + $this->actAs(new Doctrine_Template_Timestampable(array('created' => array('name' => 'event_date', 'alias' => 'eventDate', 'type' => 'timestamp'), 'updated' => array('disabled' => true)))); + } +} \ No newline at end of file Modified: branches/1.0/tests/run.php =================================================================== --- branches/1.0/tests/run.php 2008-08-27 04:38:13 UTC (rev 4840) +++ branches/1.0/tests/run.php 2008-08-27 05:11:09 UTC (rev 4841) @@ -118,6 +118,7 @@ $tickets->addTestCase(new Doctrine_Ticket_1296_TestCase()); $tickets->addTestCase(new Doctrine_Ticket_1304_TestCase()); $tickets->addTestCase(new Doctrine_Ticket_1305_TestCase()); +$tickets->addTestCase(new Doctrine_Ticket_1325_TestCase()); $tickets->addTestCase(new Doctrine_Ticket_1365_TestCase()); $tickets->addTestCase(new Doctrine_Ticket_1372_TestCase()); $tickets->addTestCase(new Doctrine_Ticket_1383_TestCase()); --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "doctrine-svn" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.co.uk/group/doctrine-svn?hl=en-GB -~----------~----~----~----~------~----~------~--~---
