add test case for #626 regarding Doctrine_Table->find()
This commit is contained in:
parent
2af9fb80ce
commit
4516678f5c
58
tests/Ticket/626DTestCase.php
Normal file
58
tests/Ticket/626DTestCase.php
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Doctrine_Ticket_626D_TestCase
|
||||||
|
*
|
||||||
|
* @package Doctrine
|
||||||
|
* @author Tamcy <7am.online@gmail.com>
|
||||||
|
* @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_Ticket_626D_TestCase extends Doctrine_UnitTestCase
|
||||||
|
{
|
||||||
|
public function prepareData()
|
||||||
|
{ }
|
||||||
|
|
||||||
|
public function prepareTables()
|
||||||
|
{
|
||||||
|
$this->tables = array('T626D_Student1');
|
||||||
|
parent::prepareTables();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function newStudent($cls, $id, $name)
|
||||||
|
{
|
||||||
|
$u = new $cls;
|
||||||
|
$u->id = $id;
|
||||||
|
$u->name = $name;
|
||||||
|
$u->save();
|
||||||
|
return $u;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testFieldNames()
|
||||||
|
{
|
||||||
|
$student1 = $this->newStudent('T626D_Student1', '07090002', 'First Student');
|
||||||
|
|
||||||
|
try {
|
||||||
|
$student = Doctrine::getTable('T626D_Student1')->find('07090002');
|
||||||
|
$this->pass();
|
||||||
|
} catch (Exception $e) {
|
||||||
|
$this->fail($e->__toString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class T626D_Student1 extends Doctrine_Record
|
||||||
|
{
|
||||||
|
public function setTableDefinition()
|
||||||
|
{
|
||||||
|
$this->setTableName('T626D_Student_record_1');
|
||||||
|
|
||||||
|
$this->hasColumn('s_id as id', 'varchar', 30, array ( 'primary' => true,));
|
||||||
|
$this->hasColumn('s_name as name', 'varchar', 50, array ());
|
||||||
|
}
|
||||||
|
}
|
@ -24,6 +24,7 @@ $tickets->addTestCase(new Doctrine_Ticket_642_TestCase());
|
|||||||
$tickets->addTestCase(new Doctrine_Ticket_438_TestCase());
|
$tickets->addTestCase(new Doctrine_Ticket_438_TestCase());
|
||||||
$tickets->addTestCase(new Doctrine_Ticket_638_TestCase());
|
$tickets->addTestCase(new Doctrine_Ticket_638_TestCase());
|
||||||
$tickets->addTestCase(new Doctrine_Ticket_673_TestCase());
|
$tickets->addTestCase(new Doctrine_Ticket_673_TestCase());
|
||||||
|
$tickets->addTestCase(new Doctrine_Ticket_626D_TestCase());
|
||||||
$test->addTestCase($tickets);
|
$test->addTestCase($tickets);
|
||||||
|
|
||||||
// Connection drivers (not yet fully tested)
|
// Connection drivers (not yet fully tested)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user