#6129 Moved test to AbstractMappingDriverTest.
This commit is contained in:
parent
8580f02c6a
commit
7bf206adb4
6 changed files with 43 additions and 22 deletions
|
@ -653,6 +653,8 @@ class XmlDriver extends FileDriver
|
||||||
{
|
{
|
||||||
$array = array();
|
$array = array();
|
||||||
|
|
||||||
|
$booleanOptions = ['unsigned', 'fixed'];
|
||||||
|
|
||||||
/* @var $option SimpleXMLElement */
|
/* @var $option SimpleXMLElement */
|
||||||
foreach ($options as $option) {
|
foreach ($options as $option) {
|
||||||
if ($option->count()) {
|
if ($option->count()) {
|
||||||
|
@ -664,7 +666,10 @@ class XmlDriver extends FileDriver
|
||||||
$attr = $option->attributes();
|
$attr = $option->attributes();
|
||||||
|
|
||||||
if (isset($attr->name)) {
|
if (isset($attr->name)) {
|
||||||
$array[(string) $attr->name] = $value;
|
$attrName = (string) $attr->name;
|
||||||
|
$array[$attrName] = in_array($attrName, $booleanOptions)
|
||||||
|
? $this->evaluateBoolean($value)
|
||||||
|
: $value;
|
||||||
} else {
|
} else {
|
||||||
$array[] = $value;
|
$array[] = $value;
|
||||||
}
|
}
|
||||||
|
|
|
@ -210,11 +210,14 @@ abstract class AbstractMappingDriverTest extends OrmTestCase
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @depends testEntityTableNameAndInheritance
|
* @depends testEntityTableNameAndInheritance
|
||||||
|
*
|
||||||
* @param ClassMetadata $class
|
* @param ClassMetadata $class
|
||||||
|
*
|
||||||
|
* @return ClassMetadata
|
||||||
*/
|
*/
|
||||||
public function testFieldOptions($class)
|
public function testFieldOptions(ClassMetadata $class)
|
||||||
{
|
{
|
||||||
$expected = array('foo' => 'bar', 'baz' => array('key' => 'val'));
|
$expected = ['foo' => 'bar', 'baz' => ['key' => 'val'], 'fixed' => false];
|
||||||
$this->assertEquals($expected, $class->fieldMappings['name']['options']);
|
$this->assertEquals($expected, $class->fieldMappings['name']['options']);
|
||||||
|
|
||||||
return $class;
|
return $class;
|
||||||
|
@ -226,7 +229,7 @@ abstract class AbstractMappingDriverTest extends OrmTestCase
|
||||||
*/
|
*/
|
||||||
public function testIdFieldOptions($class)
|
public function testIdFieldOptions($class)
|
||||||
{
|
{
|
||||||
$this->assertEquals(array('foo' => 'bar'), $class->fieldMappings['id']['options']);
|
$this->assertEquals(['foo' => 'bar', 'unsigned' => false], $class->fieldMappings['id']['options']);
|
||||||
|
|
||||||
return $class;
|
return $class;
|
||||||
}
|
}
|
||||||
|
@ -244,6 +247,26 @@ abstract class AbstractMappingDriverTest extends OrmTestCase
|
||||||
return $class;
|
return $class;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @group #6129
|
||||||
|
*
|
||||||
|
* @depends testIdentifier
|
||||||
|
*
|
||||||
|
* @param ClassMetadata $class
|
||||||
|
*
|
||||||
|
* @return ClassMetadata
|
||||||
|
*/
|
||||||
|
public function testBooleanValuesForOptionIsSetCorrectly(ClassMetadata $class)
|
||||||
|
{
|
||||||
|
$this->assertInternalType('bool', $class->fieldMappings['id']['options']['unsigned']);
|
||||||
|
$this->assertFalse($class->fieldMappings['id']['options']['unsigned']);
|
||||||
|
|
||||||
|
$this->assertInternalType('bool', $class->fieldMappings['name']['options']['fixed']);
|
||||||
|
$this->assertFalse($class->fieldMappings['name']['options']['fixed']);
|
||||||
|
|
||||||
|
return $class;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @depends testIdentifier
|
* @depends testIdentifier
|
||||||
* @param ClassMetadata $class
|
* @param ClassMetadata $class
|
||||||
|
@ -1048,14 +1071,14 @@ class User
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @Id
|
* @Id
|
||||||
* @Column(type="integer", options={"foo": "bar"})
|
* @Column(type="integer", options={"foo": "bar", "unsigned": false})
|
||||||
* @generatedValue(strategy="AUTO")
|
* @generatedValue(strategy="AUTO")
|
||||||
* @SequenceGenerator(sequenceName="tablename_seq", initialValue=1, allocationSize=100)
|
* @SequenceGenerator(sequenceName="tablename_seq", initialValue=1, allocationSize=100)
|
||||||
**/
|
**/
|
||||||
public $id;
|
public $id;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @Column(length=50, nullable=true, unique=true, options={"foo": "bar", "baz": {"key": "val"}})
|
* @Column(length=50, nullable=true, unique=true, options={"foo": "bar", "baz": {"key": "val"}, "fixed": false})
|
||||||
*/
|
*/
|
||||||
public $name;
|
public $name;
|
||||||
|
|
||||||
|
@ -1129,7 +1152,7 @@ class User
|
||||||
'fieldName' => 'id',
|
'fieldName' => 'id',
|
||||||
'type' => 'integer',
|
'type' => 'integer',
|
||||||
'columnName' => 'id',
|
'columnName' => 'id',
|
||||||
'options' => array('foo' => 'bar'),
|
'options' => array('foo' => 'bar', 'unsigned' => false),
|
||||||
));
|
));
|
||||||
$metadata->mapField(array(
|
$metadata->mapField(array(
|
||||||
'fieldName' => 'name',
|
'fieldName' => 'name',
|
||||||
|
@ -1138,7 +1161,7 @@ class User
|
||||||
'unique' => true,
|
'unique' => true,
|
||||||
'nullable' => true,
|
'nullable' => true,
|
||||||
'columnName' => 'name',
|
'columnName' => 'name',
|
||||||
'options' => array('foo' => 'bar', 'baz' => array('key' => 'val')),
|
'options' => array('foo' => 'bar', 'baz' => array('key' => 'val'), 'fixed' => false),
|
||||||
));
|
));
|
||||||
$metadata->mapField(array(
|
$metadata->mapField(array(
|
||||||
'fieldName' => 'email',
|
'fieldName' => 'email',
|
||||||
|
@ -1474,4 +1497,4 @@ class SingleTableEntityIncompleteDiscriminatorColumnMapping
|
||||||
class SingleTableEntityIncompleteDiscriminatorColumnMappingSub1
|
class SingleTableEntityIncompleteDiscriminatorColumnMappingSub1
|
||||||
extends SingleTableEntityIncompleteDiscriminatorColumnMapping {}
|
extends SingleTableEntityIncompleteDiscriminatorColumnMapping {}
|
||||||
class SingleTableEntityIncompleteDiscriminatorColumnMappingSub2
|
class SingleTableEntityIncompleteDiscriminatorColumnMappingSub2
|
||||||
extends SingleTableEntityIncompleteDiscriminatorColumnMapping {}
|
extends SingleTableEntityIncompleteDiscriminatorColumnMapping {}
|
||||||
|
|
|
@ -140,16 +140,6 @@ class XmlMappingDriverTest extends AbstractMappingDriverTest
|
||||||
$this->createClassMetadata('Doctrine\Tests\Models\Generic\SerializationModel');
|
$this->createClassMetadata('Doctrine\Tests\Models\Generic\SerializationModel');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @group #6129
|
|
||||||
*/
|
|
||||||
public function testBooleanValuesForOptionIsSetCorrectly()
|
|
||||||
{
|
|
||||||
$class = $this->createClassMetadata(User::class);
|
|
||||||
$this->assertInternalType('bool', $class->fieldMappings['name']['options']['bool_opt']);
|
|
||||||
$this->assertFalse($class->fieldMappings['name']['options']['bool_opt']);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $xmlMappingFile
|
* @param string $xmlMappingFile
|
||||||
* @dataProvider dataValidSchema
|
* @dataProvider dataValidSchema
|
||||||
|
|
|
@ -19,7 +19,7 @@ $metadata->mapField(array(
|
||||||
'fieldName' => 'id',
|
'fieldName' => 'id',
|
||||||
'type' => 'integer',
|
'type' => 'integer',
|
||||||
'columnName' => 'id',
|
'columnName' => 'id',
|
||||||
'options' => array('foo' => 'bar'),
|
'options' => array('foo' => 'bar', 'unsigned' => false),
|
||||||
));
|
));
|
||||||
$metadata->mapField(array(
|
$metadata->mapField(array(
|
||||||
'fieldName' => 'name',
|
'fieldName' => 'name',
|
||||||
|
@ -28,7 +28,7 @@ $metadata->mapField(array(
|
||||||
'unique' => true,
|
'unique' => true,
|
||||||
'nullable' => true,
|
'nullable' => true,
|
||||||
'columnName' => 'name',
|
'columnName' => 'name',
|
||||||
'options' => array('foo' => 'bar', 'baz' => array('key' => 'val')),
|
'options' => array('foo' => 'bar', 'baz' => array('key' => 'val'), 'fixed' => false),
|
||||||
));
|
));
|
||||||
$metadata->mapField(array(
|
$metadata->mapField(array(
|
||||||
'fieldName' => 'email',
|
'fieldName' => 'email',
|
||||||
|
|
|
@ -41,6 +41,7 @@
|
||||||
<sequence-generator sequence-name="tablename_seq" allocation-size="100" initial-value="1" />
|
<sequence-generator sequence-name="tablename_seq" allocation-size="100" initial-value="1" />
|
||||||
<options>
|
<options>
|
||||||
<option name="foo">bar</option>
|
<option name="foo">bar</option>
|
||||||
|
<option name="unsigned">false</option>
|
||||||
</options>
|
</options>
|
||||||
</id>
|
</id>
|
||||||
|
|
||||||
|
@ -50,7 +51,7 @@
|
||||||
<option name="baz">
|
<option name="baz">
|
||||||
<option name="key">val</option>
|
<option name="key">val</option>
|
||||||
</option>
|
</option>
|
||||||
<option name="bool_opt">false</option>
|
<option name="fixed">false</option>
|
||||||
</options>
|
</options>
|
||||||
</field>
|
</field>
|
||||||
<field name="email" column="user_email" type="string" column-definition="CHAR(32) NOT NULL" />
|
<field name="email" column="user_email" type="string" column-definition="CHAR(32) NOT NULL" />
|
||||||
|
|
|
@ -18,6 +18,7 @@ Doctrine\Tests\ORM\Mapping\User:
|
||||||
initialValue: 1
|
initialValue: 1
|
||||||
options:
|
options:
|
||||||
foo: bar
|
foo: bar
|
||||||
|
unsigned: false
|
||||||
fields:
|
fields:
|
||||||
name:
|
name:
|
||||||
type: string
|
type: string
|
||||||
|
@ -28,6 +29,7 @@ Doctrine\Tests\ORM\Mapping\User:
|
||||||
foo: bar
|
foo: bar
|
||||||
baz:
|
baz:
|
||||||
key: val
|
key: val
|
||||||
|
fixed: false
|
||||||
email:
|
email:
|
||||||
type: string
|
type: string
|
||||||
column: user_email
|
column: user_email
|
||||||
|
|
Loading…
Add table
Reference in a new issue