Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
b2370d5e
Commit
b2370d5e
authored
Jan 19, 2012
by
Sascha Beining
Committed by
Benjamin Eberlei
Jan 21, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DBAL 205 - Fixes problem with composite foreign key support in MySqlSchemaManager
parent
7c336921
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
135 additions
and
17 deletions
+135
-17
MySqlSchemaManager.php
lib/Doctrine/DBAL/Schema/MySqlSchemaManager.php
+35
-17
SchemaManagerFunctionalTestCase.php
...BAL/Functional/Schema/SchemaManagerFunctionalTestCase.php
+24
-0
MySqlSchemaManagerTest.php
tests/Doctrine/Tests/DBAL/Schema/MySqlSchemaManagerTest.php
+76
-0
No files found.
lib/Doctrine/DBAL/Schema/MySqlSchemaManager.php
View file @
b2370d5e
...
...
@@ -170,26 +170,44 @@ class MySqlSchemaManager extends AbstractSchemaManager
return
new
Column
(
$tableColumn
[
'field'
],
\Doctrine\DBAL\Types\Type
::
getType
(
$type
),
$options
);
}
p
ublic
function
_getPortableTableForeignKeyDefinition
(
$tableForeignKey
)
p
rotected
function
_getPortableTableForeignKeysList
(
$tableForeignKeys
)
{
$tableForeignKey
=
array_change_key_case
(
$tableForeignKey
,
CASE_LOWER
);
$list
=
array
();
foreach
(
$tableForeignKeys
as
$key
=>
$value
)
{
$value
=
array_change_key_case
(
$value
,
CASE_LOWER
);
if
(
!
isset
(
$list
[
$value
[
'constraint_name'
]]))
{
if
(
!
isset
(
$value
[
'delete_rule'
])
||
$value
[
'delete_rule'
]
==
"RESTRICT"
)
{
$value
[
'delete_rule'
]
=
null
;
}
if
(
!
isset
(
$value
[
'update_rule'
])
||
$value
[
'update_rule'
]
==
"RESTRICT"
)
{
$value
[
'update_rule'
]
=
null
;
}
if
(
!
isset
(
$tableForeignKey
[
'delete_rule'
])
||
$tableForeignKey
[
'delete_rule'
]
==
"RESTRICT"
)
{
$tableForeignKey
[
'delete_rule'
]
=
null
;
$list
[
$value
[
'constraint_name'
]]
=
array
(
'name'
=>
$value
[
'constraint_name'
],
'local'
=>
array
(),
'foreign'
=>
array
(),
'foreignTable'
=>
$value
[
'referenced_table_name'
],
'onDelete'
=>
$value
[
'delete_rule'
],
'onUpdate'
=>
$value
[
'update_rule'
],
);
}
$list
[
$value
[
'constraint_name'
]][
'local'
][]
=
$value
[
'column_name'
];
$list
[
$value
[
'constraint_name'
]][
'foreign'
][]
=
$value
[
'referenced_column_name'
];
}
if
(
!
isset
(
$tableForeignKey
[
'update_rule'
])
||
$tableForeignKey
[
'update_rule'
]
==
"RESTRICT"
)
{
$tableForeignKey
[
'update_rule'
]
=
null
;
$result
=
array
();
foreach
(
$list
AS
$constraint
)
{
$result
[]
=
new
ForeignKeyConstraint
(
array_values
(
$constraint
[
'local'
]),
$constraint
[
'foreignTable'
],
array_values
(
$constraint
[
'foreign'
]),
$constraint
[
'name'
],
array
(
'onDelete'
=>
$constraint
[
'onDelete'
],
'onUpdate'
=>
$constraint
[
'onUpdate'
],
)
);
}
return
new
ForeignKeyConstraint
(
(
array
)
$tableForeignKey
[
'column_name'
],
$tableForeignKey
[
'referenced_table_name'
],
(
array
)
$tableForeignKey
[
'referenced_column_name'
],
$tableForeignKey
[
'constraint_name'
],
array
(
'onUpdate'
=>
$tableForeignKey
[
'update_rule'
],
'onDelete'
=>
$tableForeignKey
[
'delete_rule'
],
)
);
return
$result
;
}
}
\ No newline at end of file
}
tests/Doctrine/Tests/DBAL/Functional/Schema/SchemaManagerFunctionalTestCase.php
View file @
b2370d5e
...
...
@@ -615,4 +615,28 @@ class SchemaManagerFunctionalTestCase extends \Doctrine\Tests\DbalFunctionalTest
}
$this
->
assertTrue
(
$foundTable
,
"Could not find new table"
);
}
public
function
testListForeignKeysComposite
()
{
if
(
!
$this
->
_conn
->
getDatabasePlatform
()
->
supportsForeignKeyConstraints
())
{
$this
->
markTestSkipped
(
'Does not support foreign key constraints.'
);
}
$this
->
_sm
->
createTable
(
$this
->
getTestTable
(
'test_create_fk3'
));
$this
->
_sm
->
createTable
(
$this
->
getTestCompositeTable
(
'test_create_fk4'
));
$foreignKey
=
new
\Doctrine\DBAL\Schema\ForeignKeyConstraint
(
array
(
'id'
,
'foreign_key_test'
),
'test_create_fk4'
,
array
(
'id'
,
'other_id'
),
'foreign_key_test_fk'
);
$this
->
_sm
->
createForeignKey
(
$foreignKey
,
'test_create_fk3'
);
$fkeys
=
$this
->
_sm
->
listTableForeignKeys
(
'test_create_fk3'
);
$this
->
assertEquals
(
1
,
count
(
$fkeys
),
"Table 'test_create_fk3' has to have one foreign key."
);
$this
->
assertInstanceOf
(
'Doctrine\DBAL\Schema\ForeignKeyConstraint'
,
$fkeys
[
0
]);
$this
->
assertEquals
(
array
(
'id'
,
'foreign_key_test'
),
array_map
(
'strtolower'
,
$fkeys
[
0
]
->
getLocalColumns
()));
$this
->
assertEquals
(
array
(
'id'
,
'other_id'
),
array_map
(
'strtolower'
,
$fkeys
[
0
]
->
getForeignColumns
()));
}
}
tests/Doctrine/Tests/DBAL/Schema/MySqlSchemaManagerTest.php
0 → 100644
View file @
b2370d5e
<?php
namespace
Doctrine\Tests\DBAL\Schema
;
require_once
__DIR__
.
'/../../TestInit.php'
;
use
Doctrine\Common\EventManager
;
use
Doctrine\DBAL\Connection
;
use
Doctrine\DBAL\Configuration
;
use
Doctrine\DBAL\Events
;
use
Doctrine\DBAL\Schema\MySqlSchemaManager
;
use
Doctrine\Tests\DBAL\Mocks
;
use
Doctrine\Tests\TestUtil
;
class
MySqlSchemaManagerTest
extends
\PHPUnit_Framework_TestCase
{
/**
*
* @var \Doctrine\DBAL\Schema\AbstractSchemaManager
*/
private
$manager
;
public
function
setUp
()
{
$eventManager
=
new
EventManager
();
$driverMock
=
$this
->
getMock
(
'Doctrine\DBAL\Driver'
);
$platform
=
$this
->
getMock
(
'Doctrine\DBAL\Platforms\MySqlPlatform'
);
$this
->
conn
=
$this
->
getMock
(
'Doctrine\DBAL\Connection'
,
array
(
'fetchAll'
),
array
(
array
(
'platform'
=>
$platform
),
$driverMock
,
new
Configuration
(),
$eventManager
)
);
$this
->
manager
=
new
MySqlSchemaManager
(
$this
->
conn
);
}
public
function
testCompositeForeignKeys
()
{
$this
->
conn
->
expects
(
$this
->
once
())
->
method
(
'fetchAll'
)
->
will
(
$this
->
returnValue
(
$this
->
getFKDefinition
()));
$fkeys
=
$this
->
manager
->
listTableForeignKeys
(
'dummy'
);
$this
->
assertEquals
(
1
,
count
(
$fkeys
),
"Table has to have one foreign key."
);
$this
->
assertInstanceOf
(
'Doctrine\DBAL\Schema\ForeignKeyConstraint'
,
$fkeys
[
0
]);
$this
->
assertEquals
(
array
(
'column_1'
,
'column_2'
,
'column_3'
),
array_map
(
'strtolower'
,
$fkeys
[
0
]
->
getLocalColumns
()));
$this
->
assertEquals
(
array
(
'column_1'
,
'column_2'
,
'column_3'
),
array_map
(
'strtolower'
,
$fkeys
[
0
]
->
getForeignColumns
()));
}
public
function
getFKDefinition
()
{
return
array
(
array
(
"CONSTRAINT_NAME"
=>
"FK_C1B1712387FE737264DE5A5511B8B3E"
,
"COLUMN_NAME"
=>
"column_1"
,
"REFERENCED_TABLE_NAME"
=>
"dummy"
,
"REFERENCED_COLUMN_NAME"
=>
"column_1"
,
"update_rule"
=>
"RESTRICT"
,
"delete_rule"
=>
"RESTRICT"
,
),
array
(
"CONSTRAINT_NAME"
=>
"FK_C1B1712387FE737264DE5A5511B8B3E"
,
"COLUMN_NAME"
=>
"column_2"
,
"REFERENCED_TABLE_NAME"
=>
"dummy"
,
"REFERENCED_COLUMN_NAME"
=>
"column_2"
,
"update_rule"
=>
"RESTRICT"
,
"delete_rule"
=>
"RESTRICT"
,
),
array
(
"CONSTRAINT_NAME"
=>
"FK_C1B1712387FE737264DE5A5511B8B3E"
,
"COLUMN_NAME"
=>
"column_3"
,
"REFERENCED_TABLE_NAME"
=>
"dummy"
,
"REFERENCED_COLUMN_NAME"
=>
"column_3"
,
"update_rule"
=>
"RESTRICT"
,
"delete_rule"
=>
"RESTRICT"
,
)
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment