Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make that test fail, needs mongo config #7

Open
wants to merge 2 commits into
base: test/proxy-real
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions tests/Fixture/Model/GenericModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

namespace Zenstruck\Foundry\Tests\Fixture\Model;

use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;
use Doctrine\ORM\Mapping as ORM;

Expand All @@ -37,9 +39,20 @@ abstract class GenericModel
#[MongoDB\Field(type: 'date_immutable', nullable: true)]
private ?\DateTimeImmutable $date = null;


#[ORM\OneToMany(targetEntity: GenericModelCollectionItem::class, mappedBy: 'genericModel', cascade: ['persist'])]
#[MongoDB\Field()]
private Collection $collection;

/** @var list<string> */
#[ORM\Column()]
#[MongoDB\Field()]
private array $otherCollection = [];

public function __construct(string $prop1)
{
$this->prop1 = $prop1;
$this->collection = new ArrayCollection();
}

public function getProp1(): string
Expand All @@ -61,4 +74,25 @@ public function setDate(?\DateTimeImmutable $date): void
{
$this->date = $date;
}

public function getCollection(): Collection
{
return $this->collection;
}

public function addElementToCollection(GenericModelCollectionItem $element): void
{
$element->setGenericModel($this);
$this->collection->add($element);
}

public function getOtherCollection(): array
{
return $this->otherCollection;
}

public function addElementToOtherCollection(string $element): void
{
$this->otherCollection[] = $element;
}
}
30 changes: 30 additions & 0 deletions tests/Integration/Persistence/GenericProxyFactoryTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
use Zenstruck\Foundry\Tests\Fixture\Model\Embeddable;
use Zenstruck\Foundry\Tests\Fixture\Model\GenericModel;

use Zenstruck\Foundry\Tests\Fixture\Model\GenericModelCollectionItem;
use function Zenstruck\Foundry\factory;

/**
Expand Down Expand Up @@ -282,6 +283,35 @@ public function can_use_after_persist_with_attributes(): void
$this->assertSame($value, $object->getProp1());
}

/**
* @test
*/
public function real_method_always_return_same_instance(): void
{
$object = static::factory()->create();

$this->assertSame($object->_real(), $object->_real());

$ci1 = new GenericModelCollectionItem('foo');
$ci2 = new GenericModelCollectionItem('bar');

$object->_real()->addElementToCollection($ci1);
$object->_real()->addElementToCollection($ci2);

$object->_real()->addElementToOtherCollection('foo2');
$object->_real()->addElementToOtherCollection('bar2');

$object->_save();

$this->assertSame(2, $object->getCollection()->count());
$this->assertSame(2, $object->_real()->getCollection()->count());

$this->assertSame(['foo2', 'bar2'], $object->getOtherCollection());
$this->assertSame(['foo2', 'bar2'], $object->_real()->getOtherCollection());

$this->assertSame($object->_real(), $object->_real());
}

/**
* @test
*/
Expand Down