1
0
mirror of synced 2024-12-05 03:06:05 +03:00

Merge branch 'hotfix/#1352-entity-generator-new-class-metadata-hotfix'

Close #1352
This commit is contained in:
Marco Pivetta 2015-03-31 08:45:48 +01:00
commit b923c937e2
2 changed files with 20 additions and 2 deletions

View File

@ -849,7 +849,7 @@ public function __construct(<params>)
*/
protected function hasProperty($property, ClassMetadataInfo $metadata)
{
if ($this->extendsClass() || class_exists($metadata->name)) {
if ($this->extendsClass() || (!$this->isNew && class_exists($metadata->name))) {
// don't generate property if its already on the base class.
$reflClass = new \ReflectionClass($this->getClassToExtend() ?: $metadata->name);
if ($reflClass->hasProperty($property)) {
@ -878,7 +878,7 @@ public function __construct(<params>)
*/
protected function hasMethod($method, ClassMetadataInfo $metadata)
{
if ($this->extendsClass() || class_exists($metadata->name)) {
if ($this->extendsClass() || (!$this->isNew && class_exists($metadata->name))) {
// don't generate method if its already on the base class.
$reflClass = new \ReflectionClass($this->getClassToExtend() ?: $metadata->name);

View File

@ -937,6 +937,24 @@ class EntityGeneratorTest extends OrmTestCase
$this->assertTrue($reflParameters[3]->isOptional());
}
public function testRegenerateEntityClass()
{
$metadata = $this->generateBookEntityFixture();
$this->loadEntityClass($metadata);
$className = basename(str_replace('\\', '/', $metadata->name));
$path = $this->_tmpDir . '/' . $this->_namespace . '/' . $className . '.php';
$classTest = file_get_contents($path);
$this->_generator->setRegenerateEntityIfExists(true);
$this->_generator->setBackupExisting(false);
$this->_generator->writeEntityClass($metadata, $this->_tmpDir);
$classNew = file_get_contents($path);
$this->assertSame($classTest,$classNew);
}
/**
* @return array
*/