forked from doctrine/mongodb-odm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request doctrine#2521 from notrix/fix-proxy-state-on-init-…
…exception Restore document proxy state to uninitialized on load exception
- Loading branch information
Showing
2 changed files
with
110 additions
and
1 deletion.
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
100 changes: 100 additions & 0 deletions
100
tests/Doctrine/ODM/MongoDB/Tests/Proxy/Factory/StaticProxyFactoryTest.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,100 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\ODM\MongoDB\Tests\Proxy\Factory; | ||
|
||
use Closure; | ||
use Doctrine\ODM\MongoDB\DocumentManager; | ||
use Doctrine\ODM\MongoDB\Event\DocumentNotFoundEventArgs; | ||
use Doctrine\ODM\MongoDB\Events; | ||
use Doctrine\ODM\MongoDB\LockException; | ||
use Doctrine\ODM\MongoDB\Tests\BaseTestCase; | ||
use Documents\Cart; | ||
use MongoDB\Client; | ||
use MongoDB\Collection; | ||
use MongoDB\Database; | ||
use PHPUnit\Framework\MockObject\MockObject; | ||
use ProxyManager\Proxy\GhostObjectInterface; | ||
|
||
class StaticProxyFactoryTest extends BaseTestCase | ||
{ | ||
/** @var Client|MockObject */ | ||
private Client $client; | ||
|
||
public function setUp(): void | ||
{ | ||
parent::setUp(); | ||
|
||
$this->dm = $this->createMockedDocumentManager(); | ||
} | ||
|
||
public function testProxyInitializeWithException(): void | ||
{ | ||
$collection = $this->createMock(Collection::class); | ||
$database = $this->createMock(Database::class); | ||
|
||
$this->client->expects($this->once()) | ||
->method('selectDatabase') | ||
->willReturn($database); | ||
|
||
$database->expects($this->once()) | ||
->method('selectCollection') | ||
->willReturn($collection); | ||
|
||
$collection->expects($this->once()) | ||
->method('findOne') | ||
->willThrowException(LockException::lockFailed(null)); | ||
|
||
$uow = $this->dm->getUnitOfWork(); | ||
|
||
$proxy = $this->dm->getReference(Cart::class, '123'); | ||
self::assertInstanceOf(GhostObjectInterface::class, $proxy); | ||
|
||
$closure = static function (DocumentNotFoundEventArgs $eventArgs) { | ||
self::fail('DocumentNotFoundListener should not be called'); | ||
}; | ||
$this->dm->getEventManager()->addEventListener(Events::documentNotFound, new DocumentNotFoundListener($closure)); | ||
|
||
try { | ||
$proxy->initializeProxy(); | ||
self::fail('An exception should have been thrown'); | ||
} catch (LockException $exception) { | ||
self::assertInstanceOf(LockException::class, $exception); | ||
} | ||
|
||
$uow->computeChangeSets(); | ||
|
||
self::assertFalse($proxy->isProxyInitialized(), 'Proxy should not be initialized'); | ||
} | ||
|
||
public function tearDown(): void | ||
{ | ||
// db connection is mocked, nothing to clean up | ||
} | ||
|
||
private function createMockedDocumentManager(): DocumentManager | ||
{ | ||
$config = $this->getConfiguration(); | ||
|
||
$this->client = $this->createMock(Client::class); | ||
|
||
return DocumentManager::create($this->client, $config); | ||
} | ||
} | ||
|
||
class DocumentNotFoundListener | ||
{ | ||
private Closure $closure; | ||
|
||
public function __construct(Closure $closure) | ||
{ | ||
$this->closure = $closure; | ||
} | ||
|
||
public function documentNotFound(DocumentNotFoundEventArgs $eventArgs): void | ||
{ | ||
$closure = $this->closure; | ||
$closure($eventArgs); | ||
} | ||
} |