forked from doctrine/orm
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
2 changed files
with
108 additions
and
4 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
104 changes: 104 additions & 0 deletions
104
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC698Test.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,104 @@ | ||
<?php | ||
|
||
namespace Doctrine\Tests\ORM\Functional\Ticket; | ||
|
||
use DateTime; | ||
|
||
require_once __DIR__ . '/../../../TestInit.php'; | ||
|
||
class DDC698Test extends \Doctrine\Tests\OrmFunctionalTestCase | ||
{ | ||
protected function setUp() | ||
{ | ||
parent::setUp(); | ||
try { | ||
$this->_schemaTool->createSchema(array( | ||
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC698Role'), | ||
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC698Privilege') | ||
)); | ||
} catch(\Exception $e) { | ||
|
||
} | ||
} | ||
|
||
public function testTicket() | ||
{ | ||
$qb = $this->_em->createQueryBuilder(); | ||
$qb->select('p', 'r') | ||
->from(__NAMESPACE__ . '\DDC698Privilege', 'p') | ||
->leftJoin('p.roles', 'r'); | ||
|
||
$sql = $qb->getQuery()->getSQL(); | ||
|
||
$this->assertEquals('SELECT p0_.privilegeID AS privilegeID0, p0_.name AS name1, r1_.roleID AS roleID2, r1_.name AS name3, r1_.shortName AS shortName4 FROM Privileges p0_ LEFT JOIN RolePrivileges r2_ ON p0_.privilegeID = r2_.privilegeID LEFT JOIN Roles r1_ ON r1_.roleID = r2_.roleID', $sql); | ||
} | ||
} | ||
|
||
/** | ||
* | ||
* @Table(name="Roles") | ||
* @Entity | ||
*/ | ||
class DDC698Role | ||
{ | ||
/** | ||
* @Id @Column(name="roleID", type="integer") | ||
* @GeneratedValue(strategy="AUTO") | ||
* | ||
*/ | ||
protected $roleID; | ||
|
||
/** | ||
* @Column(name="name", type="string", length="45") | ||
* | ||
* | ||
*/ | ||
protected $name; | ||
|
||
/** | ||
* @Column(name="shortName", type="string", length="45") | ||
* | ||
* | ||
*/ | ||
protected $shortName; | ||
|
||
|
||
|
||
/** | ||
* @ManyToMany(targetEntity="DDC698Privilege", inversedBy="roles") | ||
* @JoinTable(name="RolePrivileges", | ||
* joinColumns={@JoinColumn(name="roleID", referencedColumnName="roleID")}, | ||
* inverseJoinColumns={@JoinColumn(name="privilegeID", referencedColumnName="privilegeID")} | ||
* ) | ||
*/ | ||
protected $privilege; | ||
|
||
} | ||
|
||
|
||
/** | ||
* | ||
* @Table(name="Privileges") | ||
* @Entity() | ||
*/ | ||
class DDC698Privilege | ||
{ | ||
/** | ||
* @Id @Column(name="privilegeID", type="integer") | ||
* @GeneratedValue(strategy="AUTO") | ||
* | ||
*/ | ||
protected $privilegeID; | ||
|
||
/** | ||
* @Column(name="name", type="string", length="45") | ||
* | ||
* | ||
*/ | ||
protected $name; | ||
|
||
/** | ||
* @ManyToMany(targetEntity="DDC698Role", mappedBy="privilege") | ||
*/ | ||
protected $roles; | ||
} |