2010-02-01 21:48:27 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests\ORM\Mapping;
|
|
|
|
|
|
|
|
use Doctrine\ORM\Mapping\ClassMetadata,
|
|
|
|
Doctrine\ORM\Mapping\Driver\XmlDriver,
|
|
|
|
Doctrine\ORM\Mapping\Driver\YamlDriver;
|
|
|
|
|
|
|
|
require_once __DIR__ . '/../../TestInit.php';
|
|
|
|
|
|
|
|
class YamlMappingDriverTest extends AbstractMappingDriverTest
|
|
|
|
{
|
|
|
|
protected function _loadDriver()
|
|
|
|
{
|
2010-08-23 08:21:41 +02:00
|
|
|
if (!class_exists('Symfony\Component\Yaml\Yaml', true)) {
|
2010-04-07 20:35:33 +02:00
|
|
|
$this->markTestSkipped('Please install Symfony YAML Component into the include path of your PHP installation.');
|
|
|
|
}
|
|
|
|
|
2010-02-01 21:48:27 +00:00
|
|
|
return new YamlDriver(__DIR__ . DIRECTORY_SEPARATOR . 'yaml');
|
|
|
|
}
|
2010-09-16 22:27:04 +02:00
|
|
|
|
2010-09-21 23:14:45 +02:00
|
|
|
/**
|
|
|
|
* @group DDC-671
|
|
|
|
*
|
|
|
|
* Entities for this test are in AbstractMappingDriverTest
|
|
|
|
*/
|
2010-09-16 22:27:04 +02:00
|
|
|
public function testJoinTablesWithMappedSuperclassForYamlDriver()
|
|
|
|
{
|
2010-09-21 23:53:26 +02:00
|
|
|
$yamlDriver = $this->_loadDriver();
|
2012-01-17 14:31:27 +01:00
|
|
|
$yamlDriver->getLocator()->addPaths(array(__DIR__ . DIRECTORY_SEPARATOR . 'yaml'));
|
2010-09-20 19:23:41 +02:00
|
|
|
|
2010-09-21 23:53:26 +02:00
|
|
|
$em = $this->_getTestEntityManager();
|
|
|
|
$em->getConfiguration()->setMetadataDriverImpl($yamlDriver);
|
2010-11-27 20:53:26 +01:00
|
|
|
$factory = new \Doctrine\ORM\Mapping\ClassMetadataFactory();
|
|
|
|
$factory->setEntityManager($em);
|
2010-09-20 19:23:41 +02:00
|
|
|
|
2010-09-21 23:53:26 +02:00
|
|
|
$classPage = new ClassMetadata('Doctrine\Tests\Models\DirectoryTree\File');
|
|
|
|
$classPage = $factory->getMetadataFor('Doctrine\Tests\Models\DirectoryTree\File');
|
|
|
|
$this->assertEquals('Doctrine\Tests\Models\DirectoryTree\File', $classPage->associationMappings['parentDirectory']['sourceEntity']);
|
2010-09-20 19:23:41 +02:00
|
|
|
|
2010-09-21 23:53:26 +02:00
|
|
|
$classDirectory = new ClassMetadata('Doctrine\Tests\Models\DirectoryTree\Directory');
|
|
|
|
$classDirectory = $factory->getMetadataFor('Doctrine\Tests\Models\DirectoryTree\Directory');
|
|
|
|
$this->assertEquals('Doctrine\Tests\Models\DirectoryTree\Directory', $classDirectory->associationMappings['parentDirectory']['sourceEntity']);
|
2010-07-06 20:19:43 +02:00
|
|
|
}
|
2010-09-16 22:27:04 +02:00
|
|
|
|
2011-12-15 17:12:01 -02:00
|
|
|
/**
|
|
|
|
* @group DDC-1468
|
|
|
|
*
|
2012-01-17 15:39:52 +01:00
|
|
|
* @expectedException Doctrine\Common\Persistence\Mapping\MappingException
|
2011-12-15 17:12:01 -02:00
|
|
|
* @expectedExceptionMessage Invalid mapping file 'Doctrine.Tests.Models.Generic.SerializationModel.dcm.yml' for class 'Doctrine\Tests\Models\Generic\SerializationModel'.
|
|
|
|
*/
|
|
|
|
public function testInvalidMappingFileException()
|
|
|
|
{
|
|
|
|
$this->createClassMetadata('Doctrine\Tests\Models\Generic\SerializationModel');
|
|
|
|
}
|
|
|
|
|
2010-07-06 20:19:43 +02:00
|
|
|
}
|