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
393093fe
Commit
393093fe
authored
Dec 26, 2006
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added TestCase for Sqlite portable error handling
parent
0d4a5bb1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
61 additions
and
0 deletions
+61
-0
SqliteTestCase.php
tests/Connection/SqliteTestCase.php
+61
-0
No files found.
tests/Connection/SqliteTestCase.php
0 → 100644
View file @
393093fe
<?php
class
Doctrine_Connection_Sqlite_TestCase
extends
Doctrine_Driver_UnitTestCase
{
public
function
__construct
()
{
parent
::
__construct
(
'sqlite'
);
}
public
function
testNoSuchTableErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
0
,
'no such table: test1'
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_NOSUCHTABLE
);
}
public
function
testNoSuchIndexErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
0
,
'no such index: test1'
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_NOT_FOUND
);
}
public
function
testUniquePrimaryKeyErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
0
,
'PRIMARY KEY must be unique'
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_CONSTRAINT
);
}
public
function
testIsNotUniqueErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
0
,
'is not unique'
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_CONSTRAINT
);
}
public
function
testColumnsNotUniqueErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
0
,
'columns name, id are not unique'
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_CONSTRAINT
);
}
public
function
testUniquenessConstraintErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
0
,
'uniqueness constraint failed'
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_CONSTRAINT
);
}
public
function
testNotNullConstraintErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
0
,
'may not be NULL'
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_CONSTRAINT_NOT_NULL
);
}
public
function
testNoSuchFieldErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
0
,
'no such column: column1'
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_NOSUCHFIELD
);
}
public
function
testColumnNotPresentInTablesErrorIsSupported2
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
0
,
'column not present in both tables'
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_NOSUCHFIELD
);
}
public
function
testNearSyntaxErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
0
,
"near
\"
SELECT FROM
\"
: syntax error"
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_SYNTAX
);
}
public
function
testValueCountOnRowErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
0
,
'3 values for 2 columns'
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_VALUE_COUNT_ON_ROW
);
}
}
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