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
d1c23818
Commit
d1c23818
authored
Nov 08, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests for inserting CTI record instances
parent
3f3103a1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
2 deletions
+20
-2
ClassTableInheritanceTestCase.php
tests/ClassTableInheritanceTestCase.php
+20
-2
No files found.
tests/ClassTableInheritanceTestCase.php
View file @
d1c23818
...
@@ -53,6 +53,10 @@ class Doctrine_ClassTableInheritance_TestCase extends Doctrine_UnitTestCase
...
@@ -53,6 +53,10 @@ class Doctrine_ClassTableInheritance_TestCase extends Doctrine_UnitTestCase
$this
->
assertEqual
(
$sql
[
0
],
'CREATE TABLE c_t_i_test_parent4 (id INTEGER, age INTEGER, PRIMARY KEY(id))'
);
$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
[
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)'
);
$this
->
assertEqual
(
$sql
[
2
],
'CREATE TABLE c_t_i_test_parent2 (id INTEGER PRIMARY KEY AUTOINCREMENT, name VARCHAR(200), verified INTEGER)'
);
foreach
(
$sql
as
$query
)
{
$this
->
conn
->
exec
(
$query
);
}
}
}
public
function
testInheritedPropertiesGetOwnerFlags
()
public
function
testInheritedPropertiesGetOwnerFlags
()
...
@@ -70,6 +74,10 @@ class Doctrine_ClassTableInheritance_TestCase extends Doctrine_UnitTestCase
...
@@ -70,6 +74,10 @@ class Doctrine_ClassTableInheritance_TestCase extends Doctrine_UnitTestCase
public
function
testNewlyCreatedRecordsHaveInheritedPropertiesInitialized
()
public
function
testNewlyCreatedRecordsHaveInheritedPropertiesInitialized
()
{
{
$profiler
=
new
Doctrine_Connection_Profiler
();
$this
->
conn
->
addListener
(
$profiler
);
$class
=
new
CTITest
();
$class
=
new
CTITest
();
$this
->
assertEqual
(
$class
->
toArray
(),
array
(
'id'
=>
null
,
$this
->
assertEqual
(
$class
->
toArray
(),
array
(
'id'
=>
null
,
...
@@ -83,6 +91,16 @@ class Doctrine_ClassTableInheritance_TestCase extends Doctrine_UnitTestCase
...
@@ -83,6 +91,16 @@ class Doctrine_ClassTableInheritance_TestCase extends Doctrine_UnitTestCase
$class
->
verified
=
true
;
$class
->
verified
=
true
;
$class
->
added
=
time
();
$class
->
added
=
time
();
$class
->
save
();
$class
->
save
();
// pop the commit event
$profiler
->
pop
();
$this
->
assertEqual
(
$profiler
->
pop
()
->
getQuery
(),
'INSERT INTO c_t_i_test_parent4 (age, id) VALUES (?, ?)'
);
// pop the prepare event
$profiler
->
pop
();
$this
->
assertEqual
(
$profiler
->
pop
()
->
getQuery
(),
'INSERT INTO c_t_i_test_parent3 (added, id) VALUES (?, ?)'
);
// pop the prepare event
$profiler
->
pop
();
$this
->
assertEqual
(
$profiler
->
pop
()
->
getQuery
(),
'INSERT INTO c_t_i_test_parent2 (name, verified) VALUES (?, ?)'
);
}
}
}
}
class
CTITestParent1
extends
Doctrine_Record
class
CTITestParent1
extends
Doctrine_Record
...
...
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