1
0
Fork 0
mirror of synced 2025-04-01 12:26:11 +03:00

Unit Tests && simple fixes

This commit is contained in:
encoder64 2014-09-06 18:14:16 +03:00
parent dc3bc45d1d
commit 859a5f88cb
5 changed files with 226 additions and 3 deletions

View file

@ -32,7 +32,7 @@ namespace Doctrine\ORM\Tools;
*/
class EntityRepositoryGenerator
{
private $repositoryName = 'Doctrine\ORM\EntityRepository';
private $repositoryName;
protected static $_template =
'<?php
@ -123,7 +123,7 @@ class <className> extends <repositoryName>
{
$namespace = $this->getClassNamespace($fullClassName);
$repositoryName = $this->repositoryName;
$repositoryName = $this->repositoryName ?: 'Doctrine\ORM\EntityRepository';
if ($namespace && $repositoryName[0] !== '\\') {
$repositoryName = '\\' . $repositoryName;
@ -136,7 +136,7 @@ class <className> extends <repositoryName>
* @param string $fullClassName
* @param string $outputDirectory
*
* @return void
* @return string
*/
public function writeEntityRepositoryClass($fullClassName, $outputDirectory)
{
@ -152,7 +152,11 @@ class <className> extends <repositoryName>
if ( ! file_exists($path)) {
file_put_contents($path, $code);
return $path;
}
return null;
}
/**

View file

@ -0,0 +1,7 @@
<?php
namespace Doctrine\Tests\Models\DDC1089;
class DDC1089EntityRepository extends \Doctrine\ORM\EntityRepository
{
}

View file

@ -0,0 +1,23 @@
<?php
namespace Doctrine\Tests\Models\DDC1089;
/**
* @Entity(repositoryClass="DDC1089UserRepository")
* @Table(name="users")
*/
class DDC1089User
{
/**
* @Id
* @Column(type="integer")
* @GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @Column(type="string", length=255)
*/
protected $name;
}

View file

@ -0,0 +1,57 @@
<?php
namespace Doctrine\Tests\Models\DDC1089;
/**
* @Entity(repositoryClass="DDC1089User2Repository")
* @Table(name="users2")
*/
class DDC1089User2
{
/**
* @Id
* @Column(type="integer")
* @GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @Column(type="string", length=255)
*/
protected $name;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set name
*
* @param string $name
*
* @return DDC1089User
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* Get name
*
* @return string
*/
public function getName()
{
return $this->name;
}
}

View file

@ -0,0 +1,132 @@
<?php
namespace Doctrine\Tests\ORM\Tools;
use Doctrine\ORM\Tools\EntityGenerator;
use Doctrine\ORM\Tools\EntityRepositoryGenerator;
use Doctrine\ORM\Mapping\ClassMetadataFactory;
class EntityRepositoryGeneratorTest extends \Doctrine\Tests\OrmTestCase
{
/**
* @var EntityGenerator
*/
private $_generator;
/**
* @var EntityRepositoryGenerator
*/
private $_repositoryGenerator;
private $_tmpDir;
private $_namespace;
/**
* @inheritdoc
*/
public function setUp()
{
$this->_namespace = uniqid("doctrine_");
$this->_tmpDir = \sys_get_temp_dir();
\mkdir($this->_tmpDir . \DIRECTORY_SEPARATOR . $this->_namespace);
$this->_generator = new EntityGenerator();
$this->_generator->setAnnotationPrefix("");
$this->_generator->setGenerateAnnotations(true);
$this->_generator->setGenerateStubMethods(true);
$this->_generator->setRegenerateEntityIfExists(false);
$this->_generator->setUpdateEntityIfExists(true);
$this->_generator->setFieldVisibility(EntityGenerator::FIELD_VISIBLE_PROTECTED);
$this->_repositoryGenerator = new EntityRepositoryGenerator();
}
/**
* @inheritdoc
*/
public function tearDown()
{
$ri = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($this->_tmpDir . '/' . $this->_namespace));
foreach ($ri AS $file) {
/* @var $file \SplFileInfo */
if ($file->isFile()) {
\unlink($file->getPathname());
}
}
rmdir($this->_tmpDir . '/' . $this->_namespace);
}
/**
* @group DDC-1089
*/
public function testGeneratedEntityRepositoryClass()
{
$em = $this->_getTestEntityManager();
$ns = $this->_namespace;
$className = 'DDC1089User';
$this->writeEntityClass('Doctrine\Tests\Models\DDC1089\\' . $className, $ns . '\\' . $className);
$rpath = $this->writeRepositoryClass($ns . '\\' . $className, 'Doctrine\Tests\Models\DDC1089\DDC1089EntityRepository');
$this->assertNotNull($rpath);
$this->assertFileExists($rpath);
require $rpath;
$repo = new \ReflectionClass($em->getRepository($ns . '\\' . $className));
$this->assertSame($ns . '\\' . $className . 'Repository', $repo->getName());
$this->assertSame('Doctrine\Tests\Models\DDC1089\DDC1089EntityRepository', $repo->getParentClass()->getName());
$className2 = 'DDC1089User2';
$this->writeEntityClass('Doctrine\Tests\Models\DDC1089\\' . $className2, $ns . '\\' . $className2);
$rpath2 = $this->writeRepositoryClass($ns . '\\' . $className2);
$this->assertNotNull($rpath2);
$this->assertFileExists($rpath2);
require $rpath2;
$repo2 = new \ReflectionClass($em->getRepository($ns . '\\' . $className2));
$this->assertSame($ns . '\\' . $className2 . 'Repository', $repo2->getName());
$this->assertSame('Doctrine\ORM\EntityRepository', $repo2->getParentClass()->getName());
}
/**
* @param string $className
* @param string $newClassName
*/
private function writeEntityClass($className, $newClassName)
{
$cmf = new ClassMetadataFactory();
$em = $this->_getTestEntityManager();
$cmf->setEntityManager($em);
$metadata = $cmf->getMetadataFor($className);
$metadata->namespace = $this->_namespace;
$metadata->name = $newClassName;
$metadata->customRepositoryClassName = $newClassName . "Repository";
$this->_generator->writeEntityClass($metadata, $this->_tmpDir);
require $this->_tmpDir . '/' . str_replace('\\', '/', $newClassName) . ".php";
}
/**
* @param string $className
* @param string $defaultRepository
* @return string
*/
private function writeRepositoryClass($className, $defaultRepository = null)
{
$this->_repositoryGenerator->setDefaultRepositoryName($defaultRepository);
return $this->_repositoryGenerator->writeEntityRepositoryClass($className . 'Repository', $this->_tmpDir);
}
}