2016-09-01 07:57:02 +00:00
|
|
|
<?php
|
|
|
|
|
2024-02-19 00:30:12 +00:00
|
|
|
namespace Tests\Wallabag\Import;
|
2016-09-01 07:57:02 +00:00
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
use Doctrine\ORM\EntityManager;
|
2017-07-01 07:52:38 +00:00
|
|
|
use M6Web\Component\RedisMock\RedisMockFactory;
|
2016-09-01 07:57:02 +00:00
|
|
|
use Monolog\Handler\TestHandler;
|
2017-07-01 07:52:38 +00:00
|
|
|
use Monolog\Logger;
|
2017-12-16 21:17:42 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2022-09-01 18:54:56 +00:00
|
|
|
use Predis\Client;
|
2016-09-09 19:02:03 +00:00
|
|
|
use Simpleue\Queue\RedisQueue;
|
2022-09-01 18:54:56 +00:00
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcher;
|
2024-02-19 00:30:12 +00:00
|
|
|
use Wallabag\Entity\Entry;
|
|
|
|
use Wallabag\Entity\User;
|
|
|
|
use Wallabag\Helper\ContentProxy;
|
|
|
|
use Wallabag\Helper\TagsAssigner;
|
|
|
|
use Wallabag\Import\ReadabilityImport;
|
|
|
|
use Wallabag\Redis\Producer;
|
|
|
|
use Wallabag\Repository\EntryRepository;
|
2016-09-01 07:57:02 +00:00
|
|
|
|
2017-12-16 21:17:42 +00:00
|
|
|
class ReadabilityImportTest extends TestCase
|
2016-09-01 07:57:02 +00:00
|
|
|
{
|
|
|
|
protected $user;
|
|
|
|
protected $em;
|
|
|
|
protected $logHandler;
|
|
|
|
protected $contentProxy;
|
2017-05-27 20:08:14 +00:00
|
|
|
protected $tagsAssigner;
|
2016-09-01 07:57:02 +00:00
|
|
|
|
|
|
|
public function testInit()
|
|
|
|
{
|
|
|
|
$readabilityImport = $this->getReadabilityImport();
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame('Readability', $readabilityImport->getName());
|
2016-09-01 07:57:02 +00:00
|
|
|
$this->assertNotEmpty($readabilityImport->getUrl());
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame('import.readability.description', $readabilityImport->getDescription());
|
2016-09-01 07:57:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testImport()
|
|
|
|
{
|
2017-05-16 19:17:10 +00:00
|
|
|
$readabilityImport = $this->getReadabilityImport(false, 3);
|
2023-12-31 17:21:09 +00:00
|
|
|
$readabilityImport->setFilepath(__DIR__ . '/../fixtures/Import/readability.json');
|
2016-09-01 07:57:02 +00:00
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
$entryRepo = $this->getMockBuilder(EntryRepository::class)
|
2016-09-01 07:57:02 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
2017-05-16 19:17:10 +00:00
|
|
|
$entryRepo->expects($this->exactly(3))
|
2016-09-01 07:57:02 +00:00
|
|
|
->method('findByUrlAndUserId')
|
2016-09-11 16:19:41 +00:00
|
|
|
->willReturn(false);
|
2016-09-01 07:57:02 +00:00
|
|
|
|
|
|
|
$this->em
|
|
|
|
->expects($this->any())
|
|
|
|
->method('getRepository')
|
|
|
|
->willReturn($entryRepo);
|
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
$entry = $this->getMockBuilder(Entry::class)
|
2016-09-01 07:57:02 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$this->contentProxy
|
2017-05-16 19:17:10 +00:00
|
|
|
->expects($this->exactly(3))
|
2016-09-01 07:57:02 +00:00
|
|
|
->method('updateEntry')
|
|
|
|
->willReturn($entry);
|
|
|
|
|
|
|
|
$res = $readabilityImport->import();
|
|
|
|
|
|
|
|
$this->assertTrue($res);
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(['skipped' => 0, 'imported' => 3, 'queued' => 0], $readabilityImport->getSummary());
|
2016-09-01 07:57:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testImportAndMarkAllAsRead()
|
|
|
|
{
|
2016-11-02 06:10:23 +00:00
|
|
|
$readabilityImport = $this->getReadabilityImport(false, 1);
|
2023-12-31 17:21:09 +00:00
|
|
|
$readabilityImport->setFilepath(__DIR__ . '/../fixtures/Import/readability-read.json');
|
2016-09-01 07:57:02 +00:00
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
$entryRepo = $this->getMockBuilder(EntryRepository::class)
|
2016-09-01 07:57:02 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$entryRepo->expects($this->exactly(2))
|
|
|
|
->method('findByUrlAndUserId')
|
2016-09-11 16:19:41 +00:00
|
|
|
->will($this->onConsecutiveCalls(false, true));
|
2016-09-01 07:57:02 +00:00
|
|
|
|
|
|
|
$this->em
|
|
|
|
->expects($this->any())
|
|
|
|
->method('getRepository')
|
|
|
|
->willReturn($entryRepo);
|
|
|
|
|
|
|
|
$this->contentProxy
|
2016-09-11 16:19:41 +00:00
|
|
|
->expects($this->exactly(1))
|
2016-09-01 07:57:02 +00:00
|
|
|
->method('updateEntry')
|
|
|
|
->willReturn(new Entry($this->user));
|
|
|
|
|
|
|
|
// check that every entry persisted are archived
|
|
|
|
$this->em
|
|
|
|
->expects($this->any())
|
|
|
|
->method('persist')
|
|
|
|
->with($this->callback(function ($persistedEntry) {
|
2020-06-15 11:37:50 +00:00
|
|
|
return (bool) $persistedEntry->isArchived();
|
2016-09-01 07:57:02 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
$res = $readabilityImport->setMarkAsRead(true)->import();
|
|
|
|
|
|
|
|
$this->assertTrue($res);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(['skipped' => 1, 'imported' => 1, 'queued' => 0], $readabilityImport->getSummary());
|
2016-09-09 16:02:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testImportWithRabbit()
|
|
|
|
{
|
|
|
|
$readabilityImport = $this->getReadabilityImport();
|
2023-12-31 17:21:09 +00:00
|
|
|
$readabilityImport->setFilepath(__DIR__ . '/../fixtures/Import/readability.json');
|
2016-09-09 16:02:29 +00:00
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
$entryRepo = $this->getMockBuilder(EntryRepository::class)
|
2016-09-09 16:02:29 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$entryRepo->expects($this->never())
|
|
|
|
->method('findByUrlAndUserId');
|
|
|
|
|
|
|
|
$this->em
|
|
|
|
->expects($this->never())
|
|
|
|
->method('getRepository');
|
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
$entry = $this->getMockBuilder(Entry::class)
|
2016-09-09 16:02:29 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$this->contentProxy
|
|
|
|
->expects($this->never())
|
|
|
|
->method('updateEntry');
|
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
$producer = $this->getMockBuilder(\OldSound\RabbitMqBundle\RabbitMq\Producer::class)
|
2016-09-09 16:02:29 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$producer
|
2017-05-16 19:17:10 +00:00
|
|
|
->expects($this->exactly(3))
|
2016-09-09 16:02:29 +00:00
|
|
|
->method('publish');
|
|
|
|
|
2016-09-09 19:02:03 +00:00
|
|
|
$readabilityImport->setProducer($producer);
|
2016-09-09 16:02:29 +00:00
|
|
|
|
|
|
|
$res = $readabilityImport->setMarkAsRead(true)->import();
|
|
|
|
|
|
|
|
$this->assertTrue($res);
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(['skipped' => 0, 'imported' => 0, 'queued' => 3], $readabilityImport->getSummary());
|
2016-09-01 07:57:02 +00:00
|
|
|
}
|
|
|
|
|
2016-09-09 19:02:03 +00:00
|
|
|
public function testImportWithRedis()
|
|
|
|
{
|
|
|
|
$readabilityImport = $this->getReadabilityImport();
|
2023-12-31 17:21:09 +00:00
|
|
|
$readabilityImport->setFilepath(__DIR__ . '/../fixtures/Import/readability.json');
|
2016-09-09 19:02:03 +00:00
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
$entryRepo = $this->getMockBuilder(EntryRepository::class)
|
2016-09-09 19:02:03 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$entryRepo->expects($this->never())
|
|
|
|
->method('findByUrlAndUserId');
|
|
|
|
|
|
|
|
$this->em
|
|
|
|
->expects($this->never())
|
|
|
|
->method('getRepository');
|
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
$entry = $this->getMockBuilder(Entry::class)
|
2016-09-09 19:02:03 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$this->contentProxy
|
|
|
|
->expects($this->never())
|
|
|
|
->method('updateEntry');
|
|
|
|
|
|
|
|
$factory = new RedisMockFactory();
|
2022-09-01 18:54:56 +00:00
|
|
|
$redisMock = $factory->getAdapter(Client::class, true);
|
2016-09-09 19:02:03 +00:00
|
|
|
|
|
|
|
$queue = new RedisQueue($redisMock, 'readability');
|
|
|
|
$producer = new Producer($queue);
|
|
|
|
|
|
|
|
$readabilityImport->setProducer($producer);
|
|
|
|
|
|
|
|
$res = $readabilityImport->setMarkAsRead(true)->import();
|
|
|
|
|
|
|
|
$this->assertTrue($res);
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(['skipped' => 0, 'imported' => 0, 'queued' => 3], $readabilityImport->getSummary());
|
2016-09-09 19:02:03 +00:00
|
|
|
|
|
|
|
$this->assertNotEmpty($redisMock->lpop('readability'));
|
|
|
|
}
|
|
|
|
|
2016-09-01 07:57:02 +00:00
|
|
|
public function testImportBadFile()
|
|
|
|
{
|
|
|
|
$readabilityImport = $this->getReadabilityImport();
|
2023-12-31 17:21:09 +00:00
|
|
|
$readabilityImport->setFilepath(__DIR__ . '/../fixtures/Import/wallabag-v1.jsonx');
|
2016-09-01 07:57:02 +00:00
|
|
|
|
|
|
|
$res = $readabilityImport->import();
|
|
|
|
|
|
|
|
$this->assertFalse($res);
|
|
|
|
|
|
|
|
$records = $this->logHandler->getRecords();
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringContainsString('ReadabilityImport: unable to read file', $records[0]['message']);
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame('ERROR', $records[0]['level_name']);
|
2016-09-01 07:57:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testImportUserNotDefined()
|
|
|
|
{
|
|
|
|
$readabilityImport = $this->getReadabilityImport(true);
|
2023-12-31 17:21:09 +00:00
|
|
|
$readabilityImport->setFilepath(__DIR__ . '/../fixtures/Import/readability.json');
|
2016-09-01 07:57:02 +00:00
|
|
|
|
|
|
|
$res = $readabilityImport->import();
|
|
|
|
|
|
|
|
$this->assertFalse($res);
|
|
|
|
|
|
|
|
$records = $this->logHandler->getRecords();
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringContainsString('ReadabilityImport: user is not defined', $records[0]['message']);
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame('ERROR', $records[0]['level_name']);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getReadabilityImport($unsetUser = false, $dispatched = 0)
|
|
|
|
{
|
|
|
|
$this->user = new User();
|
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
$this->em = $this->getMockBuilder(EntityManager::class)
|
2017-07-01 07:52:38 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
$this->contentProxy = $this->getMockBuilder(ContentProxy::class)
|
2017-07-01 07:52:38 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
$this->tagsAssigner = $this->getMockBuilder(TagsAssigner::class)
|
2017-07-01 07:52:38 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
$dispatcher = $this->getMockBuilder(EventDispatcher::class)
|
2017-07-01 07:52:38 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$dispatcher
|
|
|
|
->expects($this->exactly($dispatched))
|
|
|
|
->method('dispatch');
|
|
|
|
|
|
|
|
$this->logHandler = new TestHandler();
|
|
|
|
$logger = new Logger('test', [$this->logHandler]);
|
2022-08-27 18:57:18 +00:00
|
|
|
|
|
|
|
$wallabag = new ReadabilityImport($this->em, $this->contentProxy, $this->tagsAssigner, $dispatcher, $logger);
|
2017-07-01 07:52:38 +00:00
|
|
|
|
|
|
|
if (false === $unsetUser) {
|
|
|
|
$wallabag->setUser($this->user);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $wallabag;
|
2016-09-01 07:57:02 +00:00
|
|
|
}
|
|
|
|
}
|