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
b6583680
Commit
b6583680
authored
Nov 24, 2006
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added new datatype tests for sqlite
parent
b1d5eedb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
1 deletion
+42
-1
SqliteTestCase.php
tests/DataDict/SqliteTestCase.php
+42
-1
No files found.
tests/DataDict/SqliteTestCase.php
View file @
b6583680
<?php
class
Doctrine_DataDict_Sqlite_TestCase
extends
Doctrine_Driver_UnitTestCase
{
public
function
getDeclaration
(
$type
)
{
return
$this
->
dataDict
->
getDoctrineDeclaration
(
array
(
'type'
=>
$type
,
'name'
=>
'colname'
,
'length'
=>
2
,
'fixed'
=>
true
));
}
public
function
testGetDoctrineDefinition
()
{
$this
->
assertEqual
(
$this
->
getDeclaration
(
'boolean'
),
array
(
array
(
'boolean'
),
1
,
false
,
null
));
?>
$this
->
assertEqual
(
$this
->
getDeclaration
(
'tinyint'
),
array
(
array
(
'integer'
,
'boolean'
),
1
,
false
,
null
));
$this
->
assertEqual
(
$this
->
getDeclaration
(
'smallint'
),
array
(
array
(
'integer'
),
2
,
false
,
null
));
$this
->
assertEqual
(
$this
->
getDeclaration
(
'mediumint'
),
array
(
array
(
'integer'
),
2
,
false
,
null
));
$this
->
assertEqual
(
$this
->
getDeclaration
(
'int'
),
array
(
array
(
'integer'
),
4
,
false
,
null
));
$this
->
assertEqual
(
$this
->
getDeclaration
(
'integer'
),
array
(
array
(
'integer'
),
4
,
false
,
null
));
$this
->
assertEqual
(
$this
->
getDeclaration
(
'serial'
),
array
(
array
(
'integer'
),
4
,
false
,
null
));
$this
->
assertEqual
(
$this
->
getDeclaration
(
'bigint'
),
array
(
array
(
'integer'
),
8
,
false
,
null
));
$this
->
assertEqual
(
$this
->
getDeclaration
(
'bigserial'
),
array
(
array
(
'integer'
),
8
,
false
,
null
));
/**
$this->assertEqual($this->getDeclaration('clob'), array(array('integer', 'boolean'), 1, false, null));
$this->assertEqual($this->getDeclaration('tinytext'), array(array('integer'), 2, false, null));
$this->assertEqual($this->getDeclaration('mediumtext'), array(array('integer'), 2, false, null));
$this->assertEqual($this->getDeclaration('longtext'), array(array('integer'), 4, false, null));
$this->assertEqual($this->getDeclaration('text'), array(array('integer'), 4, false, null));
$this->assertEqual($this->getDeclaration('varchar'), array(array('integer'), 4, false, null));
$this->assertEqual($this->getDeclaration('varchar2'), array(array('integer'), 8, false, null));
$this->assertEqual($this->getDeclaration('char'), array(array('integer'), 4, false, null));
$this->assertEqual($this->getDeclaration('date'), array(array('integer'), 4, false, null));
$this->assertEqual($this->getDeclaration('datetime'), array(array('integer'), 8, false, null));
$this->assertEqual($this->getDeclaration('timestamp'), array(array('integer'), 8, false, null));
$this->assertEqual($this->getDeclaration('time'), array(array('integer'), 8, false, null));
*/
$this
->
assertEqual
(
$this
->
getDeclaration
(
'float'
),
array
(
array
(
'float'
),
8
,
false
,
null
));
$this
->
assertEqual
(
$this
->
getDeclaration
(
'double'
),
array
(
array
(
'float'
),
8
,
false
,
null
));
$this
->
assertEqual
(
$this
->
getDeclaration
(
'real'
),
array
(
array
(
'float'
),
8
,
false
,
null
));
$this
->
assertEqual
(
$this
->
getDeclaration
(
'decimal'
),
array
(
array
(
'decimal'
),
8
,
false
,
null
));
$this
->
assertEqual
(
$this
->
getDeclaration
(
'numeric'
),
array
(
array
(
'decimal'
),
8
,
false
,
null
));
$this
->
assertEqual
(
$this
->
getDeclaration
(
'tinyblob'
),
array
(
array
(
'blob'
),
8
,
false
,
null
));
$this
->
assertEqual
(
$this
->
getDeclaration
(
'mediumblob'
),
array
(
array
(
'blob'
),
8
,
false
,
null
));
$this
->
assertEqual
(
$this
->
getDeclaration
(
'longblob'
),
array
(
array
(
'blob'
),
8
,
false
,
null
));
$this
->
assertEqual
(
$this
->
getDeclaration
(
'blob'
),
array
(
array
(
'blob'
),
8
,
false
,
null
));
}
}
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