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
0ae49f56
Commit
0ae49f56
authored
Dec 29, 2013
by
Benjamin Eberlei
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #481 from deeky666/fix-oracle-test-suite
Fix Oracle test suite
parents
24c1e754
b1a0a22d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
7 deletions
+25
-7
OracleSchemaManager.php
lib/Doctrine/DBAL/Schema/OracleSchemaManager.php
+5
-3
OracleSchemaManagerTest.php
.../Tests/DBAL/Functional/Schema/OracleSchemaManagerTest.php
+14
-0
TemporaryTableTest.php
tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php
+6
-4
No files found.
lib/Doctrine/DBAL/Schema/OracleSchemaManager.php
View file @
0ae49f56
...
@@ -113,14 +113,16 @@ class OracleSchemaManager extends AbstractSchemaManager
...
@@ -113,14 +113,16 @@ class OracleSchemaManager extends AbstractSchemaManager
$tableColumn
[
'column_name'
]
=
''
;
$tableColumn
[
'column_name'
]
=
''
;
}
}
if
(
$tableColumn
[
'data_default'
]
===
'NULL'
)
{
// Default values returned from database sometimes have trailing spaces.
$tableColumn
[
'data_default'
]
=
trim
(
$tableColumn
[
'data_default'
]);
if
(
$tableColumn
[
'data_default'
]
===
''
||
$tableColumn
[
'data_default'
]
===
'NULL'
)
{
$tableColumn
[
'data_default'
]
=
null
;
$tableColumn
[
'data_default'
]
=
null
;
}
}
if
(
null
!==
$tableColumn
[
'data_default'
])
{
if
(
null
!==
$tableColumn
[
'data_default'
])
{
// Default values returned from database are enclosed in single quotes.
// Default values returned from database are enclosed in single quotes.
// Sometimes trailing spaces are also encountered.
$tableColumn
[
'data_default'
]
=
trim
(
$tableColumn
[
'data_default'
],
"'"
);
$tableColumn
[
'data_default'
]
=
trim
(
trim
(
$tableColumn
[
'data_default'
]),
"'"
);
}
}
$precision
=
null
;
$precision
=
null
;
...
...
tests/Doctrine/Tests/DBAL/Functional/Schema/OracleSchemaManagerTest.php
View file @
0ae49f56
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
namespace
Doctrine\Tests\DBAL\Functional\Schema
;
namespace
Doctrine\Tests\DBAL\Functional\Schema
;
use
Doctrine\DBAL\Schema
;
use
Doctrine\DBAL\Schema
;
use
Doctrine\Tests\TestUtil
;
require_once
__DIR__
.
'/../../../TestInit.php'
;
require_once
__DIR__
.
'/../../../TestInit.php'
;
...
@@ -88,4 +89,17 @@ class OracleSchemaManagerTest extends SchemaManagerFunctionalTestCase
...
@@ -88,4 +89,17 @@ class OracleSchemaManagerTest extends SchemaManagerFunctionalTestCase
$this
->
assertTrue
(
$columns
[
'id'
]
->
getNotnull
());
$this
->
assertTrue
(
$columns
[
'id'
]
->
getNotnull
());
$this
->
assertFalse
(
$columns
[
'foo'
]
->
getNotnull
());
$this
->
assertFalse
(
$columns
[
'foo'
]
->
getNotnull
());
}
}
public
function
testListDatabases
()
{
// We need the temp connection that has privileges to create a database.
$sm
=
TestUtil
::
getTempConnection
()
->
getSchemaManager
();
$sm
->
dropAndCreateDatabase
(
'c##test_create_database'
);
$databases
=
$this
->
_sm
->
listDatabases
();
$databases
=
\array_map
(
'strtolower'
,
$databases
);
$this
->
assertEquals
(
true
,
\in_array
(
'c##test_create_database'
,
$databases
));
}
}
}
tests/Doctrine/Tests/DBAL/Functional/TemporaryTableTest.php
View file @
0ae49f56
...
@@ -34,8 +34,9 @@ class TemporaryTableTest extends \Doctrine\Tests\DbalFunctionalTestCase
...
@@ -34,8 +34,9 @@ class TemporaryTableTest extends \Doctrine\Tests\DbalFunctionalTestCase
*/
*/
public
function
testDropTemporaryTableNotAutoCommitTransaction
()
public
function
testDropTemporaryTableNotAutoCommitTransaction
()
{
{
if
(
$this
->
_conn
->
getDatabasePlatform
()
->
getName
()
==
'sqlanywhere'
)
{
if
(
$this
->
_conn
->
getDatabasePlatform
()
->
getName
()
==
'sqlanywhere'
||
$this
->
markTestSkipped
(
"Test does not work on SQL Anywhere."
);
$this
->
_conn
->
getDatabasePlatform
()
->
getName
()
==
'oracle'
)
{
$this
->
markTestSkipped
(
"Test does not work on Oracle and SQL Anywhere."
);
}
}
$platform
=
$this
->
_conn
->
getDatabasePlatform
();
$platform
=
$this
->
_conn
->
getDatabasePlatform
();
...
@@ -71,8 +72,9 @@ class TemporaryTableTest extends \Doctrine\Tests\DbalFunctionalTestCase
...
@@ -71,8 +72,9 @@ class TemporaryTableTest extends \Doctrine\Tests\DbalFunctionalTestCase
*/
*/
public
function
testCreateTemporaryTableNotAutoCommitTransaction
()
public
function
testCreateTemporaryTableNotAutoCommitTransaction
()
{
{
if
(
$this
->
_conn
->
getDatabasePlatform
()
->
getName
()
==
'sqlanywhere'
)
{
if
(
$this
->
_conn
->
getDatabasePlatform
()
->
getName
()
==
'sqlanywhere'
||
$this
->
markTestSkipped
(
"Test does not work on SQL Anywhere."
);
$this
->
_conn
->
getDatabasePlatform
()
->
getName
()
==
'oracle'
)
{
$this
->
markTestSkipped
(
"Test does not work on Oracle and SQL Anywhere."
);
}
}
$platform
=
$this
->
_conn
->
getDatabasePlatform
();
$platform
=
$this
->
_conn
->
getDatabasePlatform
();
...
...
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