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
f0534f3d
Commit
f0534f3d
authored
Sep 05, 2015
by
Marco Pivetta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#869 - DBAL-1293 - basic coverage for the conversion exception
parent
ae0a2051
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
10 deletions
+50
-10
ConversionException.php
lib/Doctrine/DBAL/Types/ConversionException.php
+11
-10
ConversionExceptionTest.php
tests/Doctrine/Tests/DBAL/Types/ConversionExceptionTest.php
+39
-0
No files found.
lib/Doctrine/DBAL/Types/ConversionException.php
View file @
f0534f3d
...
...
@@ -77,19 +77,20 @@ class ConversionException extends \Doctrine\DBAL\DBALException
*/
static
public
function
conversionFailedInvalidType
(
$value
,
$toType
,
array
$possibleTypes
)
{
$actualType
=
gettype
(
$value
);
if
(
$actualType
===
'object'
)
{
$actualType
.=
' ('
.
get_class
(
$value
)
.
')'
;
if
(
!
method_exists
(
$value
,
'__toString'
))
{
$value
=
'object'
;
}
$actualType
=
is_object
(
$value
)
?
get_class
(
$value
)
:
gettype
(
$value
);
if
(
is_scalar
(
$value
))
{
return
new
self
(
sprintf
(
"Could not convert PHP value '%s' of type '%s' to type '%s'. Expected one of the following types: %s"
,
$value
,
$actualType
,
$toType
,
implode
(
', '
,
$possibleTypes
)
));
}
$value
=
(
string
)
$value
;
$value
=
(
strlen
(
$value
)
>
32
)
?
substr
(
$value
,
0
,
20
)
.
"..."
:
$value
;
return
new
self
(
sprintf
(
"Could not convert PHP value '%s' of type '%s' to type '%s'. Expected one of the following: %s"
,
$value
,
"Could not convert PHP value of type '%s' to type '%s'. Expected one of the following types: %s"
,
$actualType
,
$toType
,
implode
(
', '
,
$possibleTypes
)
...
...
tests/Doctrine/Tests/DBAL/Types/ConversionExceptionTest.php
0 → 100644
View file @
f0534f3d
<?php
namespace
Doctrine\Tests\DBAL\Types
;
use
Doctrine\DBAL\Types\ConversionException
;
use
PHPUnit_Framework_TestCase
;
class
ConversionExceptionTest
extends
PHPUnit_Framework_TestCase
{
/**
* @dataProvider scalarsProvider
*
* @param mixed $scalarValue
*/
public
function
testConversionFailedInvalidTypeWithScalar
(
$scalarValue
)
{
$exception
=
ConversionException
::
conversionFailedInvalidType
(
$scalarValue
,
'foo'
,
[
'bar'
,
'baz'
]);
$this
->
assertInstanceOf
(
'Doctrine\DBAL\Types\ConversionException'
,
$exception
);
$this
->
assertRegExp
(
'/^Could not convert PHP value \'.*\' of type \'(string|boolean|float|double|integer)\' to type \'foo\'. '
.
'Expected one of the following types: bar, baz$/'
,
$exception
->
getMessage
()
);
}
public
function
scalarsProvider
()
{
return
[
[
''
],
[
'foo'
],
[
123
],
[
-
123
],
[
12.34
],
[
true
],
[
false
],
];
}
}
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