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
a4cab6ae
Commit
a4cab6ae
authored
Nov 28, 2006
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added missing test cases
parent
8b969d03
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
187 additions
and
0 deletions
+187
-0
MysqlTestCase.php
tests/Connection/MysqlTestCase.php
+10
-0
Firebird.php
tests/DataDict/Firebird.php
+85
-0
InformixTestCase.php
tests/DataDict/InformixTestCase.php
+7
-0
MssqlTestCase.php
tests/DataDict/MssqlTestCase.php
+85
-0
No files found.
tests/Connection/MysqlTestCase.php
0 → 100644
View file @
a4cab6ae
<?php
class
Doctrine_Connection_Mysql_TestCase
extends
Doctrine_Driver_UnitTestCase
{
public
function
__construct
()
{
parent
::
__construct
(
'mysql'
);
}
public
function
testQuoteIdentifier
()
{
$id
=
$this
->
conn
->
quoteIdentifier
(
'identifier'
,
false
);
$this
->
assertEqual
(
$id
,
'`identifier`'
);
}
}
tests/DataDict/Firebird.php
0 → 100644
View file @
a4cab6ae
<?php
class
Doctrine_DataDict_Firebird_TestCase
extends
Doctrine_Driver_UnitTestCase
{
public
function
__construct
()
{
parent
::
__construct
(
'firebird'
);
}
public
function
testGetNativeDefinitionSupportsIntegerType
()
{
$a
=
array
(
'type'
=>
'integer'
,
'length'
=>
20
,
'fixed'
=>
false
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'BIGINT'
);
$a
[
'length'
]
=
4
;
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'INT'
);
$a
[
'length'
]
=
2
;
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'SMALLINT'
);
}
public
function
testGetNativeDefinitionSupportsFloatType
()
{
$a
=
array
(
'type'
=>
'float'
,
'length'
=>
20
,
'fixed'
=>
false
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'DOUBLE'
);
}
public
function
testGetNativeDefinitionSupportsBooleanType
()
{
$a
=
array
(
'type'
=>
'boolean'
,
'fixed'
=>
false
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'TINYINT(1)'
);
}
public
function
testGetNativeDefinitionSupportsDateType
()
{
$a
=
array
(
'type'
=>
'date'
,
'fixed'
=>
false
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'DATE'
);
}
public
function
testGetNativeDefinitionSupportsTimestampType
()
{
$a
=
array
(
'type'
=>
'timestamp'
,
'fixed'
=>
false
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'DATETIME'
);
}
public
function
testGetNativeDefinitionSupportsTimeType
()
{
$a
=
array
(
'type'
=>
'time'
,
'fixed'
=>
false
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'TIME'
);
}
public
function
testGetNativeDefinitionSupportsClobType
()
{
$a
=
array
(
'type'
=>
'clob'
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'LONGTEXT'
);
}
public
function
testGetNativeDefinitionSupportsBlobType
()
{
$a
=
array
(
'type'
=>
'blob'
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'LONGBLOB'
);
}
public
function
testGetNativeDefinitionSupportsCharType
()
{
$a
=
array
(
'type'
=>
'char'
,
'length'
=>
10
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'CHAR(10)'
);
}
public
function
testGetNativeDefinitionSupportsVarcharType
()
{
$a
=
array
(
'type'
=>
'varchar'
,
'length'
=>
10
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'VARCHAR(10)'
);
}
public
function
testGetNativeDefinitionSupportsArrayType
()
{
$a
=
array
(
'type'
=>
'array'
,
'length'
=>
40
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'VARCHAR(40)'
);
}
public
function
testGetNativeDefinitionSupportsStringType
()
{
$a
=
array
(
'type'
=>
'string'
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'TEXT'
);
}
public
function
testGetNativeDefinitionSupportsArrayType2
()
{
$a
=
array
(
'type'
=>
'array'
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'TEXT'
);
}
public
function
testGetNativeDefinitionSupportsObjectType
()
{
$a
=
array
(
'type'
=>
'object'
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'TEXT'
);
}
}
tests/DataDict/InformixTestCase.php
0 → 100644
View file @
a4cab6ae
<?php
class
Doctrine_DataDict_Informix_TestCase
extends
Doctrine_Driver_UnitTestCase
{
public
function
__construct
()
{
parent
::
__construct
(
'informix'
);
}
}
tests/DataDict/MssqlTestCase.php
0 → 100644
View file @
a4cab6ae
<?php
class
Doctrine_DataDict_Mssql_TestCase
extends
Doctrine_Driver_UnitTestCase
{
public
function
__construct
()
{
parent
::
__construct
(
'mssql'
);
}
public
function
testGetNativeDefinitionSupportsIntegerType
()
{
$a
=
array
(
'type'
=>
'integer'
,
'length'
=>
20
,
'fixed'
=>
false
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'BIGINT'
);
$a
[
'length'
]
=
4
;
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'INT'
);
$a
[
'length'
]
=
2
;
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'SMALLINT'
);
}
public
function
testGetNativeDefinitionSupportsFloatType
()
{
$a
=
array
(
'type'
=>
'float'
,
'length'
=>
20
,
'fixed'
=>
false
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'DOUBLE'
);
}
public
function
testGetNativeDefinitionSupportsBooleanType
()
{
$a
=
array
(
'type'
=>
'boolean'
,
'fixed'
=>
false
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'TINYINT(1)'
);
}
public
function
testGetNativeDefinitionSupportsDateType
()
{
$a
=
array
(
'type'
=>
'date'
,
'fixed'
=>
false
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'DATE'
);
}
public
function
testGetNativeDefinitionSupportsTimestampType
()
{
$a
=
array
(
'type'
=>
'timestamp'
,
'fixed'
=>
false
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'DATETIME'
);
}
public
function
testGetNativeDefinitionSupportsTimeType
()
{
$a
=
array
(
'type'
=>
'time'
,
'fixed'
=>
false
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'TIME'
);
}
public
function
testGetNativeDefinitionSupportsClobType
()
{
$a
=
array
(
'type'
=>
'clob'
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'LONGTEXT'
);
}
public
function
testGetNativeDefinitionSupportsBlobType
()
{
$a
=
array
(
'type'
=>
'blob'
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'LONGBLOB'
);
}
public
function
testGetNativeDefinitionSupportsCharType
()
{
$a
=
array
(
'type'
=>
'char'
,
'length'
=>
10
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'CHAR(10)'
);
}
public
function
testGetNativeDefinitionSupportsVarcharType
()
{
$a
=
array
(
'type'
=>
'varchar'
,
'length'
=>
10
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'VARCHAR(10)'
);
}
public
function
testGetNativeDefinitionSupportsArrayType
()
{
$a
=
array
(
'type'
=>
'array'
,
'length'
=>
40
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'VARCHAR(40)'
);
}
public
function
testGetNativeDefinitionSupportsStringType
()
{
$a
=
array
(
'type'
=>
'string'
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'TEXT'
);
}
public
function
testGetNativeDefinitionSupportsArrayType2
()
{
$a
=
array
(
'type'
=>
'array'
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'TEXT'
);
}
public
function
testGetNativeDefinitionSupportsObjectType
()
{
$a
=
array
(
'type'
=>
'object'
);
$this
->
assertEqual
(
$this
->
dataDict
->
getNativeDeclaration
(
$a
),
'TEXT'
);
}
}
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