Few more converts from assertTrue($a instance of $b) to assertInstanceOf
This commit is contained in:
parent
1ea3e543ab
commit
7261060905
@ -46,7 +46,7 @@ class BasicFunctionalTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$this->_em->flush();
|
||||
$this->assertTrue($this->_em->contains($ph));
|
||||
$this->assertTrue($this->_em->contains($user));
|
||||
//$this->assertTrue($user->phonenumbers instanceof \Doctrine\ORM\PersistentCollection);
|
||||
//$this->assertInstanceOf('Doctrine\ORM\PersistentCollection', $user->phonenumbers);
|
||||
|
||||
// Update name
|
||||
$user->name = 'guilherme';
|
||||
@ -92,7 +92,7 @@ class BasicFunctionalTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$this->_em->persist($user);
|
||||
$this->_em->flush();
|
||||
|
||||
//$this->assertTrue($user->phonenumbers instanceof \Doctrine\ORM\PersistentCollection);
|
||||
//$this->assertInstanceOf('Doctrine\ORM\PersistentCollection', $user->phonenumbers);
|
||||
|
||||
// Remove the first element from the collection
|
||||
unset($user->phonenumbers[0]);
|
||||
|
@ -50,8 +50,8 @@ class ClassTableInheritanceTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$entities = $query->getResult();
|
||||
|
||||
$this->assertEquals(2, count($entities));
|
||||
$this->assertTrue($entities[0] instanceof CompanyPerson);
|
||||
$this->assertTrue($entities[1] instanceof CompanyEmployee);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyPerson', $entities[0]);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyEmployee', $entities[1]);
|
||||
$this->assertTrue(is_numeric($entities[0]->getId()));
|
||||
$this->assertTrue(is_numeric($entities[1]->getId()));
|
||||
$this->assertEquals('Roman S. Borschel', $entities[0]->getName());
|
||||
@ -65,7 +65,7 @@ class ClassTableInheritanceTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$entities = $query->getResult();
|
||||
|
||||
$this->assertEquals(1, count($entities));
|
||||
$this->assertTrue($entities[0] instanceof CompanyEmployee);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyEmployee', $entities[0]);
|
||||
$this->assertTrue(is_numeric($entities[0]->getId()));
|
||||
$this->assertEquals('Guilherme Blanco', $entities[0]->getName());
|
||||
$this->assertEquals(100000, $entities[0]->getSalary());
|
||||
@ -73,7 +73,7 @@ class ClassTableInheritanceTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$this->_em->clear();
|
||||
|
||||
$guilherme = $this->_em->getRepository(get_class($employee))->findOneBy(array('name' => 'Guilherme Blanco'));
|
||||
$this->assertTrue($guilherme instanceof CompanyEmployee);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyEmployee', $guilherme);
|
||||
$this->assertEquals('Guilherme Blanco', $guilherme->getName());
|
||||
|
||||
$this->_em->clear();
|
||||
@ -110,7 +110,7 @@ class ClassTableInheritanceTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
|
||||
$manager = $this->_em->find('Doctrine\Tests\Models\Company\CompanyManager', $manager->getId());
|
||||
|
||||
$this->assertTrue($manager instanceof CompanyManager);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyManager', $manager);
|
||||
$this->assertEquals('Roman B.', $manager->getName());
|
||||
$this->assertEquals(119000, $manager->getSalary());
|
||||
$this->assertEquals('CEO', $manager->getTitle());
|
||||
@ -130,12 +130,12 @@ class ClassTableInheritanceTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
|
||||
$person = $this->_em->find('Doctrine\Tests\Models\Company\CompanyPerson', $manager->getId());
|
||||
|
||||
$this->assertTrue($person instanceof CompanyManager);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyManager', $person);
|
||||
$this->assertEquals('Roman S. Borschel', $person->getName());
|
||||
$this->assertEquals(100000, $person->getSalary());
|
||||
$this->assertEquals('CTO', $person->getTitle());
|
||||
$this->assertTrue(is_numeric($person->getId()));
|
||||
//$this->assertTrue($person->getCar() instanceof CompanyCar);
|
||||
//$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyCar', $person->getCar());
|
||||
}
|
||||
|
||||
public function testSelfReferencingOneToOne() {
|
||||
@ -167,9 +167,9 @@ class ClassTableInheritanceTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
|
||||
$result = $query->getResult();
|
||||
$this->assertEquals(1, count($result));
|
||||
$this->assertTrue($result[0] instanceof CompanyPerson);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyPerson', $result[0]);
|
||||
$this->assertEquals('Mary Smith', $result[0]->getName());
|
||||
$this->assertTrue($result[0]->getSpouse() instanceof CompanyEmployee);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyEmployee', $result[0]->getSpouse());
|
||||
$this->assertEquals('John Smith', $result[0]->getSpouse()->getName());
|
||||
$this->assertSame($result[0], $result[0]->getSpouse()->getSpouse());
|
||||
}
|
||||
@ -229,20 +229,20 @@ class ClassTableInheritanceTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$result = $q->getResult();
|
||||
|
||||
$this->assertEquals(1, count($result));
|
||||
$this->assertTrue($result[0] instanceof CompanyOrganization);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyOrganization', $result[0]);
|
||||
$this->assertNull($result[0]->getMainEvent());
|
||||
|
||||
$events = $result[0]->getEvents();
|
||||
|
||||
$this->assertTrue($events instanceof \Doctrine\ORM\PersistentCollection);
|
||||
$this->assertInstanceOf('Doctrine\ORM\PersistentCollection', $events);
|
||||
$this->assertFalse($events->isInitialized());
|
||||
|
||||
$this->assertEquals(2, count($events));
|
||||
if ($events[0] instanceof CompanyAuction) {
|
||||
$this->assertTrue($events[1] instanceof CompanyRaffle);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyRaffle', $events[1]);
|
||||
} else {
|
||||
$this->assertTrue($events[0] instanceof CompanyRaffle);
|
||||
$this->assertTrue($events[1] instanceof CompanyAuction);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyRaffle', $events[0]);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyAuction', $events[1]);
|
||||
}
|
||||
}
|
||||
|
||||
@ -263,7 +263,7 @@ class ClassTableInheritanceTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
|
||||
$result = $q->getResult();
|
||||
$this->assertEquals(1, count($result));
|
||||
$this->assertTrue($result[0] instanceof CompanyAuction, sprintf("Is of class %s",get_class($result[0])));
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyAuction', $result[0], sprintf("Is of class %s",get_class($result[0])));
|
||||
|
||||
$this->_em->clear();
|
||||
|
||||
@ -273,12 +273,12 @@ class ClassTableInheritanceTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$result = $q->getResult();
|
||||
|
||||
$this->assertEquals(1, count($result));
|
||||
$this->assertTrue($result[0] instanceof CompanyOrganization);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyOrganization', $result[0]);
|
||||
|
||||
$mainEvent = $result[0]->getMainEvent();
|
||||
// mainEvent should have been loaded because it can't be lazy
|
||||
$this->assertTrue($mainEvent instanceof CompanyAuction);
|
||||
$this->assertFalse($mainEvent instanceof \Doctrine\ORM\Proxy\Proxy);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyAuction', $mainEvent);
|
||||
$this->assertNotInstanceOf('Doctrine\ORM\Proxy\Proxy', $mainEvent);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -43,9 +43,9 @@ class ClassTableInheritanceTest2 extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
|
||||
$related2 = $this->_em->find('Doctrine\Tests\ORM\Functional\CTIRelated', $relatedId);
|
||||
|
||||
$this->assertTrue($related2 instanceof CTIRelated);
|
||||
$this->assertTrue($related2->getCTIParent() instanceof CTIChild);
|
||||
$this->assertFalse($related2->getCTIParent() instanceof \Doctrine\ORM\Proxy\Proxy);
|
||||
$this->assertInstanceOf('Doctrine\Tests\ORM\Functional\CTIRelated', $related2);
|
||||
$this->assertInstanceOf('Doctrine\Tests\ORM\Functional\CTIChild', $related2->getCTIParent());
|
||||
$this->assertNotInstanceOf('Doctrine\ORM\Proxy\Proxy', $related2->getCTIParent());
|
||||
$this->assertEquals('hello', $related2->getCTIParent()->getData());
|
||||
|
||||
$this->assertSame($related2, $related2->getCTIParent()->getRelated());
|
||||
@ -69,7 +69,7 @@ class ClassTableInheritanceTest2 extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$this->assertFalse($mmrel2->getCTIChildren()->isInitialized());
|
||||
$this->assertEquals(1, count($mmrel2->getCTIChildren()));
|
||||
$this->assertTrue($mmrel2->getCTIChildren()->isInitialized());
|
||||
$this->assertTrue($mmrel2->getCTIChildren()->get(0) instanceof CTIChild);
|
||||
$this->assertInstanceOf('Doctrine\Tests\ORM\Functional\CTIChild', $mmrel2->getCTIChildren()->get(0));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -137,14 +137,14 @@ class DetachedEntityTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$this->_em->clear();
|
||||
|
||||
$address2 = $this->_em->find(get_class($address), $address->id);
|
||||
$this->assertTrue($address2->user instanceof \Doctrine\ORM\Proxy\Proxy);
|
||||
$this->assertInstanceOf('Doctrine\ORM\Proxy\Proxy', $address2->user);
|
||||
$this->assertFalse($address2->user->__isInitialized__);
|
||||
$detachedAddress2 = unserialize(serialize($address2));
|
||||
$this->assertTrue($detachedAddress2->user instanceof \Doctrine\ORM\Proxy\Proxy);
|
||||
$this->assertInstanceOf('Doctrine\ORM\Proxy\Proxy', $detachedAddress2->user);
|
||||
$this->assertFalse($detachedAddress2->user->__isInitialized__);
|
||||
|
||||
$managedAddress2 = $this->_em->merge($detachedAddress2);
|
||||
$this->assertTrue($managedAddress2->user instanceof \Doctrine\ORM\Proxy\Proxy);
|
||||
$this->assertInstanceOf('Doctrine\ORM\Proxy\Proxy', $managedAddress2->user);
|
||||
$this->assertFalse($managedAddress2->user === $detachedAddress2->user);
|
||||
$this->assertFalse($managedAddress2->user->__isInitialized__);
|
||||
}
|
||||
|
@ -47,7 +47,7 @@ class ManyToManyBasicAssociationTest extends \Doctrine\Tests\OrmFunctionalTestCa
|
||||
$result = $query->getResult();
|
||||
|
||||
$this->assertEquals(2, $this->_em->getUnitOfWork()->size());
|
||||
$this->assertTrue($result[0] instanceof CmsUser);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsUser', $result[0]);
|
||||
$this->assertEquals('Guilherme', $result[0]->name);
|
||||
$this->assertEquals(1, $result[0]->getGroups()->count());
|
||||
$groups = $result[0]->getGroups();
|
||||
@ -56,8 +56,8 @@ class ManyToManyBasicAssociationTest extends \Doctrine\Tests\OrmFunctionalTestCa
|
||||
$this->assertEquals(\Doctrine\ORM\UnitOfWork::STATE_MANAGED, $this->_em->getUnitOfWork()->getEntityState($result[0]));
|
||||
$this->assertEquals(\Doctrine\ORM\UnitOfWork::STATE_MANAGED, $this->_em->getUnitOfWork()->getEntityState($groups[0]));
|
||||
|
||||
$this->assertTrue($groups instanceof \Doctrine\ORM\PersistentCollection);
|
||||
$this->assertTrue($groups[0]->getUsers() instanceof \Doctrine\ORM\PersistentCollection);
|
||||
$this->assertInstanceOf('Doctrine\ORM\PersistentCollection', $groups);
|
||||
$this->assertInstanceOf('Doctrine\ORM\PersistentCollection', $groups[0]->getUsers());
|
||||
|
||||
$groups[0]->getUsers()->clear();
|
||||
$groups->clear();
|
||||
|
@ -117,8 +117,8 @@ class ManyToManyBidirectionalAssociationTest extends AbstractManyToManyAssociati
|
||||
//$query->setHint(Query::HINT_FORCE_PARTIAL_LOAD, true);
|
||||
$result = $query->getResult();
|
||||
$this->assertEquals(2, count($result));
|
||||
$this->assertTrue($result[0] instanceof ECommerceCategory);
|
||||
$this->assertTrue($result[1] instanceof ECommerceCategory);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceCategory', $result[0]);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceCategory', $result[1]);
|
||||
$prods1 = $result[0]->getProducts();
|
||||
$prods2 = $result[1]->getProducts();
|
||||
$this->assertTrue($prods1->isInitialized());
|
||||
@ -157,10 +157,10 @@ class ManyToManyBidirectionalAssociationTest extends AbstractManyToManyAssociati
|
||||
$this->assertEquals(2, count($secondCategoryProducts)); // lazy-load
|
||||
$this->assertTrue($secondCategoryProducts->isInitialized());
|
||||
|
||||
$this->assertTrue($firstCategoryProducts[0] instanceof ECommerceProduct);
|
||||
$this->assertTrue($firstCategoryProducts[1] instanceof ECommerceProduct);
|
||||
$this->assertTrue($secondCategoryProducts[0] instanceof ECommerceProduct);
|
||||
$this->assertTrue($secondCategoryProducts[1] instanceof ECommerceProduct);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $firstCategoryProducts[0]);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $firstCategoryProducts[1]);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $secondCategoryProducts[0]);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $secondCategoryProducts[1]);
|
||||
|
||||
$this->assertCollectionEquals($firstCategoryProducts, $secondCategoryProducts);
|
||||
}
|
||||
@ -192,10 +192,10 @@ class ManyToManyBidirectionalAssociationTest extends AbstractManyToManyAssociati
|
||||
$this->assertEquals(2, count($secondProductCategories)); // lazy-load
|
||||
$this->assertTrue($secondProductCategories->isInitialized());
|
||||
|
||||
$this->assertTrue($firstProductCategories[0] instanceof ECommerceCategory);
|
||||
$this->assertTrue($firstProductCategories[1] instanceof ECommerceCategory);
|
||||
$this->assertTrue($secondProductCategories[0] instanceof ECommerceCategory);
|
||||
$this->assertTrue($secondProductCategories[1] instanceof ECommerceCategory);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceCategory', $firstProductCategories[0]);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceCategory', $firstProductCategories[1]);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceCategory', $secondProductCategories[0]);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceCategory', $secondProductCategories[1]);
|
||||
|
||||
$this->assertCollectionEquals($firstProductCategories, $secondProductCategories);
|
||||
}
|
||||
|
@ -95,10 +95,10 @@ class ManyToManySelfReferentialAssociationTest extends AbstractManyToManyAssocia
|
||||
$this->assertEquals(2, count($firstRelatedBy));
|
||||
$this->assertEquals(2, count($secondRelatedBy));
|
||||
|
||||
$this->assertTrue($firstRelatedBy[0] instanceof ECommerceProduct);
|
||||
$this->assertTrue($firstRelatedBy[1] instanceof ECommerceProduct);
|
||||
$this->assertTrue($secondRelatedBy[0] instanceof ECommerceProduct);
|
||||
$this->assertTrue($secondRelatedBy[1] instanceof ECommerceProduct);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $firstRelatedBy[0]);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $firstRelatedBy[1]);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $secondRelatedBy[0]);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $secondRelatedBy[1]);
|
||||
|
||||
$this->assertCollectionEquals($firstRelatedBy, $secondRelatedBy);
|
||||
}
|
||||
|
@ -69,8 +69,8 @@ class ManyToManyUnidirectionalAssociationTest extends AbstractManyToManyAssociat
|
||||
$products = $firstCart->getProducts();
|
||||
$secondCart = $result[1];
|
||||
|
||||
$this->assertTrue($products[0] instanceof ECommerceProduct);
|
||||
$this->assertTrue($products[1] instanceof ECommerceProduct);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $products[0]);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $products[1]);
|
||||
$this->assertCollectionEquals($products, $secondCart->getProducts());
|
||||
//$this->assertEquals("Doctrine 1.x Manual", $products[0]->getName());
|
||||
//$this->assertEquals("Doctrine 2.x Manual", $products[1]->getName());
|
||||
@ -88,8 +88,8 @@ class ManyToManyUnidirectionalAssociationTest extends AbstractManyToManyAssociat
|
||||
$products = $firstCart->getProducts();
|
||||
$secondCart = $result[1];
|
||||
|
||||
$this->assertTrue($products[0] instanceof ECommerceProduct);
|
||||
$this->assertTrue($products[1] instanceof ECommerceProduct);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $products[0]);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $products[1]);
|
||||
$this->assertCollectionEquals($products, $secondCart->getProducts());
|
||||
}
|
||||
|
||||
|
@ -49,7 +49,7 @@ class NativeQueryTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$users = $query->getResult();
|
||||
|
||||
$this->assertEquals(1, count($users));
|
||||
$this->assertTrue($users[0] instanceof CmsUser);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsUser', $users[0]);
|
||||
$this->assertEquals('Roman', $users[0]->name);
|
||||
}
|
||||
|
||||
@ -83,9 +83,9 @@ class NativeQueryTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
|
||||
$users = $query->getResult();
|
||||
$this->assertEquals(1, count($users));
|
||||
$this->assertTrue($users[0] instanceof CmsUser);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsUser', $users[0]);
|
||||
$this->assertEquals('Roman', $users[0]->name);
|
||||
$this->assertTrue($users[0]->getPhonenumbers() instanceof \Doctrine\ORM\PersistentCollection);
|
||||
$this->assertInstanceOf('Doctrine\ORM\PersistentCollection', $users[0]->getPhonenumbers());
|
||||
$this->assertTrue($users[0]->getPhonenumbers()->isInitialized());
|
||||
$this->assertEquals(1, count($users[0]->getPhonenumbers()));
|
||||
$phones = $users[0]->getPhonenumbers();
|
||||
@ -132,11 +132,11 @@ class NativeQueryTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$users = $query->getResult();
|
||||
|
||||
$this->assertEquals(1, count($users));
|
||||
$this->assertTrue($users[0] instanceof CmsUser);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsUser', $users[0]);
|
||||
$this->assertEquals('Roman', $users[0]->name);
|
||||
$this->assertTrue($users[0]->getPhonenumbers() instanceof \Doctrine\ORM\PersistentCollection);
|
||||
$this->assertInstanceOf('Doctrine\ORM\PersistentCollection', $users[0]->getPhonenumbers());
|
||||
$this->assertFalse($users[0]->getPhonenumbers()->isInitialized());
|
||||
$this->assertTrue($users[0]->getAddress() instanceof CmsAddress);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsAddress', $users[0]->getAddress());
|
||||
$this->assertTrue($users[0]->getAddress()->getUser() == $users[0]);
|
||||
$this->assertEquals('germany', $users[0]->getAddress()->getCountry());
|
||||
$this->assertEquals(10827, $users[0]->getAddress()->getZipCode());
|
||||
@ -185,9 +185,9 @@ class NativeQueryTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
|
||||
$users = $query->getResult();
|
||||
$this->assertEquals(1, count($users));
|
||||
$this->assertTrue($users[0] instanceof CmsUser);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsUser', $users[0]);
|
||||
$this->assertEquals('Roman', $users[0]->name);
|
||||
$this->assertTrue($users[0]->getPhonenumbers() instanceof \Doctrine\ORM\PersistentCollection);
|
||||
$this->assertInstanceOf('Doctrine\ORM\PersistentCollection', $users[0]->getPhonenumbers());
|
||||
$this->assertTrue($users[0]->getPhonenumbers()->isInitialized());
|
||||
$this->assertEquals(1, count($users[0]->getPhonenumbers()));
|
||||
$phones = $users[0]->getPhonenumbers();
|
||||
@ -226,11 +226,11 @@ class NativeQueryTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$users = $query->getResult();
|
||||
|
||||
$this->assertEquals(1, count($users));
|
||||
$this->assertTrue($users[0] instanceof CmsUser);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsUser', $users[0]);
|
||||
$this->assertEquals('Roman', $users[0]->name);
|
||||
$this->assertTrue($users[0]->getPhonenumbers() instanceof \Doctrine\ORM\PersistentCollection);
|
||||
$this->assertInstanceOf('Doctrine\ORM\PersistentCollection', $users[0]->getPhonenumbers());
|
||||
$this->assertFalse($users[0]->getPhonenumbers()->isInitialized());
|
||||
$this->assertTrue($users[0]->getAddress() instanceof CmsAddress);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsAddress', $users[0]->getAddress());
|
||||
$this->assertTrue($users[0]->getAddress()->getUser() == $users[0]);
|
||||
$this->assertEquals('germany', $users[0]->getAddress()->getCountry());
|
||||
$this->assertEquals(10827, $users[0]->getAddress()->getZipCode());
|
||||
|
@ -77,13 +77,13 @@ class OneToManyBidirectionalAssociationTest extends \Doctrine\Tests\OrmFunctiona
|
||||
|
||||
$features = $product->getFeatures();
|
||||
|
||||
$this->assertTrue($features[0] instanceof ECommerceFeature);
|
||||
$this->assertFalse($features[0]->getProduct() instanceof \Doctrine\ORM\Proxy\Proxy);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceFeature', $features[0]);
|
||||
$this->assertNotInstanceOf('Doctrine\ORM\Proxy\Proxy', $features[0]->getProduct());
|
||||
$this->assertSame($product, $features[0]->getProduct());
|
||||
$this->assertEquals('Model writing tutorial', $features[0]->getDescription());
|
||||
$this->assertTrue($features[1] instanceof ECommerceFeature);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceFeature', $features[1]);
|
||||
$this->assertSame($product, $features[1]->getProduct());
|
||||
$this->assertFalse($features[1]->getProduct() instanceof \Doctrine\ORM\Proxy\Proxy);
|
||||
$this->assertNotInstanceOf('Doctrine\ORM\Proxy\Proxy', $features[1]->getProduct());
|
||||
$this->assertEquals('Annotations examples', $features[1]->getDescription());
|
||||
}
|
||||
|
||||
@ -97,11 +97,11 @@ class OneToManyBidirectionalAssociationTest extends \Doctrine\Tests\OrmFunctiona
|
||||
$features = $product->getFeatures();
|
||||
|
||||
$this->assertFalse($features->isInitialized());
|
||||
$this->assertTrue($features[0] instanceof ECommerceFeature);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceFeature', $features[0]);
|
||||
$this->assertTrue($features->isInitialized());
|
||||
$this->assertSame($product, $features[0]->getProduct());
|
||||
$this->assertEquals('Model writing tutorial', $features[0]->getDescription());
|
||||
$this->assertTrue($features[1] instanceof ECommerceFeature);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceFeature', $features[1]);
|
||||
$this->assertSame($product, $features[1]->getProduct());
|
||||
$this->assertEquals('Annotations examples', $features[1]->getDescription());
|
||||
}
|
||||
@ -114,8 +114,8 @@ class OneToManyBidirectionalAssociationTest extends \Doctrine\Tests\OrmFunctiona
|
||||
$features = $query->getResult();
|
||||
|
||||
$product = $features[0]->getProduct();
|
||||
$this->assertTrue($product instanceof \Doctrine\ORM\Proxy\Proxy);
|
||||
$this->assertTrue($product instanceof ECommerceProduct);
|
||||
$this->assertInstanceOf('Doctrine\ORM\Proxy\Proxy', $product);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $product);
|
||||
$this->assertFalse($product->__isInitialized__);
|
||||
$this->assertSame('Doctrine Cookbook', $product->getName());
|
||||
$this->assertTrue($product->__isInitialized__);
|
||||
@ -130,8 +130,8 @@ class OneToManyBidirectionalAssociationTest extends \Doctrine\Tests\OrmFunctiona
|
||||
$features = $query->getResult();
|
||||
|
||||
$product = $features[0]->getProduct();
|
||||
$this->assertFalse($product instanceof \Doctrine\ORM\Proxy\Proxy);
|
||||
$this->assertTrue($product instanceof ECommerceProduct);
|
||||
$this->assertNotInstanceOf('Doctrine\ORM\Proxy\Proxy', $product);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceProduct', $product);
|
||||
$this->assertSame('Doctrine Cookbook', $product->getName());
|
||||
|
||||
$this->assertFalse($product->getFeatures()->isInitialized());
|
||||
|
@ -79,10 +79,10 @@ class OneToManySelfReferentialAssociationTest extends \Doctrine\Tests\OrmFunctio
|
||||
$parent = $result[0];
|
||||
$children = $parent->getChildren();
|
||||
|
||||
$this->assertTrue($children[0] instanceof ECommerceCategory);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceCategory', $children[0]);
|
||||
$this->assertSame($parent, $children[0]->getParent());
|
||||
$this->assertEquals(' books', strstr($children[0]->getName(), ' books'));
|
||||
$this->assertTrue($children[1] instanceof ECommerceCategory);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceCategory', $children[1]);
|
||||
$this->assertSame($parent, $children[1]->getParent());
|
||||
$this->assertEquals(' books', strstr($children[1]->getName(), ' books'));
|
||||
}
|
||||
@ -98,10 +98,10 @@ class OneToManySelfReferentialAssociationTest extends \Doctrine\Tests\OrmFunctio
|
||||
$parent = $result[0];
|
||||
$children = $parent->getChildren();
|
||||
|
||||
$this->assertTrue($children[0] instanceof ECommerceCategory);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceCategory', $children[0]);
|
||||
$this->assertSame($parent, $children[0]->getParent());
|
||||
$this->assertEquals(' books', strstr($children[0]->getName(), ' books'));
|
||||
$this->assertTrue($children[1] instanceof ECommerceCategory);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceCategory', $children[1]);
|
||||
$this->assertSame($parent, $children[1]->getParent());
|
||||
$this->assertEquals(' books', strstr($children[1]->getName(), ' books'));
|
||||
}
|
||||
|
@ -62,7 +62,7 @@ class OneToOneBidirectionalAssociationTest extends \Doctrine\Tests\OrmFunctional
|
||||
$result = $query->getResult();
|
||||
$customer = $result[0];
|
||||
|
||||
$this->assertTrue($customer->getCart() instanceof ECommerceCart);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceCart', $customer->getCart());
|
||||
$this->assertEquals('paypal', $customer->getCart()->getPayment());
|
||||
}
|
||||
|
||||
@ -75,7 +75,7 @@ class OneToOneBidirectionalAssociationTest extends \Doctrine\Tests\OrmFunctional
|
||||
$result = $query->getResult();
|
||||
$cart = $result[0];
|
||||
|
||||
$this->assertTrue($cart->getCustomer() instanceof ECommerceCustomer);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceCustomer', $cart->getCustomer());
|
||||
$this->assertEquals('Giorgio', $cart->getCustomer()->getName());
|
||||
}
|
||||
|
||||
@ -90,8 +90,8 @@ class OneToOneBidirectionalAssociationTest extends \Doctrine\Tests\OrmFunctional
|
||||
$customer = $result[0];
|
||||
|
||||
$this->assertNull($customer->getMentor());
|
||||
$this->assertTrue($customer->getCart() instanceof ECommerceCart);
|
||||
$this->assertFalse($customer->getCart() instanceof \Doctrine\ORM\Proxy\Proxy);
|
||||
$this->assertInstanceOF('Doctrine\Tests\Models\ECommerce\ECommerceCart', $customer->getCart());
|
||||
$this->assertNotInstanceOf('Doctrine\ORM\Proxy\Proxy', $customer->getCart());
|
||||
$this->assertEquals('paypal', $customer->getCart()->getPayment());
|
||||
}
|
||||
|
||||
@ -107,7 +107,7 @@ class OneToOneBidirectionalAssociationTest extends \Doctrine\Tests\OrmFunctional
|
||||
$this->_em->flush();
|
||||
$this->_em->clear();
|
||||
|
||||
$this->assertTrue($cust->getCart() instanceof ECommerceCart);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceCart', $cust->getCart());
|
||||
$this->assertEquals('Roman', $cust->getName());
|
||||
$this->assertSame($cust, $cart->getCustomer());
|
||||
|
||||
@ -126,7 +126,7 @@ class OneToOneBidirectionalAssociationTest extends \Doctrine\Tests\OrmFunctional
|
||||
|
||||
$cart3 = $query2->getSingleResult();
|
||||
|
||||
$this->assertTrue($cart3->getCustomer() instanceof ECommerceCustomer);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceCustomer', $cart3->getCustomer());
|
||||
$this->assertEquals('Roman', $cart3->getCustomer()->getName());
|
||||
}
|
||||
|
||||
|
@ -104,8 +104,8 @@ class OneToOneSelfReferentialAssociationTest extends \Doctrine\Tests\OrmFunction
|
||||
|
||||
$entity2 = $this->_em->find(get_class($entity1), $entity1->getId());
|
||||
|
||||
$this->assertTrue($entity2->getOther1() instanceof MultiSelfReference);
|
||||
$this->assertTrue($entity2->getOther2() instanceof MultiSelfReference);
|
||||
$this->assertInstanceOf('Doctrine\Tests\ORM\Functional\MultiSelfReference', $entity2->getOther1());
|
||||
$this->assertInstanceOf('Doctrine\Tests\ORM\Functional\MultiSelfReference', $entity2->getOther2());
|
||||
$this->assertNull($entity2->getOther1()->getOther1());
|
||||
$this->assertNull($entity2->getOther1()->getOther2());
|
||||
$this->assertNull($entity2->getOther2()->getOther1());
|
||||
@ -114,7 +114,7 @@ class OneToOneSelfReferentialAssociationTest extends \Doctrine\Tests\OrmFunction
|
||||
|
||||
public function assertLoadingOfAssociation($customer)
|
||||
{
|
||||
$this->assertTrue($customer->getMentor() instanceof ECommerceCustomer);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\ECommerce\ECommerceCustomer', $customer->getMentor());
|
||||
$this->assertEquals('Obi-wan Kenobi', $customer->getMentor()->getName());
|
||||
}
|
||||
|
||||
|
@ -38,7 +38,7 @@ class QueryTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$result = $query->getResult();
|
||||
|
||||
$this->assertEquals(1, count($result));
|
||||
$this->assertTrue($result[0][0] instanceof CmsUser);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsUser', $result[0][0]);
|
||||
$this->assertEquals('Guilherme', $result[0][0]->name);
|
||||
$this->assertEquals('gblanco', $result[0][0]->username);
|
||||
$this->assertEquals('developer', $result[0][0]->status);
|
||||
@ -90,7 +90,7 @@ class QueryTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$query = $this->_em->createQuery("select u, a from Doctrine\Tests\Models\CMS\CmsUser u join u.articles a");
|
||||
$users = $query->getResult();
|
||||
$this->assertEquals(1, count($users));
|
||||
$this->assertTrue($users[0] instanceof CmsUser);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsUser', $users[0]);
|
||||
$this->assertEquals(2, count($users[0]->articles));
|
||||
$this->assertEquals('Doctrine 2', $users[0]->articles[0]->topic);
|
||||
$this->assertEquals('Symfony 2', $users[0]->articles[1]->topic);
|
||||
@ -361,9 +361,9 @@ class QueryTest extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
|
||||
$result = $q->getResult();
|
||||
$this->assertEquals(1, count($result));
|
||||
$this->assertTrue($result[0] instanceof CmsArticle);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\CMS\CmsArticle', $result[0]);
|
||||
$this->assertEquals("dr. dolittle", $result[0]->topic);
|
||||
$this->assertTrue($result[0]->user instanceof \Doctrine\ORM\Proxy\Proxy);
|
||||
$this->assertInstanceOf('Doctrine\ORM\Proxy\Proxy', $result[0]->user);
|
||||
$this->assertFalse($result[0]->user->__isInitialized__);
|
||||
}
|
||||
|
||||
|
@ -58,7 +58,7 @@ class DDC168Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$this->assertEquals("bar", $theEmployee->getDepartment());
|
||||
$this->assertEquals("Foo", $theEmployee->getName());
|
||||
$this->assertEquals(1000, $theEmployee->getSalary());
|
||||
$this->assertTrue($theEmployee instanceof CompanyEmployee);
|
||||
$this->assertTrue($theEmployee->getSpouse() instanceof CompanyEmployee);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyEmployee', $theEmployee);
|
||||
$this->assertInstanceOf('Doctrine\Tests\Models\Company\CompanyEmployee', $theEmployee->getSpouse());
|
||||
}
|
||||
}
|
@ -40,11 +40,11 @@ class DDC199Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$result = $query->getResult();
|
||||
|
||||
$this->assertEquals(1, count($result));
|
||||
$this->assertTrue($result[0] instanceof DDC199ChildClass);
|
||||
$this->assertInstanceOf('Doctrine\Tests\ORM\Functional\Ticket\DDC199ParentClass', $result[0]);
|
||||
$this->assertTrue($result[0]->relatedEntities->isInitialized());
|
||||
$this->assertEquals(2, $result[0]->relatedEntities->count());
|
||||
$this->assertTrue($result[0]->relatedEntities[0] instanceof DDC199RelatedClass);
|
||||
$this->assertTrue($result[0]->relatedEntities[1] instanceof DDC199RelatedClass);
|
||||
$this->assertInstanceOf('Doctrine\Tests\ORM\Functional\Ticket\DDC199RelatedClass', $result[0]->relatedEntities[0]);
|
||||
$this->assertInstanceOf('Doctrine\Tests\ORM\Functional\Ticket\DDC199RelatedClass', $result[0]->relatedEntities[1]);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -32,14 +32,14 @@ class DDC512Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$result = $q->getResult();
|
||||
|
||||
$this->assertEquals(2, count($result));
|
||||
$this->assertTrue($result[0] instanceof DDC512Customer);
|
||||
$this->assertTrue($result[1] instanceof DDC512Customer);
|
||||
$this->assertInstanceOf(__NAMESPACE__ . '\DDC512Customer', $result[0]);
|
||||
$this->assertInstanceOf(__NAMESPACE__ . '\DDC512Customer', $result[1]);
|
||||
if ($result[0]->id == $customer1->id) {
|
||||
$this->assertTrue($result[0]->item instanceof DDC512OfferItem);
|
||||
$this->assertInstanceOf(__NAMESPACE__ . '\DDC512OfferItem', $result[0]->item);
|
||||
$this->assertEquals($item->id, $result[0]->item->id);
|
||||
$this->assertNull($result[1]->item);
|
||||
} else {
|
||||
$this->assertTrue($result[1]->item instanceof DDC512OfferItem);
|
||||
$this->assertInstanceOf(__NAMESPACE__ . '\DDC512OfferItem', $result[1]->item);
|
||||
$this->assertNull($result[0]->item);
|
||||
}
|
||||
}
|
||||
|
@ -48,9 +48,9 @@ class DDC522Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$r = $this->_em->createQuery("select ca,c from ".get_class($cart)." ca join ca.customer c")
|
||||
->getResult();
|
||||
|
||||
$this->assertTrue($r[0] instanceof DDC522Cart);
|
||||
$this->assertTrue($r[0]->customer instanceof DDC522Customer);
|
||||
$this->assertFalse($r[0]->customer instanceof \Doctrine\ORM\Proxy\Proxy);
|
||||
$this->assertInstanceOf(__NAMESPACE__ . '\DDC522Cart', $r[0]);
|
||||
$this->assertInstanceOf(__NAMESPACE__ . '\DDC522Customer', $r[0]->customer);
|
||||
$this->assertNotInstanceOf('Doctrine\ORM\Proxy\Proxy', $r[0]->customer);
|
||||
$this->assertEquals('name', $r[0]->customer->name);
|
||||
|
||||
$fkt = new DDC522ForeignKeyTest();
|
||||
@ -62,7 +62,7 @@ class DDC522Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
|
||||
$fkt2 = $this->_em->find(get_class($fkt), $fkt->id);
|
||||
$this->assertEquals($fkt->cart->id, $fkt2->cartId);
|
||||
$this->assertTrue($fkt2->cart instanceof \Doctrine\ORM\Proxy\Proxy);
|
||||
$this->assertInstanceOf('Doctrine\ORM\Proxy\Proxy', $fkt2->cart);
|
||||
$this->assertFalse($fkt2->cart->__isInitialized__);
|
||||
}
|
||||
|
||||
|
@ -29,8 +29,8 @@ class DDC531Test extends \Doctrine\Tests\OrmFunctionalTestCase
|
||||
$item3 = $this->_em->find(__NAMESPACE__ . '\DDC531Item', $item2->id); // Load child item first (id 2)
|
||||
// parent will already be loaded, cannot be lazy because it has mapped subclasses and we would not
|
||||
// know which proxy type to put in.
|
||||
$this->assertTrue($item3->parent instanceof DDC531Item);
|
||||
$this->assertFalse($item3->parent instanceof \Doctrine\ORM\Proxy\Proxy);
|
||||
$this->assertInstanceOf(__NAMESPACE__ . '\DDC531Item', $item3->parent);
|
||||
$this->assertNotInstanceOf('Doctrine\ORM\Proxy\Proxy', $item3->parent);
|
||||
$item4 = $this->_em->find(__NAMESPACE__ . '\DDC531Item', $item1->id); // Load parent item (id 1)
|
||||
$this->assertNull($item4->parent);
|
||||
$this->assertNotNull($item4->getChildren());
|
||||
|
@ -85,11 +85,11 @@ class AdvancedAssociationTest extends \Doctrine\Tests\OrmFunctionalTestCase {
|
||||
$lemma = $res[0];
|
||||
|
||||
$this->assertEquals('foo', $lemma->getLemma());
|
||||
$this->assertTrue($lemma instanceof Lemma);
|
||||
$this->assertInstanceOf('Doctrine\Tests\ORM\Functional\Ticket\Lemma', $lemma);
|
||||
$relations = $lemma->getRelations();
|
||||
|
||||
foreach($relations as $relation) {
|
||||
$this->assertTrue($relation instanceof Relation);
|
||||
$this->assertInstanceOf('Doctrine\Tests\ORM\Functional\Ticket\Relation', $relation);
|
||||
$this->assertTrue($relation->getType()->getType() != '');
|
||||
}
|
||||
|
||||
|
@ -15,7 +15,7 @@ class CustomHydratorTest extends HydrationTestCase
|
||||
$config->addCustomHydrationMode('CustomHydrator', 'Doctrine\Tests\ORM\Hydration\CustomHydrator');
|
||||
|
||||
$hydrator = $em->newHydrator('CustomHydrator');
|
||||
$this->assertTrue($hydrator instanceof \Doctrine\Tests\ORM\Hydration\CustomHydrator);
|
||||
$this->assertInstanceOf('Doctrine\Tests\ORM\Hydration\CustomHydrator', $hydrator);
|
||||
$this->assertNull($config->getCustomHydrationMode('does not exist'));
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user