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
d79e4d0b
Commit
d79e4d0b
authored
May 20, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new tests for relation parser
parent
919da9e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
8 deletions
+41
-8
ParserTestCase.php
tests/Relation/ParserTestCase.php
+41
-8
No files found.
tests/Relation/ParserTestCase.php
View file @
d79e4d0b
...
...
@@ -37,23 +37,52 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$p
=
array
(
'type'
=>
Doctrine_Relation
::
ONE
,
'local'
=>
'email_id'
);
'local'
=>
'email_id'
,
'definer'
=>
'User'
);
$r
->
bind
(
'Email'
,
$p
);
$this
->
assertEqual
(
$r
->
getPendingRelation
(
'Email'
),
array
(
'type'
=>
Doctrine_Relation
::
ONE
,
'local'
=>
'email_id'
,
'class'
=>
'Email'
,
'alias'
=>
'Email'
'alias'
=>
'Email'
,
'definer'
=>
'User'
));
}
public
function
testBindThrowsExceptionIfDefinerNotSet
()
{
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$p
=
array
(
'type'
=>
Doctrine_Relation
::
ONE
,
'local'
=>
'email_id'
);
try
{
$r
->
bind
(
'Email'
,
$p
);
$this
->
fail
(
'should throw exception'
);
}
catch
(
Doctrine_Relation_Exception
$e
)
{
$this
->
pass
();
}
}
public
function
testBindThrowsExceptionIfTypeNotSet
()
{
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$p
=
array
(
'local'
=>
'email_id'
,
'definer'
=>
'User'
);
try
{
$r
->
bind
(
'Email'
,
$p
);
$this
->
fail
(
'should throw exception'
);
}
catch
(
Doctrine_Relation_Exception
$e
)
{
$this
->
pass
();
}
}
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'
));
'foreign'
=>
'entity_id'
,
'definer'
=>
'Entity'
));
$this
->
assertEqual
(
$d
[
'local'
],
'id'
);
}
...
...
@@ -63,7 +92,8 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Email'
,
'type'
=>
Doctrine_Relation
::
ONE
,
'foreign'
=>
'id'
));
'foreign'
=>
'id'
,
'definer'
=>
'User'
));
$this
->
assertEqual
(
$d
[
'local'
],
'email_id'
);
}
...
...
@@ -73,9 +103,10 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Phonenumber'
,
'type'
=>
Doctrine_Relation
::
MANY
,
'local'
=>
'id'
));
'local'
=>
'id'
,
'definer'
=>
'Entity'
));
$this
->
assertEqual
(
$d
[
'foreign'
],
'
user
_id'
);
$this
->
assertEqual
(
$d
[
'foreign'
],
'
entity
_id'
);
}
public
function
testRelationParserSupportsForeignColumnGuessing2
()
{
...
...
@@ -83,7 +114,8 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Email'
,
'type'
=>
Doctrine_Relation
::
ONE
,
'local'
=>
'email_id'
));
'local'
=>
'email_id'
,
'definer'
=>
'User'
));
$this
->
assertEqual
(
$d
[
'foreign'
],
'id'
);
}
...
...
@@ -92,7 +124,8 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Email'
,
'type'
=>
Doctrine_Relation
::
MANY
));
'type'
=>
Doctrine_Relation
::
MANY
,
'definer'
=>
'User'
));
$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