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
17349244
Commit
17349244
authored
May 21, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--no commit message
--no commit message
parent
9e016069
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
30 deletions
+9
-30
ParserTestCase.php
tests/Relation/ParserTestCase.php
+9
-30
No files found.
tests/Relation/ParserTestCase.php
View file @
17349244
...
...
@@ -37,37 +37,21 @@ 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'
,
'definer'
=>
'User'
);
'local'
=>
'email_id'
);
$r
->
bind
(
'Email'
,
$p
);
$this
->
assertEqual
(
$r
->
getPendingRelation
(
'Email'
),
array
(
'type'
=>
Doctrine_Relation
::
ONE
,
'local'
=>
'email_id'
,
'class'
=>
'Email'
,
'alias'
=>
'Email'
,
'definer'
=>
'User'
'alias'
=>
'Email'
));
}
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'
);
$p
=
array
(
'local'
=>
'email_id'
);
try
{
$r
->
bind
(
'Email'
,
$p
);
$this
->
fail
(
'should throw exception'
);
...
...
@@ -81,9 +65,8 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Phonenumber'
,
'type'
=>
Doctrine_Relation
::
MANY
,
'foreign'
=>
'entity_id'
,
'definer'
=>
'Entity'
));
'foreign'
=>
'entity_id'
));
$this
->
assertEqual
(
$d
[
'local'
],
'id'
);
}
public
function
testRelationParserSupportsLocalColumnGuessing2
()
...
...
@@ -92,8 +75,7 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Email'
,
'type'
=>
Doctrine_Relation
::
ONE
,
'foreign'
=>
'id'
,
'definer'
=>
'User'
));
'foreign'
=>
'id'
));
$this
->
assertEqual
(
$d
[
'local'
],
'email_id'
);
}
...
...
@@ -103,8 +85,7 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Phonenumber'
,
'type'
=>
Doctrine_Relation
::
MANY
,
'local'
=>
'id'
,
'definer'
=>
'Entity'
));
'local'
=>
'id'
));
$this
->
assertEqual
(
$d
[
'foreign'
],
'entity_id'
);
}
...
...
@@ -114,8 +95,7 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Email'
,
'type'
=>
Doctrine_Relation
::
ONE
,
'local'
=>
'email_id'
,
'definer'
=>
'User'
));
'local'
=>
'email_id'
));
$this
->
assertEqual
(
$d
[
'foreign'
],
'id'
);
}
...
...
@@ -124,8 +104,7 @@ 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
,
'definer'
=>
'User'
));
'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