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
fb0d0a5c
Unverified
Commit
fb0d0a5c
authored
Sep 16, 2017
by
Gawain Lynch
Committed by
Luís Cobucci
Nov 21, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Tests] Check for correct collation when column names are similar
parent
8302030c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
23 deletions
+18
-23
SqliteSchemaManagerTest.php
tests/Doctrine/Tests/DBAL/Schema/SqliteSchemaManagerTest.php
+18
-23
No files found.
tests/Doctrine/Tests/DBAL/Schema/SqliteSchemaManagerTest.php
View file @
fb0d0a5c
...
...
@@ -2,45 +2,40 @@
namespace
Doctrine\Tests\DBAL\Schema
;
use
Doctrine\DBAL\Connection
;
use
Doctrine\DBAL\Platforms\SqlitePlatform
;
use
Doctrine\DBAL\Schema\SqliteSchemaManager
;
class
SqliteSchemaManagerTest
extends
\PHPUnit_Framework_TestCase
{
/**
* @dataProvider getDataColumnCollation
*
* @group 2865
*/
public
function
testParseColumnCollation
(
$collation
,
$column
,
$sql
)
public
function
testParseColumnCollation
(
$collation
,
string
$column
,
string
$sql
)
:
void
{
$conn
=
$this
->
getMockBuilder
(
'Doctrine\DBAL\Connection'
)
->
disableOriginalConstructor
()
->
getMock
(
);
$conn
->
expects
(
$this
->
any
())
->
method
(
'getDatabasePlatform'
)
->
will
(
$this
->
returnValue
(
new
SqlitePlatform
()
));
$conn
=
$this
->
createMock
(
Connection
::
class
);
$conn
->
method
(
'getDatabasePlatform'
)
->
willReturn
(
new
SqlitePlatform
(
));
$manager
=
new
SqliteSchemaManager
(
$conn
);
$ref
=
new
\ReflectionMethod
(
$manager
,
'parseColumnCollationFromSQL'
);
$ref
=
new
\ReflectionMethod
(
$manager
,
'parseColumnCollationFromSQL'
);
$ref
->
setAccessible
(
true
);
$this
->
assertEquals
(
$collation
,
$ref
->
invoke
(
$manager
,
$column
,
$sql
));
self
::
assertSame
(
$collation
,
$ref
->
invoke
(
$manager
,
$column
,
$sql
));
}
public
function
getDataColumnCollation
()
{
return
array
(
array
(
'RTRIM'
,
'a'
,
'CREATE TABLE "a" ("a" text DEFAULT "aa" COLLATE "RTRIM" NOT NULL)'
),
array
(
'utf-8'
,
'a'
,
'CREATE TABLE "a" ("b" text UNIQUE NOT NULL COLLATE NOCASE, "a" text DEFAULT "aa" COLLATE "utf-8" NOT NULL)'
),
array
(
'NOCASE'
,
'a'
,
'CREATE TABLE "a" ("a" text DEFAULT (lower(ltrim(" a") || rtrim("a "))) CHECK ("a") NOT NULL COLLATE NOCASE UNIQUE, "b" text COLLATE RTRIM)'
),
array
(
false
,
'a'
,
'CREATE TABLE "a" ("a" text CHECK ("a") NOT NULL, "b" text COLLATE RTRIM)'
),
array
(
'RTRIM'
,
'a"b'
,
'CREATE TABLE "a" ("a""b" text COLLATE RTRIM)'
),
);
return
[
[
'RTRIM'
,
'a'
,
'CREATE TABLE "a" ("a" text DEFAULT "aa" COLLATE "RTRIM" NOT NULL)'
],
[
'utf-8'
,
'a'
,
'CREATE TABLE "a" ("b" text UNIQUE NOT NULL COLLATE NOCASE, "a" text DEFAULT "aa" COLLATE "utf-8" NOT NULL)'
],
[
'NOCASE'
,
'a'
,
'CREATE TABLE "a" ("a" text DEFAULT (lower(ltrim(" a") || rtrim("a "))) CHECK ("a") NOT NULL COLLATE NOCASE UNIQUE, "b" text COLLATE RTRIM)'
],
[
false
,
'a'
,
'CREATE TABLE "a" ("a" text CHECK ("a") NOT NULL, "b" text COLLATE RTRIM)'
],
[
'RTRIM'
,
'a"b'
,
'CREATE TABLE "a" ("a""b" text COLLATE RTRIM)'
],
[
'BINARY'
,
'b'
,
'CREATE TABLE "a" (bb TEXT COLLATE RTRIM, b VARCHAR(42) NOT NULL COLLATE BINARY)'
],
[
'BINARY'
,
'b'
,
'CREATE TABLE "a" (bbb TEXT COLLATE NOCASE, bb TEXT COLLATE RTRIM, b VARCHAR(42) NOT NULL COLLATE BINARY)'
],
[
'BINARY'
,
'b'
,
'CREATE TABLE "a" (b VARCHAR(42) NOT NULL COLLATE BINARY, bb TEXT COLLATE RTRIM)'
],
];
}
}
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