1
0
mirror of synced 2024-12-13 06:46:03 +03:00
doctrine2/tests_old/CustomPrimaryKeyTestCase.php

61 lines
2.1 KiB
PHP
Raw Normal View History

2006-07-26 21:09:00 +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.org>.
2006-12-28 00:20:26 +03:00
*/
2006-07-26 21:09:00 +04:00
2006-12-28 00:20:26 +03:00
/**
* Doctrine_CustomPrimaryKey_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.org
2006-12-28 00:20:26 +03:00
* @since 1.0
* @version $Revision$
*/
class Doctrine_CustomPrimaryKey_TestCase extends Doctrine_UnitTestCase
{
public function prepareData()
{ }
2006-07-26 21:09:00 +04:00
public function prepareTables()
{
2007-06-15 01:40:22 +04:00
$this->tables = array('CustomPK');
parent::prepareTables();
2006-07-26 21:09:00 +04:00
}
public function testOperations()
{
2006-07-26 21:09:00 +04:00
$c = new CustomPK();
$this->assertTrue($c instanceof Doctrine_Record);
2007-06-15 01:40:22 +04:00
$c->name = 'custom pk test';
$this->assertEqual($c->identifier(), array());
2006-07-26 21:09:00 +04:00
$c->save();
$this->assertEqual($c->identifier(), array('uid' => 1));
2006-08-22 03:20:33 +04:00
$this->connection->clear();
2006-07-26 21:09:00 +04:00
$c = $this->connection->getRepository('CustomPK')->find(1);
2006-07-26 21:09:00 +04:00
$this->assertEqual($c->identifier(), array('uid' => 1));
2006-07-26 21:09:00 +04:00
}
}