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
0d4a5bb1
Commit
0d4a5bb1
authored
Dec 26, 2006
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added TestCase for Oracle portable error handling
parent
f571c61e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
96 additions
and
0 deletions
+96
-0
OracleTestCase.php
tests/Connection/OracleTestCase.php
+96
-0
No files found.
tests/Connection/OracleTestCase.php
0 → 100644
View file @
0d4a5bb1
<?php
class
Doctrine_Connection_Oracle_TestCase
extends
Doctrine_Driver_UnitTestCase
{
public
function
__construct
()
{
parent
::
__construct
(
'oci'
);
}
public
function
testNoSuchTableErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
942
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_NOSUCHTABLE
);
}
public
function
testSyntaxErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
900
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_SYNTAX
);
}
public
function
testSyntaxErrorIsSupported2
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
921
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_SYNTAX
);
}
public
function
testSyntaxErrorIsSupported3
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
923
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_SYNTAX
);
}
public
function
testNoSuchFieldErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
904
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_NOSUCHFIELD
);
}
public
function
testConstraintErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
1
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_CONSTRAINT
);
}
public
function
testConstraintErrorIsSupported2
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
2291
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_CONSTRAINT
);
}
public
function
testConstraintErrorIsSupported3
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
2449
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_CONSTRAINT
);
}
public
function
testConstraintErrorIsSupported4
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
2292
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_CONSTRAINT
);
}
public
function
testNoSuchTableErrorIsSupported4
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
2289
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_NOSUCHTABLE
);
}
public
function
testInvalidNumberErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
1722
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_INVALID_NUMBER
);
}
public
function
testDivZeroErrorIsSupported1
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
1476
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_DIVZERO
);
}
public
function
testNotFoundErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
1418
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_NOT_FOUND
);
}
public
function
testNotNullConstraintErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
1400
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_CONSTRAINT_NOT_NULL
);
}
public
function
testNotNullConstraintErrorIsSupported2
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
1407
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_CONSTRAINT_NOT_NULL
);
}
public
function
testInvalidErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
1401
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_INVALID
);
}
public
function
testAlreadyExistsErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
955
,
''
));
$this
->
assertEqual
(
$this
->
exc
->
getPortableCode
(),
Doctrine
::
ERR_ALREADY_EXISTS
);
}
public
function
testValueCountOnRowErrorIsSupported
()
{
$this
->
exc
->
processErrorInfo
(
array
(
0
,
913
,
''
));
$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