| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599 | <?php
namespace Doctrine\Tests\ORM\Functional;
use Doctrine\ORM\Query;
require_once __DIR__ . '/../../TestInit.php';
/**
 * Functional tests for the Single Table Inheritance mapping strategy.
 *
 * @author robo
 */
class AdvancedAssociationTest extends \Doctrine\Tests\OrmFunctionalTestCase
{
    protected function setUp() {
        parent::setUp();
        try {
            $this->_schemaTool->createSchema(array(            
                $this->_em->getClassMetadata('Doctrine\Tests\ORM\Functional\Phrase'), 
                $this->_em->getClassMetadata('Doctrine\Tests\ORM\Functional\PhraseType'),
                $this->_em->getClassMetadata('Doctrine\Tests\ORM\Functional\Definition'),
                $this->_em->getClassMetadata('Doctrine\Tests\ORM\Functional\Lemma'),
                $this->_em->getClassMetadata('Doctrine\Tests\ORM\Functional\Type')
            ));
        } catch (\Exception $e) {
            // Swallow all exceptions. We do not test the schema tool here.
        }
    }
    public function testIssue()
    {
        //setup
        $phrase = new Phrase;
        $phrase->setPhrase('lalala');
        
        $type = new PhraseType;
        $type->setType('nonsense');
        $type->setAbbreviation('non');
        
        $def1 = new Definition;
        $def1->setDefinition('def1');
        $def2 = new Definition;
        $def2->setDefinition('def2');
                
        $phrase->setType($type);
        $phrase->addDefinition($def1);
        $phrase->addDefinition($def2);
        
        $this->_em->persist($phrase);
        $this->_em->persist($type);
        
        $this->_em->flush();
        $this->_em->clear();
        //end setup
        
        // test1 - lazy-loading many-to-one after find()
        $phrase2 = $this->_em->find('Doctrine\Tests\ORM\Functional\Phrase', $phrase->getId());
        $this->assertTrue(is_numeric($phrase2->getType()->getId()));
        
        $this->_em->clear();
        
        // test2 - eager load in DQL query
        $query = $this->_em->createQuery("SELECT p,t FROM Doctrine\Tests\ORM\Functional\Phrase p JOIN p.type t");
        $res = $query->getResult();
        $this->assertEquals(1, count($res));
        $this->assertTrue($res[0]->getType() instanceof PhraseType);
        $this->assertTrue($res[0]->getType()->getPhrases() instanceof \Doctrine\ORM\PersistentCollection);
        $this->assertFalse($res[0]->getType()->getPhrases()->isInitialized());
        
        $this->_em->clear();
        
        // test2 - eager load in DQL query with double-join back and forth
        $query = $this->_em->createQuery("SELECT p,t,pp FROM Doctrine\Tests\ORM\Functional\Phrase p JOIN p.type t JOIN t.phrases pp");
        $res = $query->getResult();
        $this->assertEquals(1, count($res));
        $this->assertTrue($res[0]->getType() instanceof PhraseType);
        $this->assertTrue($res[0]->getType()->getPhrases() instanceof \Doctrine\ORM\PersistentCollection);
        $this->assertTrue($res[0]->getType()->getPhrases()->isInitialized());
        
        $this->_em->clear();
        
        // test3 - lazy-loading one-to-many after find()
        $phrase3 = $this->_em->find('Doctrine\Tests\ORM\Functional\Phrase', $phrase->getId());
        $definitions = $phrase3->getDefinitions();
        $this->assertTrue($definitions instanceof \Doctrine\ORM\PersistentCollection);
        $this->assertTrue($definitions[0] instanceof Definition);
        
        $this->_em->clear();
        
        // test4 - lazy-loading after DQL query
        $query = $this->_em->createQuery("SELECT p FROM Doctrine\Tests\ORM\Functional\Phrase p");
        $res = $query->getResult();
        $definitions = $res[0]->getDefinitions();
        
        $this->assertEquals(1, count($res));
        
        $this->assertTrue($definitions[0] instanceof Definition);
        $this->assertEquals(2, $definitions->count());
    }
    
    public function testManyToMany()
    {
        $lemma = new Lemma;
        $lemma->setLemma('abu');
        
        $type = new Type();
        $type->setType('nonsense');
        $type->setAbbreviation('non');
        
        $lemma->addType($type);
        
        $this->_em->persist($lemma);
        $this->_em->persist($type);
        $this->_em->flush();
        
        // test5 ManyToMany
        $query = $this->_em->createQuery("SELECT l FROM Doctrine\Tests\ORM\Functional\Lemma l");
        $res = $query->getResult();
        $types = $res[0]->getTypes();
        
        $this->assertTrue($types[0] instanceof Type);
    }
}
/**
 * @Entity
 * @Table(name="lemma")
 */
class Lemma {
	const CLASS_NAME = __CLASS__;
	/**
	 * @var int
	 * @Id
	 * @Column(type="integer", name="lemma_id")
	 * @GeneratedValue(strategy="AUTO")
	 */
	private $id;
	/**
	 *
	 * @var string
	 * @Column(type="string", name="lemma_name", unique=true, length=255)
	 */
	private $lemma;
	/**
	 * @var kateglo\application\utilities\collections\ArrayCollection
	 * @ManyToMany(targetEntity="Type", mappedBy="lemmas", cascade={"persist"})
	 */
	private $types;
	public function __construct() {
		$this->types = new \Doctrine\Common\Collections\ArrayCollection();
	}
	/**
	 *
	 * @return int
	 */
	public function getId(){
		return $this->id;
	}
	/**
	 *
	 * @param string $lemma
	 * @return void
	 */
	public function setLemma($lemma){
		$this->lemma = $lemma;
	}
	/**
	 *
	 * @return string
	 */
	public function getLemma(){
		return $this->lemma;
	}
	
	/**
     * 
     * @param kateglo\application\models\Type $type
     * @return void
     */
	public function addType(Type $type){
        if (!$this->types->contains($type)) {
            $this->types[] = $type;
            $type->addLemma($this);
        }
    }
    /**
     * 
     * @param kateglo\application\models\Type $type
     * @return void
     */
    public function removeType(Type $type)
    {
        $removed = $this->sources->removeElement($type);
        if ($removed !== null) {
            $removed->removeLemma($this);
        }
    }
    /**
     * 
     * @return kateglo\application\helpers\collections\ArrayCollection
     */
    public function getTypes()
    {
        return $this->types;
    }
}
/**
 * @Entity
 * @Table(name="type")
 */
class Type {
	const CLASS_NAME = __CLASS__;
	/**
	 *
	 * @var int
	 * @Id
	 * @Column(type="integer", name="type_id")
	 * @GeneratedValue(strategy="AUTO")
	 */
	private $id;
	/**
	 *
	 * @var string
	 * @Column(type="string", name="type_name", unique=true)
	 */
	private $type;
	/**
	 *
	 * @var string
	 * @Column(type="string", name="type_abbreviation", unique=true)
	 */
	private $abbreviation;
	/**
	 * @var kateglo\application\helpers\collections\ArrayCollection
	 * @ManyToMany(targetEntity="Lemma")
	 * @JoinTable(name="lemma_type",
	 * 		joinColumns={@JoinColumn(name="type_id", referencedColumnName="type_id")},
	 * 		inverseJoinColumns={@JoinColumn(name="lemma_id", referencedColumnName="lemma_id")}
	 * )
	 */
	private $lemmas;
	public function __construct(){
		$this->lemmas = new \Doctrine\Common\Collections\ArrayCollection();
	}
	
	/**
	 *
	 * @return int
	 */
	public function getId(){
		return $this->id;
	}
	/**
	 *
	 * @param string $type
	 * @return void
	 */
	public function setType($type){
		$this->type = $type;
	}
	/**
	 *
	 * @return string
	 */
	public function getType(){
		return $this->type;
	}
	/**
	 *
	 * @param string $abbreviation
	 * @return void
	 */
	public function setAbbreviation($abbreviation){
		$this->abbreviation = $abbreviation;
	}
	/**
	 *
	 * @return string
	 */
	public function getAbbreviation(){
		return $this->abbreviation;
	}
	/**
	 * 
	 * @param kateglo\application\models\Lemma $lemma
	 * @return void
	 */
	public function addLemma(Lemma $lemma)
	{
		if (!$this->lemmas->contains($lemma)) {
			$this->lemmas[] = $lemma;
			$lemma->addType($this);
		}
	}
	/**
	 * 
	 * @param kateglo\application\models\Lemma $lemma
	 * @return void
	 */
	public function removeLEmma(Lemma $lemma)
	{
		$removed = $this->lemmas->removeElement($lemma);
		if ($removed !== null) {
			$removed->removeType($this);
		}
	}
	/**
	 * 
	 * @return kateglo\application\helpers\collections\ArrayCollection
	 */
	public function getCategories()
	{
		return $this->categories;
	}
}
/**
 * @Entity
 * @Table(name="phrase")
 */
class Phrase {
    const CLASS_NAME = __CLASS__;
    /**
     * @Id
     * @Column(type="integer", name="phrase_id")
     * @GeneratedValue(strategy="AUTO")
     */
    private $id;
    /**
     * @Column(type="string", name="phrase_name", unique=true, length=255)
     */
    private $phrase;
    /**
     * @ManyToOne(targetEntity="PhraseType")
     * @JoinColumn(name="phrase_type_id", referencedColumnName="phrase_type_id")
     */
    private $type;
    
    /**
     * @OneToMany(targetEntity="Definition", mappedBy="phrase", cascade={"persist"})
     */
    private $definitions;
    public function __construct() {
        $this->definitions = new \Doctrine\Common\Collections\ArrayCollection;
    }
    
    /**
     * 
     * @param Definition $definition
     * @return void
     */
    public function addDefinition(Definition $definition){
        $this->definitions[] = $definition;
        $definition->setPhrase($this);
    }
    
    /**
     * @return int
     */
    public function getId(){
        return $this->id;
    }
    
    /**
     * @param string $phrase
     * @return void
     */
    public function setPhrase($phrase){
        $this->phrase = $phrase;
    }
    
    /**
     * @return string
     */
    public function getPhrase(){
        return $this->phrase;
    }
    
    /**
     *
     * @param PhraseType $type
     * @return void
     */
    public function setType(PhraseType $type){
        $this->type = $type;
    }
    
    /**
     *
     * @return PhraseType
     */
    public function getType(){
        return $this->type;
    }
    
    /**
     * 
     * @return ArrayCollection
     */
    public function getDefinitions(){
        return $this->definitions;
    }
}
/**
 * @Entity
 * @Table(name="phrase_type")
 */
class PhraseType {
    
    const CLASS_NAME = __CLASS__;
    
    /**
     * @Id
     * @Column(type="integer", name="phrase_type_id")
     * @GeneratedValue(strategy="AUTO")
     */
    private $id;
    
    /**
     * @Column(type="string", name="phrase_type_name", unique=true)
     */
    private $type;
    
    /**
     * @Column(type="string", name="phrase_type_abbreviation", unique=true)
     */
    private $abbreviation;
    
    /**
     * @OneToMany(targetEntity="Phrase", mappedBy="type")
     */
    private $phrases;
    
    public function __construct() {
        $this->phrases = new \Doctrine\Common\Collections\ArrayCollection;
    }
    
    /**
     * @return int
     */
    public function getId(){
        return $this->id;
    }
    
    /**
     * @param string $type
     * @return void
     */
    public function setType($type){
        $this->type = $type;
    }
    
    /**
     * @return string
     */
    public function getType(){
        return $this->type;
    }
    
    /**
     * @param string $abbreviation
     * @return void
     */
    public function setAbbreviation($abbreviation){
        $this->abbreviation = $abbreviation;
    }
    
    /**
     * @return string
     */
    public function getAbbreviation(){
        return $this->abbreviation;
    }
    
    /**
     * @param ArrayCollection $phrases
     * @return void
     */
    public function setPhrases($phrases){
        $this->phrases = $phrases;
    }
    
    /**
     * 
     * @return ArrayCollection
     */
    public function getPhrases(){
        return $this->phrases;
    }
    
}
/**
 * @Entity
 * @Table(name="definition")
 */
class Definition {
    
    const CLASS_NAME = __CLASS__;
    
    /**
     * @Id
     * @Column(type="integer", name="definition_id")
     * @GeneratedValue(strategy="AUTO")
     */
    private $id;
    
    /**
     * @ManyToOne(targetEntity="Phrase")
     * @JoinColumn(name="definition_phrase_id", referencedColumnName="phrase_id")
     */
    private $phrase;
    
    /**
     * @Column(type="text", name="definition_text")
     */
    private $definition;
    
    /**
     * @return int
     */
    public function getId(){
        return $this->id;
    }
    
    /**
     * @param Phrase $phrase
     * @return void
     */
    public function setPhrase(Phrase $phrase){
        $this->phrase = $phrase;
    }
    
    /**
     * @return Phrase
     */
    public function getPhrase(){
        return $this->phrase;
    }
    
    public function removePhrase() {
        if ($this->phrase !== null) {
            /*@var $phrase kateglo\application\models\Phrase */
            $phrase = $this->phrase;
            $this->phrase = null;
            $phrase->removeDefinition($this);
        }
    }
    
    /**
     * @param string $definition
     * @return void
     */
    public function setDefinition($definition){
        $this->definition = $definition;
    }
    
    /**
     * @return string
     */
    public function getDefinition(){
        return $this->definition;
    }
}
 |