mirror of
https://github.com/wallabag/wallabag.git
synced 2025-08-01 17:38:38 +00:00
Add reload entry command
This commit is contained in:
parent
4d2758dfa0
commit
511f1ce1e8
3 changed files with 222 additions and 0 deletions
115
tests/Wallabag/CoreBundle/Command/ReloadEntryCommandTest.php
Normal file
115
tests/Wallabag/CoreBundle/Command/ReloadEntryCommandTest.php
Normal file
|
@ -0,0 +1,115 @@
|
|||
<?php
|
||||
|
||||
namespace Tests\Wallabag\CoreBundle\Command;
|
||||
|
||||
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
||||
use Symfony\Component\Console\Tester\CommandTester;
|
||||
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
||||
use Wallabag\CoreBundle\Command\ReloadEntryCommand;
|
||||
use Wallabag\CoreBundle\Entity\Entry;
|
||||
|
||||
class ReloadEntryCommandTest extends WallabagCoreTestCase
|
||||
{
|
||||
public $url = 'http://www.lemonde.fr/pixels/article/2015/03/28/plongee-dans-l-univers-d-ingress-le-jeu-de-google-aux-frontieres-du-reel_4601155_4408996.html';
|
||||
|
||||
/**
|
||||
* @var entry
|
||||
*/
|
||||
public $adminEntry;
|
||||
|
||||
/**
|
||||
* @var Entry
|
||||
*/
|
||||
public $bobEntry;
|
||||
|
||||
public function setUp()
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
$userRepository = $this->getClient()->getContainer()->get('wallabag_user.user_repository');
|
||||
|
||||
$user = $userRepository->findOneByUserName('admin');
|
||||
$this->adminEntry = new Entry($user);
|
||||
$this->adminEntry->setUrl($this->url);
|
||||
$this->adminEntry->setTitle('title foo');
|
||||
$this->adminEntry->setContent('');
|
||||
$this->getEntityManager()->persist($this->adminEntry);
|
||||
|
||||
$user = $userRepository->findOneByUserName('bob');
|
||||
$this->bobEntry = new Entry($user);
|
||||
$this->bobEntry->setUrl($this->url);
|
||||
$this->bobEntry->setTitle('title foo');
|
||||
$this->bobEntry->setContent('');
|
||||
$this->getEntityManager()->persist($this->bobEntry);
|
||||
|
||||
$this->getEntityManager()->flush();
|
||||
}
|
||||
|
||||
public function testRunReloadEntryCommand()
|
||||
{
|
||||
$application = new Application($this->getClient()->getKernel());
|
||||
$application->add(new ReloadEntryCommand());
|
||||
|
||||
$command = $application->find('wallabag:entry:reload');
|
||||
$tester = new CommandTester($command);
|
||||
$tester->execute([
|
||||
'command' => $command->getName(),
|
||||
], [
|
||||
'interactive' => false,
|
||||
]);
|
||||
|
||||
$reloadedEntries = $this->getClient()
|
||||
->getContainer()
|
||||
->get('wallabag_core.entry_repository')
|
||||
->findById([$this->adminEntry->getId(), $this->bobEntry->getId()]);
|
||||
|
||||
foreach ($reloadedEntries as $reloadedEntry) {
|
||||
$this->assertNotEmpty($reloadedEntry->getContent());
|
||||
}
|
||||
|
||||
$this->assertContains('Done', $tester->getDisplay());
|
||||
}
|
||||
|
||||
public function testRunReloadEntryWithUsernameCommand()
|
||||
{
|
||||
$application = new Application($this->getClient()->getKernel());
|
||||
$application->add(new ReloadEntryCommand());
|
||||
|
||||
$command = $application->find('wallabag:entry:reload');
|
||||
$tester = new CommandTester($command);
|
||||
$tester->execute([
|
||||
'command' => $command->getName(),
|
||||
'username' => 'admin',
|
||||
], [
|
||||
'interactive' => false,
|
||||
]);
|
||||
|
||||
$entryRepository = $this->getClient()->getContainer()->get('wallabag_core.entry_repository');
|
||||
|
||||
$reloadedAdminEntry = $entryRepository->find($this->adminEntry->getId());
|
||||
$this->assertNotEmpty($reloadedAdminEntry->getContent());
|
||||
|
||||
$reloadedBobEntry = $entryRepository->find($this->bobEntry->getId());
|
||||
$this->assertEmpty($reloadedBobEntry->getContent());
|
||||
|
||||
$this->assertContains('Done', $tester->getDisplay());
|
||||
}
|
||||
|
||||
public function testRunReloadEntryWithoutEntryCommand()
|
||||
{
|
||||
$application = new Application($this->getClient()->getKernel());
|
||||
$application->add(new ReloadEntryCommand());
|
||||
|
||||
$command = $application->find('wallabag:entry:reload');
|
||||
$tester = new CommandTester($command);
|
||||
$tester->execute([
|
||||
'command' => $command->getName(),
|
||||
'username' => 'empty',
|
||||
], [
|
||||
'interactive' => false,
|
||||
]);
|
||||
|
||||
$this->assertContains('No entry to reload', $tester->getDisplay());
|
||||
$this->assertNotContains('Done', $tester->getDisplay());
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue