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
c6785e34
Unverified
Commit
c6785e34
authored
Nov 19, 2017
by
Luís Cobucci
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'custom-type-comment-regex' into 2.6
Backporting
https://github.com/doctrine/dbal/pull/2905
parents
fe824157
bc6ea16c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
1 deletion
+27
-1
AbstractSchemaManager.php
lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php
+1
-1
SchemaManagerFunctionalTestCase.php
...BAL/Functional/Schema/SchemaManagerFunctionalTestCase.php
+26
-0
No files found.
lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php
View file @
c6785e34
...
...
@@ -1093,7 +1093,7 @@ abstract class AbstractSchemaManager
*/
public
function
extractDoctrineTypeFromComment
(
$comment
,
$currentType
)
{
if
(
preg_match
(
"(\(DC2Type:(
[a-zA-Z0-9_]
+)\))"
,
$comment
,
$match
))
{
if
(
preg_match
(
"(\(DC2Type:(
((?!\)).)
+)\))"
,
$comment
,
$match
))
{
$currentType
=
$match
[
1
];
}
...
...
tests/Doctrine/Tests/DBAL/Functional/Schema/SchemaManagerFunctionalTestCase.php
View file @
c6785e34
...
...
@@ -1307,4 +1307,30 @@ class SchemaManagerFunctionalTestCase extends \Doctrine\Tests\DbalFunctionalTest
self
::
assertFalse
(
$tableDiff
);
}
/**
* @dataProvider commentsProvider
*
* @group 2596
*/
public
function
testExtractDoctrineTypeFromComment
(
string
$comment
,
string
$expected
,
string
$currentType
)
:
void
{
$result
=
$this
->
_sm
->
extractDoctrineTypeFromComment
(
$comment
,
$currentType
);
self
::
assertSame
(
$expected
,
$result
);
}
public
function
commentsProvider
()
:
array
{
$currentType
=
'current type'
;
return
[
'invalid custom type comments'
=>
[
'should.return.current.type'
,
$currentType
,
$currentType
],
'valid doctrine type'
=>
[
'(DC2Type:guid)'
,
'guid'
,
$currentType
],
'valid with dots'
=>
[
'(DC2Type:type.should.return)'
,
'type.should.return'
,
$currentType
],
'valid with namespace'
=>
[
'(DC2Type:Namespace\Class)'
,
'Namespace\Class'
,
$currentType
],
'valid with extra closing bracket'
=>
[
'(DC2Type:should.stop)).before)'
,
'should.stop'
,
$currentType
],
'valid with extra opening brackets'
=>
[
'(DC2Type:should((.stop)).before)'
,
'should((.stop'
,
$currentType
],
];
}
}
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