1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional;
use Doctrine\ORM\PersistentCollection;
use Doctrine\Tests\Models\ECommerce\ECommerceCart;
use Doctrine\Tests\Models\ECommerce\ECommerceCustomer;
use Doctrine\Tests\Models\ECommerce\ECommerceFeature;
use Doctrine\Tests\Models\ECommerce\ECommerceProduct;
use Doctrine\Tests\OrmFunctionalTestCase;
/**
* Tests capabilities of the persister.
*/
class StandardEntityPersisterTest extends OrmFunctionalTestCase
{
protected function setUp(): void
{
$this->useModelSet('ecommerce');
parent::setUp();
}
public function testAcceptsForeignKeysAsCriteria(): void
{
$customer = new ECommerceCustomer();
$customer->setName('John Doe');
$cart = new ECommerceCart();
$cart->setPayment('Credit card');
$customer->setCart($cart);
$this->_em->persist($customer);
$this->_em->flush();
$this->_em->clear();
$cardId = $cart->getId();
unset($cart);
$class = $this->_em->getClassMetadata(ECommerceCart::class);
$persister = $this->_em->getUnitOfWork()->getEntityPersister(ECommerceCart::class);
$newCart = new ECommerceCart();
$this->_em->getUnitOfWork()->registerManaged($newCart, ['id' => $cardId], []);
$persister->load(['customer_id' => $customer->getId()], $newCart, $class->associationMappings['customer']);
self::assertEquals('Credit card', $newCart->getPayment());
}
/**
* Ticket #2478 from Damon Jones (dljones)
*/
public function testAddPersistRetrieve(): void
{
$f1 = new ECommerceFeature();
$f1->setDescription('AC-3');
$f2 = new ECommerceFeature();
$f2->setDescription('DTS');
$p = new ECommerceProduct();
$p->addFeature($f1);
$p->addFeature($f2);
$this->_em->persist($p);
$this->_em->flush();
self::assertCount(2, $p->getFeatures());
self::assertInstanceOf(PersistentCollection::class, $p->getFeatures());
$q = $this->_em->createQuery(
'SELECT p, f
FROM Doctrine\Tests\Models\ECommerce\ECommerceProduct p
JOIN p.features f',
);
$res = $q->getResult();
self::assertCount(2, $p->getFeatures());
self::assertInstanceOf(PersistentCollection::class, $p->getFeatures());
// Check that the features are the same instances still
foreach ($p->getFeatures() as $feature) {
if ($feature->getDescription() === 'AC-3') {
self::assertSame($feature, $f1);
} else {
self::assertSame($feature, $f2);
}
}
// Now we test how Hydrator affects IdentityMap
// (change from ArrayCollection to PersistentCollection)
$f3 = new ECommerceFeature();
$f3->setDescription('XVID');
$p->addFeature($f3);
// Now we persist the Feature #3
$this->_em->persist($p);
$this->_em->flush();
$q = $this->_em->createQuery(
'SELECT p, f
FROM Doctrine\Tests\Models\ECommerce\ECommerceProduct p
JOIN p.features f',
);
$res = $q->getResult();
// Persisted Product now must have 3 Feature items
self::assertCount(3, $res[0]->getFeatures());
}
}
|