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
c6e99ade
Commit
c6e99ade
authored
Nov 08, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests for CTI exporting
parent
7efe3f5c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
1 deletion
+34
-1
ClassTableInheritanceTestCase.php
tests/ClassTableInheritanceTestCase.php
+34
-1
No files found.
tests/ClassTableInheritanceTestCase.php
View file @
c6e99ade
...
...
@@ -44,12 +44,45 @@ class Doctrine_ClassTableInheritance_TestCase extends Doctrine_UnitTestCase
$table
=
$class
->
getTable
();
$this
->
assertEqual
(
$table
->
getOption
(
'joinedParents'
),
array
(
'CTITestParent2'
,
'CTITestParent3'
));
}
public
function
testExportGeneratesAllInheritedTables
()
{
$sql
=
$this
->
conn
->
export
->
exportClassesSql
(
array
(
'CTITest'
));
$this
->
assertEqual
(
$sql
[
0
],
'CREATE TABLE c_t_i_test_parent4 (id INTEGER, age INTEGER, PRIMARY KEY(id))'
);
$this
->
assertEqual
(
$sql
[
1
],
'CREATE TABLE c_t_i_test_parent3 (id INTEGER, added INTEGER, PRIMARY KEY(id))'
);
$this
->
assertEqual
(
$sql
[
2
],
'CREATE TABLE c_t_i_test_parent2 (id INTEGER PRIMARY KEY AUTOINCREMENT, name VARCHAR(200), verified INTEGER)'
);
}
public
function
testInheritedPropertiesGetOwnerFlags
()
{
$class
=
new
CTITest
();
$table
=
$class
->
getTable
();
$columns
=
$table
->
getColumns
();
$this
->
assertEqual
(
$columns
[
'verified'
][
'owner'
],
'CTITestParent2'
);
$this
->
assertEqual
(
$columns
[
'name'
][
'owner'
],
'CTITestParent2'
);
$this
->
assertEqual
(
$columns
[
'added'
][
'owner'
],
'CTITestParent3'
);
}
public
function
testNewlyCreatedRecordsHaveInheritedPropertiesInitialized
()
{
$class
=
new
CTITest
();
$this
->
assertEqual
(
$class
->
toArray
(),
array
(
'id'
=>
null
,
'age'
=>
null
,
'name'
=>
null
,
'verified'
=>
null
,
'added'
=>
null
));
$class
->
age
=
13
;
$class
->
name
=
'Jack Daniels'
;
$class
->
verified
=
true
;
$class
->
added
=
time
();
$class
->
save
();
}
}
class
CTITestParent1
extends
Doctrine_Record
...
...
@@ -72,7 +105,7 @@ class CTITestParent3 extends CTITestParent2
{
public
function
setTableDefinition
()
{
$this
->
hasColumn
(
'added'
,
'
timestamp
'
);
$this
->
hasColumn
(
'added'
,
'
integer
'
);
}
}
class
CTITestParent4
extends
CTITestParent3
...
...
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