Skip to content

Commit

Permalink
Adding failing test for DDC-2359
Browse files Browse the repository at this point in the history
Doctrine\ORM\Mapping\ClassMetadataFactory#wakeupReflection is called twice
  • Loading branch information
Ocramius committed Mar 24, 2013
1 parent 1f89d8c commit 5702032
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions tests/Doctrine/Tests/ORM/Functional/Ticket/DDC2359Test.php
@@ -0,0 +1,55 @@
<?php

namespace Doctrine\Tests\ORM\Functional\Ticket;

use Doctrine\ORM\Mapping\ClassMetadataFactory;

/**
* @group DDC-2359
*/
class DDC2359Test extends \PHPUnit_Framework_TestCase
{

/**
* Verifies that {@see \Doctrine\ORM\Mapping\ClassMetadataFactory::wakeupReflection} is
* not called twice when loading metadata from a driver
*/
public function testIssue()
{
$mockDriver = $this->getMock('Doctrine\\Common\\Persistence\\Mapping\\Driver\\MappingDriver');
$mockMetadata = $this->getMock('Doctrine\\ORM\\Mapping\\ClassMetadata', array(), array(), '', false);
$entityManager = $this->getMock('Doctrine\\ORM\\EntityManager', array(), array(), '', false);
/* @var $metadataFactory \Doctrine\ORM\Mapping\ClassMetadataFactory|\PHPUnit_Framework_MockObject_MockObject */
$metadataFactory = $this->getMock(
'Doctrine\\ORM\\Mapping\\ClassMetadataFactory',
array('newClassMetadataInstance', 'wakeupReflection')
);
$configuration = $this->getMock('Doctrine\\ORM\\Configuration');
$connection = $this->getMock('Doctrine\\DBAL\\Connection', array(), array(), '', false);

$configuration
->expects($this->any())
->method('getMetadataDriverImpl')
->will($this->returnValue($mockDriver));
$entityManager->expects($this->any())->method('getConfiguration')->will($this->returnValue($configuration));
$entityManager->expects($this->any())->method('getConnection')->will($this->returnValue($connection));
$entityManager
->expects($this->any())
->method('getEventManager')
->will($this->returnValue($this->getMock('Doctrine\\Common\\EventManager')));

$metadataFactory->expects($this->any())->method('newClassMetadataInstance')->will($this->returnValue($mockMetadata));
$metadataFactory->expects($this->once())->method('wakeupReflection');

$metadataFactory->setEntityManager($entityManager);

$this->assertSame($mockMetadata, $metadataFactory->getMetadataFor(__NAMESPACE__ . '\\DDC2359Foo'));
}
}

/** @Entity */
class DDC2359Foo
{
/** @Id @Column(type="integer") @GeneratedValue */
public $id;
}

0 comments on commit 5702032

Please sign in to comment.