minor #13063 [2.3] [Bridge] [Propel] minor improvements to the Propel bridge. (hhamon)

This PR was merged into the 2.3 branch.

Discussion
----------

[2.3] [Bridge] [Propel] minor improvements to the Propel bridge.

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | ~
| License       | MIT
| Doc PR        | ~

Commits
-------

6d9d460 [Bridge] [Propel] minor improvements to the Propel bridge.
This commit is contained in:
Fabien Potencier 2014-12-24 06:49:41 +01:00
commit 9ea3f6ac2f
13 changed files with 75 additions and 64 deletions

View File

@ -26,7 +26,7 @@ class PropelDataCollector extends DataCollector
/**
* Propel logger.
*
* @var \Symfony\Bridge\Propel1\Logger\PropelLogger
* @var PropelLogger
*/
private $logger;
@ -63,7 +63,7 @@ class PropelDataCollector extends DataCollector
/**
* Returns the collector name.
*
* @return string The collector name.
* @return string
*/
public function getName()
{
@ -71,9 +71,9 @@ class PropelDataCollector extends DataCollector
}
/**
* Returns queries.
* Returns the collected stats for all executed SQL queries.
*
* @return array Queries
* @return array
*/
public function getQueries()
{
@ -83,7 +83,7 @@ class PropelDataCollector extends DataCollector
/**
* Returns the query count.
*
* @return int The query count
* @return int
*/
public function getQueryCount()
{
@ -91,9 +91,9 @@ class PropelDataCollector extends DataCollector
}
/**
* Returns the total time of queries.
* Returns the total time spent on running all queries.
*
* @return float The total time of queries
* @return float
*/
public function getTime()
{
@ -106,9 +106,9 @@ class PropelDataCollector extends DataCollector
}
/**
* Creates an array of Build objects.
* Computes the stats of all executed SQL queries.
*
* @return array An array of Build objects
* @return array
*/
private function buildQueries()
{
@ -136,9 +136,9 @@ class PropelDataCollector extends DataCollector
}
/**
* Count queries.
* Returns the total count of SQL queries.
*
* @return int The number of queries.
* @return int
*/
private function countQueries()
{

View File

@ -26,6 +26,12 @@ class PropelFactory implements UserProviderFactoryInterface
private $key;
private $providerId;
/**
* Constructor.
*
* @param string $key
* @param string $providerId
*/
public function __construct($key, $providerId)
{
$this->key = $key;
@ -38,7 +44,7 @@ class PropelFactory implements UserProviderFactoryInterface
->setDefinition($id, new DefinitionDecorator($this->providerId))
->addArgument($config['class'])
->addArgument($config['property'])
;
;
}
public function getKey()
@ -50,9 +56,14 @@ class PropelFactory implements UserProviderFactoryInterface
{
$node
->children()
->scalarNode('class')->isRequired()->cannotBeEmpty()->end()
->scalarNode('property')->defaultNull()->end()
->scalarNode('class')
->isRequired()
->cannotBeEmpty()
->end()
->scalarNode('property')
->defaultNull()
->end()
->end()
;
;
}
}

View File

@ -55,11 +55,19 @@ class ModelType extends AbstractType
*/
private $propertyAccessor;
/**
* Constructor.
*
* @param PropertyAccessorInterface|null $propertyAccessor
*/
public function __construct(PropertyAccessorInterface $propertyAccessor = null)
{
$this->propertyAccessor = $propertyAccessor ?: PropertyAccess::createPropertyAccessor();
}
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
if ($options['multiple']) {
@ -67,6 +75,9 @@ class ModelType extends AbstractType
}
}
/**
* {@inheritdoc}
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$propertyAccessor = $this->propertyAccessor;
@ -97,11 +108,17 @@ class ModelType extends AbstractType
));
}
/**
* {@inheritdoc}
*/
public function getParent()
{
return 'choice';
}
/**
* {@inheritdoc}
*/
public function getName()
{
return 'model';

View File

@ -40,6 +40,9 @@ class TranslationCollectionType extends AbstractType
$builder->addEventSubscriber($listener);
}
/**
* {@inheritdoc}
*/
public function getParent()
{
return 'collection';

View File

@ -92,18 +92,19 @@ class PropelDataCollectorTest extends Propel1TestCase
private function createCollector($queries)
{
$config = $this->getMock('\PropelConfiguration');
$config
->expects($this->any())
->method('getParameter')
->will($this->returnArgument(1))
;
;
$logger = $this->getMock('\Symfony\Bridge\Propel1\Logger\PropelLogger');
$logger
->expects($this->any())
->method('getQueries')
->will($this->returnValue($queries))
;
;
return new PropelDataCollector($logger, $config);
}

View File

@ -14,7 +14,6 @@ namespace Symfony\Bridge\Propel1\Tests\Fixtures;
class Column
{
private $name;
private $type;
public function __construct($name, $type)
@ -35,13 +34,13 @@ class Column
}
switch ($this->type) {
case \PropelColumnTypes::CHAR:
case \PropelColumnTypes::VARCHAR:
case \PropelColumnTypes::LONGVARCHAR:
case \PropelColumnTypes::BLOB:
case \PropelColumnTypes::CLOB:
case \PropelColumnTypes::CLOB_EMU:
return true;
case \PropelColumnTypes::CHAR:
case \PropelColumnTypes::VARCHAR:
case \PropelColumnTypes::LONGVARCHAR:
case \PropelColumnTypes::BLOB:
case \PropelColumnTypes::CLOB:
case \PropelColumnTypes::CLOB_EMU:
return true;
}
return false;
@ -54,6 +53,6 @@ class Column
public function isNotNull()
{
return ('id' === $this->name);
return 'id' === $this->name;
}
}

View File

@ -11,16 +11,11 @@
namespace Symfony\Bridge\Propel1\Tests\Fixtures;
use PropelPDO;
class Item implements \Persistent
{
private $id;
private $value;
private $groupName;
private $price;
public function __construct($id = null, $value = null, $groupName = null, $price = null)
@ -98,11 +93,11 @@ class Item implements \Persistent
{
}
public function delete(PropelPDO $con = null)
public function delete(\PropelPDO $con = null)
{
}
public function save(PropelPDO $con = null)
public function save(\PropelPDO $con = null)
{
}
}

View File

@ -11,16 +11,11 @@
namespace Symfony\Bridge\Propel1\Tests\Fixtures;
use PropelPDO;
class TranslatableItem implements \Persistent
{
private $id;
private $currentTranslations;
private $groupName;
private $price;
public function __construct($id = null, $translations = array())
@ -91,15 +86,15 @@ class TranslatableItem implements \Persistent
{
}
public function delete(PropelPDO $con = null)
public function delete(\PropelPDO $con = null)
{
}
public function save(PropelPDO $con = null)
public function save(\PropelPDO $con = null)
{
}
public function getTranslation($locale = 'de', PropelPDO $con = null)
public function getTranslation($locale = 'de', \PropelPDO $con = null)
{
if (!isset($this->currentTranslations[$locale])) {
$translation = new TranslatableItemI18n();

View File

@ -11,18 +11,12 @@
namespace Symfony\Bridge\Propel1\Tests\Fixtures;
use PropelPDO;
class TranslatableItemI18n implements \Persistent
{
private $id;
private $locale;
private $value;
private $value2;
private $item;
public function __construct($id = null, $locale = null, $value = null)
@ -84,11 +78,11 @@ class TranslatableItemI18n implements \Persistent
{
}
public function delete(PropelPDO $con = null)
public function delete(\PropelPDO $con = null)
{
}
public function save(PropelPDO $con = null)
public function save(\PropelPDO $con = null)
{
}

View File

@ -249,7 +249,7 @@ class ModelChoiceListTest extends Propel1TestCase
*/
public function testEmptyClass()
{
$choiceList = new ModelChoiceList('');
new ModelChoiceList('');
}
/**
@ -257,6 +257,6 @@ class ModelChoiceListTest extends Propel1TestCase
*/
public function testInvalidClass()
{
$choiceList = new ModelChoiceList('Foo\Bar\DoesNotExistClass');
new ModelChoiceList('Foo\Bar\DoesNotExistClass');
}
}

View File

@ -11,7 +11,6 @@
namespace Symfony\Bridge\Propel1\Tests\Form\DataTransformer;
use PropelObjectCollection;
use Symfony\Bridge\Propel1\Form\DataTransformer\CollectionToArrayTransformer;
use Symfony\Bridge\Propel1\Tests\Propel1TestCase;
@ -32,7 +31,7 @@ class CollectionToArrayTransformerTest extends Propel1TestCase
public function testTransform()
{
$result = $this->transformer->transform(new PropelObjectCollection());
$result = $this->transformer->transform(new \PropelObjectCollection());
$this->assertTrue(is_array($result));
$this->assertCount(0, $result);
@ -56,7 +55,7 @@ class CollectionToArrayTransformerTest extends Propel1TestCase
public function testTransformWithData()
{
$coll = new PropelObjectCollection();
$coll = new \PropelObjectCollection();
$coll->setData(array('foo', 'bar'));
$result = $this->transformer->transform($coll);

View File

@ -18,16 +18,20 @@ use Symfony\Component\Form\Guess\Guess;
class PropelTypeGuesserTest extends Propel1TestCase
{
const CLASS_NAME = 'Symfony\Bridge\Propel1\Tests\Fixtures\Item';
const UNKNOWN_CLASS_NAME = 'Symfony\Bridge\Propel1\Tests\Fixtures\UnknownItem';
private $guesser;
public function setUp()
protected function setUp()
{
$this->guesser = new PropelTypeGuesser();
}
protected function tearDown()
{
$this->guesser = null;
}
public function testGuessMaxLengthWithText()
{
$value = $this->guesser->guessMaxLength(self::CLASS_NAME, 'value');

View File

@ -23,16 +23,9 @@ class TranslationCollectionTypeTest extends TypeTestCase
const TRANSLATABLE_I18N_CLASS = 'Symfony\Bridge\Propel1\Tests\Fixtures\TranslatableItemI18n';
const NON_TRANSLATION_CLASS = 'Symfony\Bridge\Propel1\Tests\Fixtures\Item';
protected function setUp()
{
parent::setUp();
}
protected function getExtensions()
{
return array_merge(parent::getExtensions(), array(
new PropelExtension(),
));
return array(new PropelExtension());
}
public function testTranslationsAdded()