2007-06-27 21:41:02 +04:00
|
|
|
<?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.com>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Doctrine_Template_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.com
|
|
|
|
* @since 1.0
|
|
|
|
* @version $Revision$
|
|
|
|
*/
|
|
|
|
class Doctrine_Template_TestCase extends Doctrine_UnitTestCase
|
|
|
|
{
|
2007-08-03 15:52:47 +04:00
|
|
|
public function prepareTables()
|
|
|
|
{ }
|
|
|
|
public function prepareData()
|
|
|
|
{ }
|
2007-06-28 15:56:56 +04:00
|
|
|
|
2007-08-03 15:52:47 +04:00
|
|
|
public function testAccessingNonExistingImplementationThrowsException()
|
|
|
|
{
|
2007-09-03 18:57:18 +04:00
|
|
|
try {
|
2007-08-03 15:52:47 +04:00
|
|
|
$user = new ConcreteUser();
|
|
|
|
$user->Group;
|
|
|
|
$this->fail();
|
|
|
|
} catch (Doctrine_Relation_Parser_Exception $e) {
|
|
|
|
$this->pass();
|
|
|
|
}
|
2007-06-28 23:19:47 +04:00
|
|
|
}
|
2007-08-03 15:52:47 +04:00
|
|
|
|
|
|
|
public function testAccessingExistingImplementationSupportsAssociations()
|
2007-06-27 21:41:02 +04:00
|
|
|
{
|
2007-09-03 18:57:18 +04:00
|
|
|
$this->manager->setImpl('UserTemplate', 'ConcreteUser')
|
2007-08-03 15:52:47 +04:00
|
|
|
->setImpl('GroupUserTemplate', 'ConcreteGroupUser')
|
|
|
|
->setImpl('GroupTemplate', 'ConcreteGroup')
|
|
|
|
->setImpl('EmailTemplate', 'ConcreteEmail');
|
|
|
|
|
|
|
|
$user = new ConcreteUser();
|
|
|
|
$group = $user->Group[0];
|
|
|
|
|
|
|
|
$this->assertTrue($group instanceof ConcreteGroup);
|
2007-06-28 23:19:47 +04:00
|
|
|
|
2007-08-03 15:52:47 +04:00
|
|
|
$this->assertTrue($group->User[0] instanceof ConcreteUser);
|
2007-06-27 21:41:02 +04:00
|
|
|
}
|
2007-08-03 15:52:47 +04:00
|
|
|
public function testAccessingExistingImplementationSupportsForeignKeyRelations()
|
|
|
|
{
|
|
|
|
|
|
|
|
$user = new ConcreteUser();
|
2007-06-28 15:56:56 +04:00
|
|
|
|
2007-08-03 15:52:47 +04:00
|
|
|
$this->assertTrue($user->Email[0] instanceof ConcreteEmail);
|
|
|
|
}
|
2007-09-13 00:26:59 +04:00
|
|
|
|
|
|
|
public function testShouldCallMethodInTemplate()
|
|
|
|
{
|
|
|
|
$user = new ConcreteUser();
|
|
|
|
$this->assertEqual("foo", $user->foo());
|
|
|
|
}
|
|
|
|
|
2007-08-03 15:52:47 +04:00
|
|
|
}
|
2007-09-02 18:24:49 +04:00
|
|
|
|
|
|
|
// move these to ../templates?
|
2007-08-03 15:52:47 +04:00
|
|
|
class UserTemplate extends Doctrine_Template
|
|
|
|
{
|
|
|
|
public function setTableDefinition()
|
|
|
|
{
|
|
|
|
$this->hasColumn('name', 'string');
|
|
|
|
$this->hasColumn('password', 'string');
|
|
|
|
}
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
$this->hasMany('GroupTemplate as Group', array('local' => 'user_id',
|
|
|
|
'foreign' => 'group_id',
|
|
|
|
'refClass' => 'GroupUserTemplate'));
|
|
|
|
$this->hasMany('EmailTemplate as Email', array('local' => 'id',
|
|
|
|
'foreign' => 'user_id'));
|
|
|
|
}
|
2007-09-13 00:26:59 +04:00
|
|
|
|
|
|
|
public function foo()
|
|
|
|
{
|
|
|
|
return "foo";
|
|
|
|
}
|
2007-08-03 15:52:47 +04:00
|
|
|
}
|
|
|
|
class EmailTemplate extends Doctrine_Template
|
|
|
|
{
|
|
|
|
public function setTableDefinition()
|
|
|
|
{
|
|
|
|
$this->hasColumn('address', 'string');
|
|
|
|
$this->hasColumn('user_id', 'integer');
|
|
|
|
}
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
$this->hasOne('UserTemplate as User', array('local' => 'user_id',
|
|
|
|
'foreign' => 'id'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class GroupTemplate extends Doctrine_Template
|
|
|
|
{
|
|
|
|
public function setTableDefinition()
|
|
|
|
{
|
|
|
|
$this->hasColumn('name', 'string');
|
|
|
|
}
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
$this->hasMany('UserTemplate as User', array('local' => 'user_id',
|
|
|
|
'foreign' => 'group_id',
|
|
|
|
'refClass' => 'GroupUserTemplate'));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class GroupUserTemplate extends Doctrine_Template
|
|
|
|
{
|
|
|
|
public function setTableDefinition()
|
|
|
|
{
|
|
|
|
$this->hasColumn('user_id', 'integer');
|
|
|
|
$this->hasColumn('group_id', 'integer');
|
|
|
|
}
|
2007-06-27 21:41:02 +04:00
|
|
|
}
|