-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
MArcJ
committed
Feb 15, 2013
1 parent
7dee9ea
commit 288e91d
Showing
4 changed files
with
309 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
215 changes: 215 additions & 0 deletions
215
test/testsuite/generator/builder/om/GeneratedObjectMoreRelationTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,215 @@ | ||
<?php | ||
|
||
/* | ||
* $Id$ | ||
* This file is part of the Propel package. | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @license MIT License | ||
*/ | ||
|
||
/** | ||
* Tests for More relations | ||
* | ||
* @author MArc J. Schmidt | ||
* @version $Revision$ | ||
* @package generator.builder.om | ||
*/ | ||
class GeneratedObjectMoreRelationTest extends PHPUnit_Framework_TestCase | ||
{ | ||
|
||
/** | ||
* Setup schema und some default data | ||
*/ | ||
public function setUp() | ||
{ | ||
parent::setUp(); | ||
|
||
if (!class_exists('MoreRelationTest\Page')) { | ||
$schema = <<<EOF | ||
<database name="more_relation_test" namespace="MoreRelationTest"> | ||
<table name="more_relation_test_page" phpName="Page"> | ||
<column name="id" required="true" primaryKey="true" autoIncrement="true" type="INTEGER" /> | ||
<column name="title" type="VARCHAR" size="100" primaryString="true" /> | ||
</table> | ||
<table name="more_relation_test_content" phpName="Content"> | ||
<column name="id" required="true" primaryKey="true" autoIncrement="true" type="INTEGER" /> | ||
<column name="title" type="VARCHAR" size="100" /> | ||
<column name="content" type="LONGVARCHAR" required="false" /> | ||
<column name="page_id" type="INTEGER" required="false" /> | ||
<foreign-key foreignTable="more_relation_test_page" onDelete="cascade"> | ||
<reference local="page_id" foreign="id"/> | ||
</foreign-key> | ||
</table> | ||
<table name="more_relation_test_comment" phpName="Comment"> | ||
<column name="user_id" required="true" primaryKey="true" type="INTEGER" /> | ||
<column name="page_id" required="true" primaryKey="true" type="INTEGER" /> | ||
<column name="comment" type="VARCHAR" size="100" /> | ||
<foreign-key foreignTable="more_relation_test_page" onDelete="cascade"> | ||
<reference local="page_id" foreign="id"/> | ||
</foreign-key> | ||
</table> | ||
<table name="more_relation_test_content_comment" phpName="ContentComment"> | ||
<column name="id" required="true" autoIncrement="true" primaryKey="true" type="INTEGER" /> | ||
<column name="content_id" type="INTEGER" /> | ||
<column name="comment" type="VARCHAR" size="100" /> | ||
<foreign-key foreignTable="more_relation_test_content" onDelete="setnull"> | ||
<reference local="content_id" foreign="id"/> | ||
</foreign-key> | ||
</table> | ||
</database> | ||
EOF; | ||
|
||
$builder = new PropelQuickBuilder(); | ||
$builder->setSchema($schema); | ||
$builder->build(); | ||
} | ||
|
||
\MoreRelationTest\ContentCommentPeer::doDeleteAll(); | ||
\MoreRelationTest\ContentPeer::doDeleteAll(); | ||
\MoreRelationTest\CommentPeer::doDeleteAll(); | ||
\MoreRelationTest\PagePeer::doDeleteAll(); | ||
|
||
for($i=1;$i<=2;$i++){ | ||
|
||
$page = new \MoreRelationTest\Page(); | ||
|
||
$page->setTitle('Page '.$i); | ||
for($j=1;$j<=3;$j++){ | ||
|
||
$content = new \MoreRelationTest\Content(); | ||
$content->setTitle('Content '.$j); | ||
$content->setContent(str_repeat('Content', $j)); | ||
$page->addContent($content); | ||
|
||
$comment = new \MoreRelationTest\Comment(); | ||
$comment->setUserId($j); | ||
$comment->setComment(str_repeat('Comment', $j)); | ||
$page->addComment($comment); | ||
|
||
$comment = new \MoreRelationTest\ContentComment(); | ||
$comment->setContentId($i*$j); | ||
$comment->setComment(str_repeat('Comment-'.$j.', ', $j)); | ||
$content->addContentComment($comment); | ||
|
||
} | ||
|
||
$page->save(); | ||
} | ||
|
||
} | ||
|
||
/** | ||
* Composite PK deletion of a 1-to-n relation through set<RelationName>() and remove<RelationName>() | ||
* where the PK is at the same time a FK. | ||
*/ | ||
public function testCommentsDeletion(){ | ||
|
||
$commentCollection = new PropelObjectCollection(); | ||
$commentCollection->setModel('MoreRelationTest\\Comment'); | ||
|
||
$comment = new \MoreRelationTest\Comment(); | ||
$comment->setComment('I should be alone :-('); | ||
$comment->setUserId(123); | ||
|
||
$commentCollection[] = $comment; | ||
|
||
$page = \MoreRelationTest\PageQuery::create()->findOne(); | ||
$id = $page->getId(); | ||
|
||
$count = \MoreRelationTest\CommentQuery::create()->filterByPageId($id)->count(); | ||
$this->assertEquals(3, $count, 'We created for each page 3 comments.'); | ||
|
||
$page->setComments($commentCollection); | ||
$page->save(); | ||
|
||
$count = \MoreRelationTest\CommentQuery::create()->filterByPageId($id)->count(); | ||
$this->assertEquals(1, $count, 'We assigned a collection of only one item.'); | ||
|
||
$count = \MoreRelationTest\CommentQuery::create()->filterByPageId(NULL)->count(); | ||
$this->assertEquals(0, $count, 'There should be no unassigned comment.'); | ||
|
||
$page->removeComment($comment); | ||
$page->save(); | ||
|
||
$count = \MoreRelationTest\CommentQuery::create()->filterByPageId($id)->count(); | ||
$this->assertEquals(0, $count, 'We assigned a collection of only one item.'); | ||
|
||
$count = \MoreRelationTest\CommentQuery::create()->filterByPageId(NULL)->count(); | ||
$this->assertEquals(0, $count, 'There should be no unassigned comment.'); | ||
|
||
} | ||
|
||
/** | ||
* Deletion of a 1-to-n relation through set<RelationName>() | ||
* with onDelete=setnull | ||
*/ | ||
public function testContentCommentDeletion(){ | ||
|
||
$commentCollection = new PropelObjectCollection(); | ||
$commentCollection->setModel('MoreRelationTest\\ContentComment'); | ||
|
||
$comment = new \MoreRelationTest\ContentComment(); | ||
$comment->setComment('I\'m Mario'); | ||
$commentCollection[] = $comment; | ||
|
||
$comment2 = new \MoreRelationTest\ContentComment(); | ||
$comment2->setComment('I\'m Mario\'s friend'); | ||
$commentCollection[] = $comment2; | ||
|
||
$content = \MoreRelationTest\ContentQuery::create()->findOne(); | ||
$id = $content->getId(); | ||
|
||
$count = \MoreRelationTest\ContentCommentQuery::create()->filterByContentId($id)->count(); | ||
$this->assertEquals(1, $count, 'We created for each page 1 comments.'); | ||
|
||
$content->setContentComments($commentCollection); | ||
$content->save(); | ||
|
||
unset($content); | ||
|
||
$count = \MoreRelationTest\ContentCommentQuery::create()->filterByContentId($id)->count(); | ||
$this->assertEquals(2, $count, 'We assigned a collection of two items.'); | ||
|
||
$count = \MoreRelationTest\ContentCommentQuery::create()->filterByContentId(NULL)->count(); | ||
$this->assertEquals(1, $count, 'There should be one unassigned contentComment.'); | ||
|
||
} | ||
|
||
/** | ||
* Basic deletion of a 1-to-n relation through set<RelationName>(). | ||
* | ||
*/ | ||
public function testContentsDeletion(){ | ||
|
||
$contentCollection = new PropelObjectCollection(); | ||
$contentCollection->setModel('MoreRelationTest\\Content'); | ||
|
||
$content = new \MoreRelationTest\Content(); | ||
$content->setTitle('I should be alone :-('); | ||
|
||
$contentCollection[] = $content; | ||
|
||
$page = \MoreRelationTest\PageQuery::create()->findOne(); | ||
$id = $page->getId(); | ||
|
||
$count = \MoreRelationTest\ContentQuery::create()->filterByPageId($id)->count(); | ||
$this->assertEquals(3, $count, 'We created for each page 3 contents.'); | ||
|
||
$page->setContents($contentCollection); | ||
$page->save(); | ||
|
||
unset($page); | ||
|
||
$count = \MoreRelationTest\ContentQuery::create()->filterByPageId($id)->count(); | ||
$this->assertEquals(1, $count, 'We assigned a collection of only one item.'); | ||
|
||
} | ||
|
||
} |