1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Code review fixes

This commit is contained in:
dantleech 2014-08-23 13:33:58 +02:00 committed by Marco Pivetta
parent 51cd8f7ce8
commit b5552a82e3
2 changed files with 34 additions and 59 deletions

View file

@ -39,12 +39,12 @@ class InfoCommand extends Command
/** /**
* @var OutputInterface * @var OutputInterface
*/ */
protected $output; private $output;
/** /**
* @var array * @var array
*/ */
protected $out; private $out;
/** /**
* {@inheritdoc} * {@inheritdoc}
@ -54,7 +54,7 @@ class InfoCommand extends Command
$this $this
->setName('orm:info') ->setName('orm:info')
->addArgument('entityName', InputArgument::OPTIONAL, 'Show detailed information about the given class') ->addArgument('entityName', InputArgument::OPTIONAL, 'Show detailed information about the given class')
->setDescription('Validate and display information about informations') ->setDescription('Display information about mapped objects')
->setHelp(<<<EOT ->setHelp(<<<EOT
The <info>%command.name%</info> without arguments shows basic information about The <info>%command.name%</info> without arguments shows basic information about
which entities exist and possibly if their mapping information contains errors which entities exist and possibly if their mapping information contains errors
@ -86,13 +86,14 @@ EOT
if (null === $entityName) { if (null === $entityName) {
return $this->displayAll($output); return $this->displayAll($output);
} else {
$this->displayEntity($entityName);
return 0;
} }
$this->displayEntity($entityName);
return 0;
} }
protected function displayAll() private function displayAll()
{ {
$entityClassNames = $this->getMappedEntities(); $entityClassNames = $this->getMappedEntities();
@ -116,7 +117,7 @@ EOT
return $failure ? 1 : 0; return $failure ? 1 : 0;
} }
protected function displayEntity($entityName) private function displayEntity($entityName)
{ {
$meta = $this->getClassMetadata($entityName); $meta = $this->getClassMetadata($entityName);
@ -126,9 +127,9 @@ EOT
$this->formatField('Custom repository class', $meta->customRepositoryClassName); $this->formatField('Custom repository class', $meta->customRepositoryClassName);
$this->formatField('Mapped super class?', $meta->isMappedSuperclass); $this->formatField('Mapped super class?', $meta->isMappedSuperclass);
$this->formatField('Embedded class?', $meta->isEmbeddedClass); $this->formatField('Embedded class?', $meta->isEmbeddedClass);
$this->formatListField('Parent classes', $meta->parentClasses); $this->formatField('Parent classes', $meta->parentClasses);
$this->formatListField('Sub classes', $meta->subClasses); $this->formatField('Sub classes', $meta->subClasses);
$this->formatListField('Embedded classes', $meta->subClasses); $this->formatField('Embedded classes', $meta->subClasses);
$this->formatField('Named queries', $meta->namedQueries); $this->formatField('Named queries', $meta->namedQueries);
$this->formatField('Named native queries', $meta->namedNativeQueries); $this->formatField('Named native queries', $meta->namedNativeQueries);
$this->formatField('SQL result set mappings', $meta->sqlResultSetMappings); $this->formatField('SQL result set mappings', $meta->sqlResultSetMappings);
@ -147,6 +148,7 @@ EOT
$this->formatField('Versioned?', $meta->isVersioned); $this->formatField('Versioned?', $meta->isVersioned);
$this->formatField('Version field', $meta->versionField); $this->formatField('Version field', $meta->versionField);
$this->formatField('Read only?', $meta->isReadOnly); $this->formatField('Read only?', $meta->isReadOnly);
$this->formatField('Foo', array('Foo', 'Bar', 'Boo'));
$this->formatEntityListeners($meta->entityListeners); $this->formatEntityListeners($meta->entityListeners);
$this->formatAssociationMappings($meta->associationMappings); $this->formatAssociationMappings($meta->associationMappings);
@ -167,14 +169,14 @@ EOT
} }
} }
protected function getMappedEntities() private function getMappedEntities()
{ {
$entityClassNames = $this->entityManager->getConfiguration() $entityClassNames = $this->entityManager->getConfiguration()
->getMetadataDriverImpl() ->getMetadataDriverImpl()
->getAllClassNames(); ->getAllClassNames();
if (!$entityClassNames) { if (!$entityClassNames) {
throw new \Exception( throw new \InvalidArgumentException(
'You do not have any mapped Doctrine ORM entities according to the current configuration. '. 'You do not have any mapped Doctrine ORM entities according to the current configuration. '.
'If you have entities or mapping files you should check your mapping configuration for errors.' 'If you have entities or mapping files you should check your mapping configuration for errors.'
); );
@ -183,7 +185,7 @@ EOT
return $entityClassNames; return $entityClassNames;
} }
protected function getClassMetadata($entityName) private function getClassMetadata($entityName)
{ {
try { try {
$meta = $this->entityManager->getClassMetadata($entityName); $meta = $this->entityManager->getClassMetadata($entityName);
@ -217,7 +219,7 @@ EOT
return $meta; return $meta;
} }
protected function formatValue($value, $formatBoolean = true) private function formatValue($value)
{ {
if ('' === $value) { if ('' === $value) {
return ''; return '';
@ -227,11 +229,19 @@ EOT
return '<comment>Null</comment>'; return '<comment>Null</comment>';
} }
if (is_bool($value)) {
return '<comment>' . ($value ? 'True' : 'False') . '</comment>';
}
if (empty($value)) { if (empty($value)) {
return '<comment>Empty</comment>'; return '<comment>Empty</comment>';
} }
if (is_array($value)) { if (is_array($value)) {
if (version_compare(phpversion(), '5.4.0', '>=')) {
return json_encode($value, JSON_UNESCAPED_UNICODE|JSON_UNESCAPED_SLASHES);
}
return json_encode($value); return json_encode($value);
} }
@ -243,10 +253,10 @@ EOT
return $value; return $value;
} }
throw new \Exception(sprintf('Do not know how to format value "%s"', print_r($value, true))); throw new \InvalidArgumentException(sprintf('Do not know how to format value "%s"', print_r($value, true)));
} }
protected function formatField($label, $value) private function formatField($label, $value)
{ {
if (null === $value) { if (null === $value) {
$value = '<comment>None</comment>'; $value = '<comment>None</comment>';
@ -255,20 +265,7 @@ EOT
$this->out[] = array(sprintf('<info>%s</info>', $label), $this->formatValue($value)); $this->out[] = array(sprintf('<info>%s</info>', $label), $this->formatValue($value));
} }
protected function formatListField($label, $values) private function formatAssociationMappings($associationMappings)
{
if (!$values) {
$this->formatField($label, '<comment>Empty</comment>');
} else {
$this->formatField($label, array_shift($values));
foreach ($values as $value) {
$this->formatField($label, $value);
}
}
}
protected function formatAssociationMappings($associationMappings)
{ {
$this->formatField('Association mappings:', ''); $this->formatField('Association mappings:', '');
foreach ($associationMappings as $associationName => $mapping) { foreach ($associationMappings as $associationName => $mapping) {
@ -279,28 +276,23 @@ EOT
} }
} }
protected function formatEntityListeners($entityListeners) private function formatEntityListeners($entityListeners)
{ {
$entityListenerNames = array(); $entityListenerNames = array();
foreach ($entityListeners as $entityListener) { foreach ($entityListeners as $entityListener) {
$entityListenerNames[] = get_class($entityListener); $entityListenerNames[] = get_class($entityListener);
} }
$this->formatListField('Entity listeners', $entityListenerNames); $this->formatField('Entity listeners', $entityListenerNames);
} }
protected function formatFieldMappings($fieldMappings) private function formatFieldMappings($fieldMappings)
{ {
$this->formatField('Field mappings:', ''); $this->formatField('Field mappings:', '');
foreach ($fieldMappings as $fieldName => $mapping) { foreach ($fieldMappings as $fieldName => $mapping) {
$this->formatField(sprintf(' %s',$fieldName), ''); $this->formatField(sprintf(' %s',$fieldName), '');
foreach ($mapping as $field => $value) { foreach ($mapping as $field => $value) {
$formatBoolean = true; $this->formatField(sprintf(' %s', $field), $this->formatValue($value));
if (in_array($field, array('id'))) {
$formatBoolean = false;
}
$this->formatField(sprintf(' %s', $field), $this->formatValue($value, $formatBoolean));
} }
} }
} }

View file

@ -18,7 +18,7 @@ class InfoCommandTest extends OrmFunctionalTestCase
private $application; private $application;
/** /**
* @var \Doctrine\ORM\Tools\Console\Command\ClearCache\InfoCommand * @var \Doctrine\ORM\Tools\Console\Command\InfoCommand
*/ */
private $command; private $command;
@ -68,7 +68,7 @@ class InfoCommandTest extends OrmFunctionalTestCase
/** /**
* @expectedException \InvalidArgumentException * @expectedException \InvalidArgumentException
* @expectedExceptionMessage possible matches: "Doctrine\Tests\Models\Cache\AttractionInfo * @expectedExceptionMessage possible matches
*/ */
public function testShowSpecificFuzzyAmbiguous() public function testShowSpecificFuzzyAmbiguous()
{ {
@ -89,21 +89,4 @@ class InfoCommandTest extends OrmFunctionalTestCase
'entityName' => 'AttractionFooBar' 'entityName' => 'AttractionFooBar'
)); ));
} }
/**
* This test takes a long time
*/
public function testShowSpecificSmokeTest()
{
$entityClassNames = $this->_em->getConfiguration()
->getMetadataDriverImpl()
->getAllClassNames();
foreach ($entityClassNames as $entityClassName) {
$this->tester->Execute(array(
'command' => $this->command->getName(),
'entityName' => $entityClassName
));
}
}
} }