2009-01-05 23:18:56 +03:00
|
|
|
<?php
|
2009-01-06 20:22:23 +03:00
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\Tests\ORM\Mapping;
|
2009-01-06 20:22:23 +03:00
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
use Doctrine\ORM\Mapping\ClassMetadata;
|
2009-07-16 00:18:40 +04:00
|
|
|
use Doctrine\ORM\Events;
|
2009-01-22 22:38:10 +03:00
|
|
|
|
2009-01-24 19:56:44 +03:00
|
|
|
require_once __DIR__ . '/../../TestInit.php';
|
2010-12-31 00:30:51 +03:00
|
|
|
require_once __DIR__ . '/../../Models/Global/GlobalNamespaceModel.php';
|
2009-01-05 23:18:56 +03:00
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
class ClassMetadataTest extends \Doctrine\Tests\OrmTestCase
|
2009-01-06 20:22:23 +03:00
|
|
|
{
|
2009-02-18 10:59:11 +03:00
|
|
|
public function testClassMetadataInstanceSerialization()
|
|
|
|
{
|
2009-01-22 22:38:10 +03:00
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsUser');
|
2009-01-05 23:18:56 +03:00
|
|
|
|
|
|
|
// Test initial state
|
2009-01-12 16:34:41 +03:00
|
|
|
$this->assertTrue(count($cm->getReflectionProperties()) == 0);
|
2009-05-14 14:03:09 +04:00
|
|
|
$this->assertTrue($cm->reflClass instanceof \ReflectionClass);
|
|
|
|
$this->assertEquals('Doctrine\Tests\Models\CMS\CmsUser', $cm->name);
|
|
|
|
$this->assertEquals('Doctrine\Tests\Models\CMS\CmsUser', $cm->rootEntityName);
|
|
|
|
$this->assertEquals(array(), $cm->subClasses);
|
|
|
|
$this->assertEquals(array(), $cm->parentClasses);
|
2010-04-19 00:47:03 +04:00
|
|
|
$this->assertEquals(ClassMetadata::INHERITANCE_TYPE_NONE, $cm->inheritanceType);
|
2009-01-05 23:18:56 +03:00
|
|
|
|
|
|
|
// Customize state
|
2010-04-19 00:47:03 +04:00
|
|
|
$cm->setInheritanceType(ClassMetadata::INHERITANCE_TYPE_SINGLE_TABLE);
|
2009-01-05 23:18:56 +03:00
|
|
|
$cm->setSubclasses(array("One", "Two", "Three"));
|
|
|
|
$cm->setParentClasses(array("UserParent"));
|
|
|
|
$cm->setCustomRepositoryClass("UserRepository");
|
|
|
|
$cm->setDiscriminatorColumn(array('name' => 'disc', 'type' => 'integer'));
|
2009-01-12 16:34:41 +03:00
|
|
|
$cm->mapOneToOne(array('fieldName' => 'phonenumbers', 'targetEntity' => 'Bar', 'mappedBy' => 'foo'));
|
2009-05-14 14:03:09 +04:00
|
|
|
$this->assertEquals(1, count($cm->associationMappings));
|
2009-01-05 23:18:56 +03:00
|
|
|
|
|
|
|
$serialized = serialize($cm);
|
|
|
|
$cm = unserialize($serialized);
|
|
|
|
|
|
|
|
// Check state
|
|
|
|
$this->assertTrue(count($cm->getReflectionProperties()) > 0);
|
2010-04-30 19:30:27 +04:00
|
|
|
$this->assertEquals('Doctrine\Tests\Models\CMS', $cm->namespace);
|
2009-05-14 14:03:09 +04:00
|
|
|
$this->assertTrue($cm->reflClass instanceof \ReflectionClass);
|
|
|
|
$this->assertEquals('Doctrine\Tests\Models\CMS\CmsUser', $cm->name);
|
|
|
|
$this->assertEquals('UserParent', $cm->rootEntityName);
|
2009-08-17 21:58:16 +04:00
|
|
|
$this->assertEquals(array('Doctrine\Tests\Models\CMS\One', 'Doctrine\Tests\Models\CMS\Two', 'Doctrine\Tests\Models\CMS\Three'), $cm->subClasses);
|
2009-05-14 14:03:09 +04:00
|
|
|
$this->assertEquals(array('UserParent'), $cm->parentClasses);
|
2010-03-15 20:19:00 +03:00
|
|
|
$this->assertEquals('UserRepository', $cm->customRepositoryClassName);
|
2009-07-20 19:30:54 +04:00
|
|
|
$this->assertEquals(array('name' => 'disc', 'type' => 'integer', 'fieldName' => 'disc'), $cm->discriminatorColumn);
|
2010-08-09 15:13:21 +04:00
|
|
|
$this->assertTrue($cm->associationMappings['phonenumbers']['type'] == ClassMetadata::ONE_TO_ONE);
|
2009-05-14 14:03:09 +04:00
|
|
|
$this->assertEquals(1, count($cm->associationMappings));
|
2009-01-12 16:34:41 +03:00
|
|
|
$oneOneMapping = $cm->getAssociationMapping('phonenumbers');
|
2010-08-09 15:13:21 +04:00
|
|
|
$this->assertTrue($oneOneMapping['fetch'] == ClassMetadata::FETCH_LAZY);
|
|
|
|
$this->assertEquals('phonenumbers', $oneOneMapping['fieldName']);
|
|
|
|
$this->assertEquals('Doctrine\Tests\Models\CMS\Bar', $oneOneMapping['targetEntity']);
|
2009-01-05 23:18:56 +03:00
|
|
|
}
|
2009-11-02 15:53:05 +03:00
|
|
|
|
|
|
|
public function testFieldIsNullable()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsUser');
|
|
|
|
|
|
|
|
// Explicit Nullable
|
|
|
|
$cm->mapField(array('fieldName' => 'status', 'nullable' => true, 'type' => 'string', 'length' => 50));
|
|
|
|
$this->assertTrue($cm->isNullable('status'));
|
|
|
|
|
|
|
|
// Explicit Not Nullable
|
|
|
|
$cm->mapField(array('fieldName' => 'username', 'nullable' => false, 'type' => 'string', 'length' => 50));
|
|
|
|
$this->assertFalse($cm->isNullable('username'));
|
|
|
|
|
|
|
|
// Implicit Not Nullable
|
|
|
|
$cm->mapField(array('fieldName' => 'name', 'type' => 'string', 'length' => 50));
|
|
|
|
$this->assertFalse($cm->isNullable('name'), "By default a field should not be nullable.");
|
|
|
|
}
|
2009-11-05 02:06:38 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DDC-115
|
|
|
|
*/
|
|
|
|
public function testMapAssocationInGlobalNamespace()
|
|
|
|
{
|
|
|
|
require_once __DIR__."/../../Models/Global/GlobalNamespaceModel.php";
|
|
|
|
|
|
|
|
$cm = new ClassMetadata('DoctrineGlobal_Article');
|
|
|
|
$cm->mapManyToMany(array(
|
|
|
|
'fieldName' => 'author',
|
|
|
|
'targetEntity' => 'DoctrineGlobal_User',
|
|
|
|
'joinTable' => array(
|
|
|
|
'name' => 'bar',
|
|
|
|
'joinColumns' => array(array('name' => 'bar_id', 'referencedColumnName' => 'id')),
|
|
|
|
'inverseJoinColumns' => array(array('name' => 'baz_id', 'referencedColumnName' => 'id')),
|
|
|
|
),
|
|
|
|
));
|
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
$this->assertEquals("DoctrineGlobal_User", $cm->associationMappings['author']['targetEntity']);
|
2009-11-05 02:06:38 +03:00
|
|
|
}
|
2010-02-09 20:13:49 +03:00
|
|
|
|
|
|
|
public function testMapManyToManyJoinTableDefaults()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsUser');
|
|
|
|
$cm->mapManyToMany(
|
|
|
|
array(
|
|
|
|
'fieldName' => 'groups',
|
|
|
|
'targetEntity' => 'CmsGroup'
|
|
|
|
));
|
|
|
|
|
|
|
|
$assoc = $cm->associationMappings['groups'];
|
2010-08-09 15:13:21 +04:00
|
|
|
//$this->assertTrue($assoc instanceof \Doctrine\ORM\Mapping\ManyToManyMapping);
|
2010-02-09 20:13:49 +03:00
|
|
|
$this->assertEquals(array(
|
2010-08-26 15:47:22 +04:00
|
|
|
'name' => 'cmsuser_cmsgroup',
|
|
|
|
'joinColumns' => array(array('name' => 'cmsuser_id', 'referencedColumnName' => 'id', 'onDelete' => 'CASCADE')),
|
|
|
|
'inverseJoinColumns' => array(array('name' => 'cmsgroup_id', 'referencedColumnName' => 'id', 'onDelete' => 'CASCADE'))
|
2010-08-09 15:13:21 +04:00
|
|
|
), $assoc['joinTable']);
|
|
|
|
$this->assertTrue($assoc['isOnDeleteCascade']);
|
2010-07-10 14:04:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testSerializeManyToManyJoinTableCascade()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsUser');
|
|
|
|
$cm->mapManyToMany(
|
|
|
|
array(
|
|
|
|
'fieldName' => 'groups',
|
|
|
|
'targetEntity' => 'CmsGroup'
|
|
|
|
));
|
|
|
|
|
|
|
|
/* @var $assoc \Doctrine\ORM\Mapping\ManyToManyMapping */
|
|
|
|
$assoc = $cm->associationMappings['groups'];
|
|
|
|
$assoc = unserialize(serialize($assoc));
|
|
|
|
|
2010-08-09 15:13:21 +04:00
|
|
|
$this->assertTrue($assoc['isOnDeleteCascade']);
|
2010-02-09 20:13:49 +03:00
|
|
|
}
|
2009-11-05 02:06:38 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DDC-115
|
|
|
|
*/
|
|
|
|
public function testSetDiscriminatorMapInGlobalNamespace()
|
|
|
|
{
|
|
|
|
require_once __DIR__."/../../Models/Global/GlobalNamespaceModel.php";
|
|
|
|
|
|
|
|
$cm = new ClassMetadata('DoctrineGlobal_User');
|
|
|
|
$cm->setDiscriminatorMap(array('descr' => 'DoctrineGlobal_Article', 'foo' => 'DoctrineGlobal_User'));
|
|
|
|
|
|
|
|
$this->assertEquals("DoctrineGlobal_Article", $cm->discriminatorMap['descr']);
|
|
|
|
$this->assertEquals("DoctrineGlobal_User", $cm->discriminatorMap['foo']);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DDC-115
|
|
|
|
*/
|
|
|
|
public function testSetSubClassesInGlobalNamespace()
|
|
|
|
{
|
|
|
|
require_once __DIR__."/../../Models/Global/GlobalNamespaceModel.php";
|
|
|
|
|
|
|
|
$cm = new ClassMetadata('DoctrineGlobal_User');
|
|
|
|
$cm->setSubclasses(array('DoctrineGlobal_Article'));
|
|
|
|
|
|
|
|
$this->assertEquals("DoctrineGlobal_Article", $cm->subClasses[0]);
|
|
|
|
}
|
2010-02-03 00:17:00 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DDC-268
|
|
|
|
*/
|
|
|
|
public function testSetInvalidVersionMapping_ThrowsException()
|
|
|
|
{
|
|
|
|
$field = array();
|
|
|
|
$field['fieldName'] = 'foo';
|
|
|
|
$field['type'] = 'string';
|
|
|
|
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsUser');
|
|
|
|
|
|
|
|
$this->setExpectedException('Doctrine\ORM\Mapping\MappingException');
|
|
|
|
$cm->setVersionMapping($field);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetSingleIdentifierFieldName_MultipleIdentifierEntity_ThrowsException()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsUser');
|
|
|
|
$cm->isIdentifierComposite = true;
|
|
|
|
|
|
|
|
$this->setExpectedException('Doctrine\ORM\Mapping\MappingException');
|
|
|
|
$cm->getSingleIdentifierFieldName();
|
|
|
|
}
|
2010-02-03 00:46:39 +03:00
|
|
|
|
|
|
|
public function testDuplicateAssociationMappingException()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsUser');
|
2010-08-09 15:13:21 +04:00
|
|
|
$a1 = array('fieldName' => 'foo', 'sourceEntity' => 'stdClass', 'targetEntity' => 'stdClass', 'mappedBy' => 'foo');
|
|
|
|
$a2 = array('fieldName' => 'foo', 'sourceEntity' => 'stdClass', 'targetEntity' => 'stdClass', 'mappedBy' => 'foo');
|
2010-02-03 00:46:39 +03:00
|
|
|
|
2010-04-14 19:07:08 +04:00
|
|
|
$cm->addInheritedAssociationMapping($a1);
|
2010-02-03 00:46:39 +03:00
|
|
|
$this->setExpectedException('Doctrine\ORM\Mapping\MappingException');
|
2010-04-14 19:07:08 +04:00
|
|
|
$cm->addInheritedAssociationMapping($a2);
|
2010-02-03 00:46:39 +03:00
|
|
|
}
|
2010-03-20 22:23:13 +03:00
|
|
|
|
|
|
|
public function testDuplicateColumnName_ThrowsMappingException()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsUser');
|
|
|
|
$cm->mapField(array('fieldName' => 'name', 'columnName' => 'name'));
|
|
|
|
|
|
|
|
$this->setExpectedException('Doctrine\ORM\Mapping\MappingException');
|
|
|
|
$cm->mapField(array('fieldName' => 'username', 'columnName' => 'name'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDuplicateColumnName_DiscriminatorColumn_ThrowsMappingException()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsUser');
|
|
|
|
$cm->mapField(array('fieldName' => 'name', 'columnName' => 'name'));
|
|
|
|
|
|
|
|
$this->setExpectedException('Doctrine\ORM\Mapping\MappingException');
|
|
|
|
$cm->setDiscriminatorColumn(array('name' => 'name'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDuplicateColumnName_DiscriminatorColumn2_ThrowsMappingException()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsUser');
|
|
|
|
$cm->setDiscriminatorColumn(array('name' => 'name'));
|
|
|
|
|
|
|
|
$this->setExpectedException('Doctrine\ORM\Mapping\MappingException');
|
|
|
|
$cm->mapField(array('fieldName' => 'name', 'columnName' => 'name'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDuplicateFieldAndAssocationMapping1_ThrowsException()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsUser');
|
|
|
|
$cm->mapField(array('fieldName' => 'name', 'columnName' => 'name'));
|
|
|
|
|
|
|
|
$this->setExpectedException('Doctrine\ORM\Mapping\MappingException');
|
|
|
|
$cm->mapOneToOne(array('fieldName' => 'name', 'targetEntity' => 'CmsUser'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDuplicateFieldAndAssocationMapping2_ThrowsException()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsUser');
|
|
|
|
$cm->mapOneToOne(array('fieldName' => 'name', 'targetEntity' => 'CmsUser'));
|
|
|
|
|
|
|
|
$this->setExpectedException('Doctrine\ORM\Mapping\MappingException');
|
|
|
|
$cm->mapField(array('fieldName' => 'name', 'columnName' => 'name'));
|
|
|
|
}
|
2010-08-26 15:47:22 +04:00
|
|
|
|
|
|
|
public function testDefaultTableName()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsUser');
|
|
|
|
|
|
|
|
// When table's name is not given
|
|
|
|
$primaryTable = array();
|
|
|
|
$cm->setPrimaryTable($primaryTable);
|
|
|
|
|
|
|
|
$this->assertEquals('CmsUser', $cm->getTableName());
|
|
|
|
$this->assertEquals('CmsUser', $cm->table['name']);
|
|
|
|
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsAddress');
|
|
|
|
// When joinTable's name is not given
|
|
|
|
$cm->mapManyToMany(array(
|
|
|
|
'fieldName' => 'user',
|
|
|
|
'targetEntity' => 'CmsUser',
|
|
|
|
'inversedBy' => 'users',
|
|
|
|
'joinTable' => array('joinColumns' => array(array('referencedColumnName' => 'id')),
|
|
|
|
'inverseJoinColumns' => array(array('referencedColumnName' => 'id')))));
|
|
|
|
$this->assertEquals('cmsaddress_cmsuser', $cm->associationMappings['user']['joinTable']['name']);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDefaultJoinColumnName()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsAddress');
|
|
|
|
// this is really dirty, but it's the simpliest way to test whether
|
|
|
|
// joinColumn's name will be automatically set to user_id
|
|
|
|
$cm->mapOneToOne(array(
|
|
|
|
'fieldName' => 'user',
|
|
|
|
'targetEntity' => 'CmsUser',
|
|
|
|
'joinColumns' => array(array('referencedColumnName' => 'id'))));
|
|
|
|
$this->assertEquals('user_id', $cm->associationMappings['user']['joinColumns'][0]['name']);
|
|
|
|
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsAddress');
|
|
|
|
$cm->mapManyToMany(array(
|
|
|
|
'fieldName' => 'user',
|
|
|
|
'targetEntity' => 'CmsUser',
|
|
|
|
'inversedBy' => 'users',
|
|
|
|
'joinTable' => array('name' => 'user_CmsUser',
|
|
|
|
'joinColumns' => array(array('referencedColumnName' => 'id')),
|
|
|
|
'inverseJoinColumns' => array(array('referencedColumnName' => 'id')))));
|
|
|
|
$this->assertEquals('cmsaddress_id', $cm->associationMappings['user']['joinTable']['joinColumns'][0]['name']);
|
|
|
|
$this->assertEquals('cmsuser_id', $cm->associationMappings['user']['joinTable']['inverseJoinColumns'][0]['name']);
|
|
|
|
}
|
2010-11-27 19:38:12 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DDC-886
|
|
|
|
*/
|
|
|
|
public function testSetMultipleIdentifierSetsComposite()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsUser');
|
|
|
|
$cm->mapField(array('fieldName' => 'name'));
|
|
|
|
$cm->mapField(array('fieldName' => 'username'));
|
|
|
|
|
|
|
|
$cm->setIdentifier(array('name', 'username'));
|
|
|
|
$this->assertTrue($cm->isIdentifierComposite);
|
|
|
|
}
|
2010-12-22 02:17:50 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DDC-944
|
|
|
|
*/
|
|
|
|
public function testMappingNotFound()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\CMS\CmsUser');
|
|
|
|
|
|
|
|
$this->setExpectedException('Doctrine\ORM\Mapping\MappingException', "No mapping found for field 'foo' on class 'Doctrine\Tests\Models\CMS\CmsUser'.");
|
|
|
|
$cm->getFieldMapping('foo');
|
|
|
|
}
|
2010-12-31 00:30:51 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DDC-961
|
|
|
|
*/
|
|
|
|
public function testJoinTableMappingDefaults()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('DoctrineGlobal_Article');
|
|
|
|
$cm->mapManyToMany(array('fieldName' => 'author', 'targetEntity' => 'Doctrine\Tests\Models\CMS\CmsUser'));
|
|
|
|
|
|
|
|
$this->assertEquals('doctrineglobal_article_cmsuser', $cm->associationMappings['author']['joinTable']['name']);
|
|
|
|
}
|
2011-01-02 14:01:05 +03:00
|
|
|
|
2011-01-01 20:17:19 +03:00
|
|
|
/**
|
|
|
|
* @group DDC-117
|
|
|
|
*/
|
|
|
|
public function testMapIdentifierAssociation()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\DDC117\DDC117ArticleDetails');
|
|
|
|
$cm->mapOneToOne(array(
|
|
|
|
'fieldName' => 'article',
|
|
|
|
'id' => true,
|
|
|
|
'targetEntity' => 'Doctrine\Tests\Models\DDC117\DDC117Article',
|
|
|
|
'joinColumns' => array(),
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->assertTrue($cm->containsForeignIdentifier, "Identifier Association should set 'containsForeignIdentifier' boolean flag.");
|
|
|
|
$this->assertEquals(array("article"), $cm->identifier);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DDC-117
|
|
|
|
*/
|
|
|
|
public function testOrphanRemovalIdentifierAssociation()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\DDC117\DDC117ArticleDetails');
|
|
|
|
|
|
|
|
$this->setExpectedException('Doctrine\ORM\Mapping\MappingException', 'The orphan removal option is not allowed on an association that');
|
|
|
|
$cm->mapOneToOne(array(
|
|
|
|
'fieldName' => 'article',
|
|
|
|
'id' => true,
|
|
|
|
'targetEntity' => 'Doctrine\Tests\Models\DDC117\DDC117Article',
|
|
|
|
'orphanRemoval' => true,
|
|
|
|
'joinColumns' => array(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DDC-117
|
|
|
|
*/
|
|
|
|
public function testInverseIdentifierAssocation()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\DDC117\DDC117ArticleDetails');
|
|
|
|
|
|
|
|
$this->setExpectedException('Doctrine\ORM\Mapping\MappingException', 'An inverse association is not allowed to be identifier in');
|
|
|
|
$cm->mapOneToOne(array(
|
|
|
|
'fieldName' => 'article',
|
|
|
|
'id' => true,
|
|
|
|
'mappedBy' => 'details', // INVERSE!
|
|
|
|
'targetEntity' => 'Doctrine\Tests\Models\DDC117\DDC117Article',
|
|
|
|
'joinColumns' => array(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group DDC-117
|
|
|
|
*/
|
|
|
|
public function testIdentifierAssocationManyToMany()
|
|
|
|
{
|
|
|
|
$cm = new ClassMetadata('Doctrine\Tests\Models\DDC117\DDC117ArticleDetails');
|
|
|
|
|
|
|
|
$this->setExpectedException('Doctrine\ORM\Mapping\MappingException', 'Many-to-many or one-to-many associations are not allowed to be identifier in');
|
|
|
|
$cm->mapManyToMany(array(
|
|
|
|
'fieldName' => 'article',
|
|
|
|
'id' => true,
|
|
|
|
'targetEntity' => 'Doctrine\Tests\Models\DDC117\DDC117Article',
|
|
|
|
'joinColumns' => array(),
|
|
|
|
));
|
|
|
|
}
|
2011-01-02 14:01:05 +03:00
|
|
|
}
|