mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-14 13:01:09 +00:00
aa5c7f05b8
- disable autowiring for Event (because the Entry entity was injected) - rename `getClient()` for test to `getTestClient()` to avoid error while overriding (from `BrowserKitAssertionsTrait`)
158 lines
5.6 KiB
PHP
158 lines
5.6 KiB
PHP
<?php
|
|
|
|
namespace Tests\Wallabag\ImportBundle\Controller;
|
|
|
|
use Craue\ConfigBundle\Util\Config;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Predis\Client;
|
|
use Symfony\Component\HttpFoundation\File\UploadedFile;
|
|
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
|
use Wallabag\CoreBundle\Entity\Entry;
|
|
|
|
class ChromeControllerTest extends WallabagCoreTestCase
|
|
{
|
|
public function testImportChrome()
|
|
{
|
|
$this->logInAs('admin');
|
|
$client = $this->getTestClient();
|
|
|
|
$crawler = $client->request('GET', '/import/chrome');
|
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
|
$this->assertSame(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count());
|
|
$this->assertSame(1, $crawler->filter('input[type=file]')->count());
|
|
}
|
|
|
|
public function testImportChromeWithRabbitEnabled()
|
|
{
|
|
$this->logInAs('admin');
|
|
$client = $this->getTestClient();
|
|
|
|
$client->getContainer()->get(Config::class)->set('import_with_rabbitmq', 1);
|
|
|
|
$crawler = $client->request('GET', '/import/chrome');
|
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
|
$this->assertSame(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count());
|
|
$this->assertSame(1, $crawler->filter('input[type=file]')->count());
|
|
|
|
$client->getContainer()->get(Config::class)->set('import_with_rabbitmq', 0);
|
|
}
|
|
|
|
public function testImportChromeBadFile()
|
|
{
|
|
$this->logInAs('admin');
|
|
$client = $this->getTestClient();
|
|
|
|
$crawler = $client->request('GET', '/import/chrome');
|
|
$form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
|
|
|
|
$data = [
|
|
'upload_import_file[file]' => '',
|
|
];
|
|
|
|
$client->submit($form, $data);
|
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
|
}
|
|
|
|
public function testImportChromeWithRedisEnabled()
|
|
{
|
|
$this->checkRedis();
|
|
$this->logInAs('admin');
|
|
$client = $this->getTestClient();
|
|
$client->getContainer()->get(Config::class)->set('import_with_redis', 1);
|
|
|
|
$crawler = $client->request('GET', '/import/chrome');
|
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
|
$this->assertSame(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count());
|
|
$this->assertSame(1, $crawler->filter('input[type=file]')->count());
|
|
|
|
$form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
|
|
|
|
$file = new UploadedFile(__DIR__ . '/../fixtures/chrome-bookmarks', 'Bookmarks');
|
|
|
|
$data = [
|
|
'upload_import_file[file]' => $file,
|
|
];
|
|
|
|
$client->submit($form, $data);
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
|
$this->assertStringContainsString('flashes.import.notice.summary', $body[0]);
|
|
|
|
$this->assertNotEmpty($client->getContainer()->get(Client::class)->lpop('wallabag.import.chrome'));
|
|
|
|
$client->getContainer()->get(Config::class)->set('import_with_redis', 0);
|
|
}
|
|
|
|
public function testImportWallabagWithChromeFile()
|
|
{
|
|
$this->logInAs('admin');
|
|
$client = $this->getTestClient();
|
|
|
|
$crawler = $client->request('GET', '/import/chrome');
|
|
$form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
|
|
|
|
$file = new UploadedFile(__DIR__ . '/../fixtures/chrome-bookmarks', 'Bookmarks');
|
|
|
|
$data = [
|
|
'upload_import_file[file]' => $file,
|
|
];
|
|
|
|
$client->submit($form, $data);
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
|
$this->assertStringContainsString('flashes.import.notice.summary', $body[0]);
|
|
|
|
$content = $client->getContainer()
|
|
->get(EntityManagerInterface::class)
|
|
->getRepository(Entry::class)
|
|
->findByUrlAndUserId(
|
|
'https://www.20minutes.fr/sport/3256363-20220321-tournoi-vi-nations-trophee-gagne-xv-france-fini-fond-seine',
|
|
$this->getLoggedInUserId()
|
|
);
|
|
|
|
$this->assertInstanceOf(Entry::class, $content);
|
|
$this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for https://www.20minutes.fr is ok');
|
|
$this->assertNotEmpty($content->getLanguage(), 'Language for https://www.20minutes.fr is ok');
|
|
$this->assertCount(1, $content->getTags());
|
|
|
|
$createdAt = $content->getCreatedAt();
|
|
$this->assertSame('2011', $createdAt->format('Y'));
|
|
$this->assertSame('07', $createdAt->format('m'));
|
|
}
|
|
|
|
public function testImportWallabagWithEmptyFile()
|
|
{
|
|
$this->logInAs('admin');
|
|
$client = $this->getTestClient();
|
|
|
|
$crawler = $client->request('GET', '/import/chrome');
|
|
$form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
|
|
|
|
$file = new UploadedFile(__DIR__ . '/../fixtures/test.txt', 'test.txt');
|
|
|
|
$data = [
|
|
'upload_import_file[file]' => $file,
|
|
];
|
|
|
|
$client->submit($form, $data);
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
|
$this->assertStringContainsString('flashes.import.notice.failed', $body[0]);
|
|
}
|
|
}
|