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
f8549da9
Commit
f8549da9
authored
May 20, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--no commit message
--no commit message
parent
ff733916
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
1 deletion
+52
-1
RawSqlTestCase.php
tests/RawSqlTestCase.php
+2
-1
ParserTestCase.php
tests/Relation/ParserTestCase.php
+50
-0
No files found.
tests/RawSqlTestCase.php
View file @
f8549da9
...
...
@@ -161,11 +161,12 @@ class Doctrine_RawSql_TestCase extends Doctrine_UnitTestCase
$this
->
assertTrue
(
is_numeric
(
$coll
[
3
]
->
id
));
$this
->
assertTrue
(
is_numeric
(
$coll
[
7
]
->
id
));
}
public
function
test
MethodOverloading
()
public
function
test
ConvenienceMethods
()
{
$query
=
new
Doctrine_RawSql
(
$this
->
connection
);
$query
->
select
(
'{entity.name}'
)
->
from
(
'entity'
);
$query
->
addComponent
(
'entity'
,
'User'
);
$coll
=
$query
->
execute
();
$this
->
assertEqual
(
$coll
->
count
(),
8
);
...
...
tests/Relation/ParserTestCase.php
View file @
f8549da9
...
...
@@ -47,4 +47,54 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
'alias'
=>
'Email'
));
}
public
function
testRelationParserSupportsLocalColumnGuessing
()
{
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Phonenumber'
,
'type'
=>
Doctrine_Relation
::
MANY
,
'foreign'
=>
'user_id'
));
$this
->
assertEqual
(
$d
[
'local'
],
'id'
);
}
public
function
testRelationParserSupportsLocalColumnGuessing2
()
{
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Email'
,
'type'
=>
Doctrine_Relation
::
ONE
,
'foreign'
=>
'id'
));
$this
->
assertEqual
(
$d
[
'local'
],
'email_id'
);
}
public
function
testRelationParserSupportsForeignColumnGuessing
()
{
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Phonenumber'
,
'type'
=>
Doctrine_Relation
::
MANY
,
'local'
=>
'id'
));
$this
->
assertEqual
(
$d
[
'foreign'
],
'user_id'
);
}
public
function
testRelationParserSupportsForeignColumnGuessing2
()
{
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Email'
,
'type'
=>
Doctrine_Relation
::
ONE
,
'local'
=>
'email_id'
));
$this
->
assertEqual
(
$d
[
'foreign'
],
'id'
);
}
public
function
testRelationParserSupportsGuessingOfBothColumns
()
{
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Email'
,
'type'
=>
Doctrine_Relation
::
MANY
));
$this
->
assertEqual
(
$d
[
'foreign'
],
'id'
);
$this
->
assertEqual
(
$d
[
'local'
],
'email_id'
);
}
}
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