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
ad0c3e2c
Commit
ad0c3e2c
authored
May 21, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
some new tests for the new relation parser
parent
abcc423f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
68 additions
and
6 deletions
+68
-6
ParserTestCase.php
tests/Relation/ParserTestCase.php
+68
-6
No files found.
tests/Relation/ParserTestCase.php
View file @
ad0c3e2c
...
@@ -104,11 +104,22 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
...
@@ -104,11 +104,22 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Email'
,
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Email'
,
'type'
=>
Doctrine_Relation
::
MANY
));
'type'
=>
Doctrine_Relation
::
ONE
));
$this
->
assertEqual
(
$d
[
'foreign'
],
'id'
);
$this
->
assertEqual
(
$d
[
'foreign'
],
'id'
);
$this
->
assertEqual
(
$d
[
'local'
],
'email_id'
);
$this
->
assertEqual
(
$d
[
'local'
],
'email_id'
);
}
}
public
function
testRelationParserSupportsGuessingOfBothColumns2
()
{
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$d
=
$r
->
completeDefinition
(
array
(
'class'
=>
'Phonenumber'
,
'type'
=>
Doctrine_Relation
::
MANY
));
$this
->
assertEqual
(
$d
[
'foreign'
],
'entity_id'
);
$this
->
assertEqual
(
$d
[
'local'
],
'id'
);
}
public
function
testRelationParserSupportsForeignColumnGuessingForAssociations
()
public
function
testRelationParserSupportsForeignColumnGuessingForAssociations
()
{
{
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
...
@@ -116,8 +127,7 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
...
@@ -116,8 +127,7 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
$d
=
$r
->
completeAssocDefinition
(
array
(
'class'
=>
'Group'
,
$d
=
$r
->
completeAssocDefinition
(
array
(
'class'
=>
'Group'
,
'type'
=>
Doctrine_Relation
::
MANY
,
'type'
=>
Doctrine_Relation
::
MANY
,
'local'
=>
'user_id'
,
'local'
=>
'user_id'
,
'refClass'
=>
'GroupUser'
,
'refClass'
=>
'GroupUser'
));
'definer'
=>
'User'
));
$this
->
assertEqual
(
$d
[
'foreign'
],
'group_id'
);
$this
->
assertEqual
(
$d
[
'foreign'
],
'group_id'
);
}
}
...
@@ -128,9 +138,61 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
...
@@ -128,9 +138,61 @@ class Doctrine_Relation_Parser_TestCase extends Doctrine_UnitTestCase
$d
=
$r
->
completeAssocDefinition
(
array
(
'class'
=>
'Group'
,
$d
=
$r
->
completeAssocDefinition
(
array
(
'class'
=>
'Group'
,
'type'
=>
Doctrine_Relation
::
MANY
,
'type'
=>
Doctrine_Relation
::
MANY
,
'foreign'
=>
'group_id'
,
'foreign'
=>
'group_id'
,
'refClass'
=>
'GroupUser'
,
'refClass'
=>
'GroupUser'
));
'definer'
=>
'User'
));
$this
->
assertEqual
(
$d
[
'local'
],
'user_id'
);
$this
->
assertEqual
(
$d
[
'local'
],
'user_id'
);
}
}
public
function
testGetRelationReturnsForeignKeyObjectForOneToOneRelation
()
{
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$p
=
array
(
'type'
=>
Doctrine_Relation
::
ONE
,
'local'
=>
'email_id'
);
$r
->
bind
(
'Email'
,
$p
);
$rel
=
$r
->
getRelation
(
'Email'
);
$this
->
assertTrue
(
$rel
instanceof
Doctrine_Relation_ForeignKey
);
}
public
function
testGetRelationReturnsForeignKeyObjectForOneToManyRelation
()
{
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$p
=
array
(
'type'
=>
Doctrine_Relation
::
MANY
);
$r
->
bind
(
'Phonenumber'
,
$p
);
$rel
=
$r
->
getRelation
(
'Phonenumber'
);
$this
->
assertTrue
(
$rel
instanceof
Doctrine_Relation_ForeignKey
);
}
public
function
testGetRelationReturnsForeignKeyObjectForManytToManyRelation
()
{
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'User'
));
$p
=
array
(
'type'
=>
Doctrine_Relation
::
MANY
,
'refClass'
=>
'GroupUser'
);
$r
->
bind
(
'Group'
,
$p
);
$rel
=
$r
->
getRelation
(
'Group'
);
$this
->
assertTrue
(
$rel
instanceof
Doctrine_Relation_Association
);
$rel
=
$r
->
getRelation
(
'GroupUser'
);
$this
->
assertTrue
(
$rel
instanceof
Doctrine_Relation_ForeignKey
);
}
public
function
testGetRelationReturnsForeignKeyObjectForNestRelation
()
{
$r
=
new
Doctrine_Relation_Parser
(
$this
->
conn
->
getTable
(
'Entity'
));
$p
=
array
(
'type'
=>
Doctrine_Relation
::
MANY
,
'refClass'
=>
'EntityReference'
,
'local'
=>
'entity1'
,
'foreign'
=>
'entity2'
);
$r
->
bind
(
'Entity'
,
$p
);
$rel
=
$r
->
getRelation
(
'Entity'
);
$this
->
assertTrue
(
$rel
instanceof
Doctrine_Relation_Association_Self
);
$rel
=
$r
->
getRelation
(
'EntityReference'
);
$this
->
assertTrue
(
$rel
instanceof
Doctrine_Relation_ForeignKey
);
}
}
}
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