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
f4e0c5dd
Unverified
Commit
f4e0c5dd
authored
Nov 19, 2017
by
jeremy-smith
Committed by
Luís Cobucci
Nov 19, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add failing tests for #2596
parent
fe824157
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
+26
-0
SchemaManagerFunctionalTestCase.php
...BAL/Functional/Schema/SchemaManagerFunctionalTestCase.php
+26
-0
No files found.
tests/Doctrine/Tests/DBAL/Functional/Schema/SchemaManagerFunctionalTestCase.php
View file @
f4e0c5dd
...
...
@@ -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