added setSubclasses to abstractRecord. Fixed classes in tests. added some more output to the Test.php script
This commit is contained in:
parent
57a6200b5e
commit
7ab2e58609
3 changed files with 28 additions and 8 deletions
|
@ -95,6 +95,20 @@ abstract class Doctrine_Record_Abstract extends Doctrine_Access
|
||||||
{
|
{
|
||||||
$this->_table->setOption('inheritanceMap', $map);
|
$this->_table->setOption('inheritanceMap', $map);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function setSubclasses($map){
|
||||||
|
if(isset($map[get_class($this)])){
|
||||||
|
$this->_table->setOption('inheritanceMap', $map[get_class($this)]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
$this->_table->setOption('subclasses', array_keys($map));
|
||||||
|
$conn = $this->_table->getConnection();
|
||||||
|
foreach($map as $key => $value){
|
||||||
|
$table = $conn->getTable($key);
|
||||||
|
// $table->setOption('inheritanceMap', $value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* attribute
|
* attribute
|
||||||
* sets or retrieves an option
|
* sets or retrieves an option
|
||||||
|
|
|
@ -66,7 +66,12 @@ class UnitTestCase
|
||||||
if ($value == $value2) {
|
if ($value == $value2) {
|
||||||
$this->_passed++;
|
$this->_passed++;
|
||||||
} else {
|
} else {
|
||||||
$this->_fail();
|
$seperator = "<br>";
|
||||||
|
if(PHP_SAPI === "cli"){
|
||||||
|
$seperator = "\n";
|
||||||
|
}
|
||||||
|
$message = "$seperator Value1: $value $seperator != $seperator Value2: $value2 $seperator";
|
||||||
|
$this->_fail($message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -107,11 +112,11 @@ class UnitTestCase
|
||||||
{
|
{
|
||||||
$this->_passed++;
|
$this->_passed++;
|
||||||
}
|
}
|
||||||
public function fail()
|
public function fail($message = "")
|
||||||
{
|
{
|
||||||
$this->_fail();
|
$this->_fail($message);
|
||||||
}
|
}
|
||||||
public function _fail()
|
public function _fail($message = "")
|
||||||
{
|
{
|
||||||
$trace = debug_backtrace();
|
$trace = debug_backtrace();
|
||||||
array_shift($trace);
|
array_shift($trace);
|
||||||
|
@ -126,7 +131,7 @@ class UnitTestCase
|
||||||
}
|
}
|
||||||
|
|
||||||
$errorMessage = $class->getName() . ' : method ' . $stack['function'] . ' failed on line ' . $line;
|
$errorMessage = $class->getName() . ' : method ' . $stack['function'] . ' failed on line ' . $line;
|
||||||
$this->_messages[] = $errorMessage;
|
$this->_messages[] = $errorMessage . " " . $message;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
$line = $stack['line'];
|
$line = $stack['line'];
|
||||||
|
|
|
@ -21,7 +21,8 @@ class Entity extends Doctrine_Record
|
||||||
$this->hasColumn('created', 'integer',11);
|
$this->hasColumn('created', 'integer',11);
|
||||||
$this->hasColumn('updated', 'integer',11);
|
$this->hasColumn('updated', 'integer',11);
|
||||||
$this->hasColumn('email_id', 'integer');
|
$this->hasColumn('email_id', 'integer');
|
||||||
$this->option('subclasses', array('User','Group'));
|
// $this->option('subclasses', array('User','Group'));
|
||||||
|
$this->setSubclasses(array("User" => array("type" => 0), "Group" => array("type" => 1)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
class FieldNameTest extends Doctrine_Record
|
class FieldNameTest extends Doctrine_Record
|
||||||
|
@ -83,7 +84,7 @@ class Group extends Entity {
|
||||||
public function setUp() {
|
public function setUp() {
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
$this->hasMany('User', 'Groupuser.user_id');
|
$this->hasMany('User', 'Groupuser.user_id');
|
||||||
$this->option('inheritanceMap', array('type' => 1));
|
// $this->option('inheritanceMap', array('type' => 1));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
class Error extends Doctrine_Record {
|
class Error extends Doctrine_Record {
|
||||||
|
@ -114,7 +115,7 @@ class User extends Entity
|
||||||
$this->ownsMany('Album', 'Album.user_id');
|
$this->ownsMany('Album', 'Album.user_id');
|
||||||
$this->ownsMany('Book', 'Book.user_id');
|
$this->ownsMany('Book', 'Book.user_id');
|
||||||
$this->hasMany('Group', 'Groupuser.group_id');
|
$this->hasMany('Group', 'Groupuser.group_id');
|
||||||
$this->option('inheritanceMap', array('type' => 0));
|
// $this->option('inheritanceMap', array('type' => 0));
|
||||||
}
|
}
|
||||||
/** Custom validation */
|
/** Custom validation */
|
||||||
public function validate()
|
public function validate()
|
||||||
|
|
Loading…
Add table
Reference in a new issue