X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FImportBundle%2FTests%2FImport%2FWallabagV1ImportTest.php;h=8c967e1ba06b297acfa32ef216a5d3cc8482ff4e;hb=41c9eecfa728df7d8734ca1b0a69c55c93aafcea;hp=496cf2d37dc23d44235297686eaf7cce8e70ab5c;hpb=439b36323e37f669b056cc5228c44bb91196256c;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/ImportBundle/Tests/Import/WallabagV1ImportTest.php b/src/Wallabag/ImportBundle/Tests/Import/WallabagV1ImportTest.php index 496cf2d3..8c967e1b 100644 --- a/src/Wallabag/ImportBundle/Tests/Import/WallabagV1ImportTest.php +++ b/src/Wallabag/ImportBundle/Tests/Import/WallabagV1ImportTest.php @@ -2,8 +2,9 @@ namespace Wallabag\ImportBundle\Tests\Import; -use Wallabag\UserBundle\Entity\User; use Wallabag\ImportBundle\Import\WallabagV1Import; +use Wallabag\UserBundle\Entity\User; +use Wallabag\CoreBundle\Entity\Entry; use Monolog\Logger; use Monolog\Handler\TestHandler; @@ -29,7 +30,7 @@ class WallabagV1ImportTest extends \PHPUnit_Framework_TestCase $wallabag = new WallabagV1Import($this->em, $this->contentProxy); $this->logHandler = new TestHandler(); - $logger = new Logger('test', array($this->logHandler)); + $logger = new Logger('test', [$this->logHandler]); $wallabag->setLogger($logger); if (false === $unsetUser) { @@ -71,7 +72,7 @@ class WallabagV1ImportTest extends \PHPUnit_Framework_TestCase ->getMock(); $this->contentProxy - ->expects($this->once()) + ->expects($this->exactly(3)) ->method('updateEntry') ->willReturn($entry); @@ -99,6 +100,11 @@ class WallabagV1ImportTest extends \PHPUnit_Framework_TestCase ->method('getRepository') ->willReturn($entryRepo); + $this->contentProxy + ->expects($this->exactly(3)) + ->method('updateEntry') + ->willReturn(new Entry($this->user)); + // check that every entry persisted are archived $this->em ->expects($this->any())