Created
November 1, 2011 20:22
-
-
Save wowo/1331789 to your computer and use it in GitHub Desktop.
PHPUnit's way to mock Doctrine2 Entity Manager
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
<?php | |
class AbstractManagerBase extends \PHPUnit_Framework_TestCase | |
{ | |
protected function getEmMock() | |
{ | |
$emMock = $this->getMock('\Doctrine\ORM\EntityManager', | |
array('getRepository', 'getClassMetadata', 'persist', 'flush'), array(), '', false); | |
$emMock->expects($this->any()) | |
->method('getRepository') | |
->will($this->returnValue(new FakeRepository())); | |
$emMock->expects($this->any()) | |
->method('getClassMetadata') | |
->will($this->returnValue((object)array('name' => 'aClass'))); | |
$emMock->expects($this->any()) | |
->method('persist') | |
->will($this->returnValue(null)); | |
$emMock->expects($this->any()) | |
->method('flush') | |
->will($this->returnValue(null)); | |
return $emMock; // it tooks 13 lines to achieve mock! | |
} | |
} |
You could also work with
use Doctrine\ODM\MongoDB\Tests\Mocks\DocumentManagerMock; use Doctrine\ODM\MongoDB\Tests\Mocks\ConnectionMock; public function setUp() { parent::setUp(); $this->dm = DocumentManagerMock::create(new ConnectionMock()); $this->uow = $this->dm->getUnitOfWork(); }
Hey @monbro, do these mocks exist for ORM?
You could also work with
use Doctrine\ODM\MongoDB\Tests\Mocks\DocumentManagerMock; use Doctrine\ODM\MongoDB\Tests\Mocks\ConnectionMock; public function setUp() { parent::setUp(); $this->dm = DocumentManagerMock::create(new ConnectionMock()); $this->uow = $this->dm->getUnitOfWork(); }
Hey @monbro, do these mocks exist for ORM?
no Idea my friend, it has been 5 years this snippet...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Another trick for mocking:
use Prophecy\Argument;
use Prophecy\Prophecy\ProphecyInterface;