diff --git a/tests/Doctrine/Tests/Models/Routing/RoutingLeg.php b/tests/Doctrine/Tests/Models/Routing/RoutingLeg.php new file mode 100644 index 000000000..64564d3ef --- /dev/null +++ b/tests/Doctrine/Tests/Models/Routing/RoutingLeg.php @@ -0,0 +1,38 @@ +legs = new ArrayCollection(); + } +} \ No newline at end of file diff --git a/tests/Doctrine/Tests/ORM/Functional/AllTests.php b/tests/Doctrine/Tests/ORM/Functional/AllTests.php index c110476c5..0c58aff17 100644 --- a/tests/Doctrine/Tests/ORM/Functional/AllTests.php +++ b/tests/Doctrine/Tests/ORM/Functional/AllTests.php @@ -33,6 +33,7 @@ class AllTests $suite->addTestSuite('Doctrine\Tests\ORM\Functional\OneToOneUnidirectionalAssociationTest'); $suite->addTestSuite('Doctrine\Tests\ORM\Functional\OneToOneBidirectionalAssociationTest'); $suite->addTestSuite('Doctrine\Tests\ORM\Functional\OneToManyBidirectionalAssociationTest'); + $suite->addTestSuite('Doctrine\Tests\ORM\Functional\OneToManyUnidirectionalAssociationTest'); $suite->addTestSuite('Doctrine\Tests\ORM\Functional\ManyToManyBasicAssociationTest'); $suite->addTestSuite('Doctrine\Tests\ORM\Functional\ManyToManyUnidirectionalAssociationTest'); $suite->addTestSuite('Doctrine\Tests\ORM\Functional\ManyToManyBidirectionalAssociationTest'); diff --git a/tests/Doctrine/Tests/ORM/Functional/OneToManyUnidirectionalAssociationTest.php b/tests/Doctrine/Tests/ORM/Functional/OneToManyUnidirectionalAssociationTest.php new file mode 100644 index 000000000..fd7a22a5a --- /dev/null +++ b/tests/Doctrine/Tests/ORM/Functional/OneToManyUnidirectionalAssociationTest.php @@ -0,0 +1,79 @@ +useModelSet('routing'); + parent::setUp(); + + $locations = array("Berlin", "Bonn", "Brasilia", "Atlanta"); + + foreach ($locations AS $locationName) { + $location = new RoutingLocation(); + $location->name = $locationName; + $this->_em->persist($location); + $this->locations[$locationName] = $location; + } + $this->_em->flush(); + } + + public function testPersistOwning_InverseCascade() + { + $leg = new RoutingLeg(); + $leg->fromLocation = $this->locations['Berlin']; + $leg->toLocation = $this->locations['Bonn']; + $leg->departureDate = new \DateTime("now"); + $leg->arrivalDate = new \DateTime("now +5 hours"); + + $route = new RoutingRoute(); + $route->legs[] = $leg; + + $this->_em->persist($route); + $this->_em->flush(); + $this->_em->clear(); + + $routes = $this->_em->createQuery( + "SELECT r, l, f, t FROM Doctrine\Tests\Models\Routing\RoutingRoute r ". + "JOIN r.legs l JOIN l.fromLocation f JOIN l.toLocation t" + )->getSingleResult(); + + $this->assertEquals(1, count($routes->legs)); + $this->assertEquals("Berlin", $routes->legs[0]->fromLocation->name); + $this->assertEquals("Bonn", $routes->legs[0]->toLocation->name); + } + + public function testLegsAreUniqueToRoutes() + { + $leg = new RoutingLeg(); + $leg->fromLocation = $this->locations['Berlin']; + $leg->toLocation = $this->locations['Bonn']; + $leg->departureDate = new \DateTime("now"); + $leg->arrivalDate = new \DateTime("now +5 hours"); + + $routeA = new RoutingRoute(); + $routeA->legs[] = $leg; + + $routeB = new RoutingRoute(); + $routeB->legs[] = $leg; + + $this->_em->persist($routeA); + $this->_em->persist($routeB); + + $this->setExpectedException('Exception'); // depends on the underyling Database Driver + $this->_em->flush(); // Exception + } +} \ No newline at end of file diff --git a/tests/Doctrine/Tests/OrmFunctionalTestCase.php b/tests/Doctrine/Tests/OrmFunctionalTestCase.php index 3fce13cfc..65a8036ae 100644 --- a/tests/Doctrine/Tests/OrmFunctionalTestCase.php +++ b/tests/Doctrine/Tests/OrmFunctionalTestCase.php @@ -7,7 +7,7 @@ namespace Doctrine\Tests; * * @since 2.0 */ -class OrmFunctionalTestCase extends OrmTestCase +abstract class OrmFunctionalTestCase extends OrmTestCase { /* The metadata cache shared between all functional tests. */ private static $_metadataCacheImpl = null; @@ -68,7 +68,12 @@ class OrmFunctionalTestCase extends OrmTestCase ), 'generic' => array( 'Doctrine\Tests\Models\Generic\DateTimeModel' - ) + ), + 'routing' => array( + 'Doctrine\Tests\Models\Routing\RoutingLeg', + 'Doctrine\Tests\Models\Routing\RoutingLocation', + 'Doctrine\Tests\Models\Routing\RoutingRoute', + ), ); protected function useModelSet($setName) @@ -213,11 +218,11 @@ class OrmFunctionalTestCase extends OrmTestCase throw $e; } - if($this->_sqlLoggerStack->queries !== null && count($this->_sqlLoggerStack->queries)) { + if(isset($this->_sqlLoggerStack->queries) && count($this->_sqlLoggerStack->queries)) { $queries = ""; for($i = 0; $i < count($this->_sqlLoggerStack->queries); $i++) { $query = $this->_sqlLoggerStack->queries[$i]; - $params = array_map(function($p) { return "'".$p."'"; }, $query['params']); + $params = array_map(function($p) { return "'".$p."'"; }, $query['params'] ?: array()); $queries .= ($i+1).". SQL: '".$query['sql']."' Params: ".implode(", ", $params).PHP_EOL; }