2016-07-12 11:51:05 +00:00
|
|
|
<?php
|
|
|
|
|
2024-02-19 00:30:12 +00:00
|
|
|
namespace Tests\Wallabag\Controller\Import;
|
2016-07-12 11:51:05 +00:00
|
|
|
|
2022-08-28 00:01:46 +00:00
|
|
|
use Craue\ConfigBundle\Util\Config;
|
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
2022-04-24 16:20:46 +00:00
|
|
|
use Predis\Client;
|
2016-07-12 11:51:05 +00:00
|
|
|
use Symfony\Component\HttpFoundation\File\UploadedFile;
|
2024-02-24 19:24:51 +00:00
|
|
|
use Tests\Wallabag\WallabagTestCase;
|
2024-02-19 00:30:12 +00:00
|
|
|
use Wallabag\Entity\Entry;
|
2016-07-12 11:51:05 +00:00
|
|
|
|
2024-02-24 19:24:51 +00:00
|
|
|
class FirefoxControllerTest extends WallabagTestCase
|
2016-07-12 11:51:05 +00:00
|
|
|
{
|
2016-09-21 15:47:47 +00:00
|
|
|
public function testImportFirefox()
|
2016-07-12 11:51:05 +00:00
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2022-11-23 16:09:32 +00:00
|
|
|
$client = $this->getTestClient();
|
2016-07-12 11:51:05 +00:00
|
|
|
|
2016-09-21 15:47:47 +00:00
|
|
|
$crawler = $client->request('GET', '/import/firefox');
|
2016-07-12 11:51:05 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$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());
|
2016-07-12 11:51:05 +00:00
|
|
|
}
|
|
|
|
|
2016-09-21 15:47:47 +00:00
|
|
|
public function testImportFirefoxWithRabbitEnabled()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2022-11-23 16:09:32 +00:00
|
|
|
$client = $this->getTestClient();
|
2016-09-21 15:47:47 +00:00
|
|
|
|
2022-08-28 00:01:46 +00:00
|
|
|
$client->getContainer()->get(Config::class)->set('import_with_rabbitmq', 1);
|
2016-09-21 15:47:47 +00:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/import/firefox');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$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());
|
2016-09-21 15:47:47 +00:00
|
|
|
|
2022-08-28 00:01:46 +00:00
|
|
|
$client->getContainer()->get(Config::class)->set('import_with_rabbitmq', 0);
|
2016-09-21 15:47:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testImportFirefoxBadFile()
|
2016-07-12 11:51:05 +00:00
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2022-11-23 16:09:32 +00:00
|
|
|
$client = $this->getTestClient();
|
2016-07-12 11:51:05 +00:00
|
|
|
|
2016-09-21 15:47:47 +00:00
|
|
|
$crawler = $client->request('GET', '/import/firefox');
|
|
|
|
$form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'upload_import_file[file]' => '',
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-09-21 15:47:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testImportFirefoxWithRedisEnabled()
|
|
|
|
{
|
2016-10-10 14:34:57 +00:00
|
|
|
$this->checkRedis();
|
2016-09-21 15:47:47 +00:00
|
|
|
$this->logInAs('admin');
|
2022-11-23 16:09:32 +00:00
|
|
|
$client = $this->getTestClient();
|
2022-08-28 00:01:46 +00:00
|
|
|
$client->getContainer()->get(Config::class)->set('import_with_redis', 1);
|
2016-09-21 15:47:47 +00:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/import/firefox');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$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());
|
2016-09-21 15:47:47 +00:00
|
|
|
|
2016-07-12 11:51:05 +00:00
|
|
|
$form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
|
|
|
|
|
2023-12-31 11:25:57 +00:00
|
|
|
$file = new UploadedFile(__DIR__ . '/../../fixtures/Import/firefox-bookmarks.json', 'Bookmarks');
|
2016-07-12 11:51:05 +00:00
|
|
|
|
|
|
|
$data = [
|
|
|
|
'upload_import_file[file]' => $file,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-07-12 11:51:05 +00:00
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringContainsString('flashes.import.notice.summary', $body[0]);
|
2016-07-12 11:51:05 +00:00
|
|
|
|
2022-04-24 16:20:46 +00:00
|
|
|
$this->assertNotEmpty($client->getContainer()->get(Client::class)->lpop('wallabag.import.firefox'));
|
2016-07-12 11:51:05 +00:00
|
|
|
|
2022-08-28 00:01:46 +00:00
|
|
|
$client->getContainer()->get(Config::class)->set('import_with_redis', 0);
|
2016-07-12 11:51:05 +00:00
|
|
|
}
|
|
|
|
|
2016-09-21 15:47:47 +00:00
|
|
|
public function testImportWallabagWithFirefoxFile()
|
2016-09-20 14:45:13 +00:00
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2022-11-23 16:09:32 +00:00
|
|
|
$client = $this->getTestClient();
|
2016-09-20 14:45:13 +00:00
|
|
|
|
2016-09-21 15:47:47 +00:00
|
|
|
$crawler = $client->request('GET', '/import/firefox');
|
2016-09-20 14:45:13 +00:00
|
|
|
$form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
|
|
|
|
|
2023-12-31 11:25:57 +00:00
|
|
|
$file = new UploadedFile(__DIR__ . '/../../fixtures/Import/firefox-bookmarks.json', 'Bookmarks');
|
2016-09-20 14:45:13 +00:00
|
|
|
|
|
|
|
$data = [
|
|
|
|
'upload_import_file[file]' => $file,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-09-20 14:45:13 +00:00
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringContainsString('flashes.import.notice.summary', $body[0]);
|
2016-09-20 14:45:13 +00:00
|
|
|
|
|
|
|
$content = $client->getContainer()
|
2022-08-28 00:01:46 +00:00
|
|
|
->get(EntityManagerInterface::class)
|
2022-08-25 19:37:10 +00:00
|
|
|
->getRepository(Entry::class)
|
2016-09-20 14:45:13 +00:00
|
|
|
->findByUrlAndUserId(
|
2022-10-17 19:49:03 +00:00
|
|
|
'https://www.20minutes.fr/sport/4002755-20220928-tarn-lapins-ravagent-terrain-match-rugby-doit-etre-annule',
|
2016-09-20 14:45:13 +00:00
|
|
|
$this->getLoggedInUserId()
|
|
|
|
);
|
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
$this->assertInstanceOf(Entry::class, $content);
|
2023-07-26 10:49:30 +00:00
|
|
|
$this->assertNotEmpty($content->getMimetype(), 'Mimetype for 20minutes.fr is ok');
|
|
|
|
$this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for 20minutes.fr is ok');
|
|
|
|
$this->assertNotEmpty($content->getLanguage(), 'Language for 20minutes.fr is ok');
|
2019-01-17 13:28:05 +00:00
|
|
|
$this->assertCount(3, $content->getTags());
|
2016-09-21 15:47:47 +00:00
|
|
|
|
|
|
|
$content = $client->getContainer()
|
2022-08-28 00:01:46 +00:00
|
|
|
->get(EntityManagerInterface::class)
|
2022-08-25 19:37:10 +00:00
|
|
|
->getRepository(Entry::class)
|
2016-09-21 15:47:47 +00:00
|
|
|
->findByUrlAndUserId(
|
2018-07-05 12:50:27 +00:00
|
|
|
'https://www.lemonde.fr/disparitions/article/2018/07/05/le-journaliste-et-cineaste-claude-lanzmann-est-mort_5326313_3382.html',
|
2016-09-21 15:47:47 +00:00
|
|
|
$this->getLoggedInUserId()
|
|
|
|
);
|
|
|
|
|
2022-09-01 18:54:56 +00:00
|
|
|
$this->assertInstanceOf(Entry::class, $content);
|
2018-07-05 12:50:27 +00:00
|
|
|
$this->assertNotEmpty($content->getMimetype(), 'Mimetype for https://www.lemonde.fr is ok');
|
|
|
|
$this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for https://www.lemonde.fr is ok');
|
|
|
|
$this->assertNotEmpty($content->getLanguage(), 'Language for https://www.lemonde.fr is ok');
|
2016-09-25 13:29:40 +00:00
|
|
|
|
|
|
|
$createdAt = $content->getCreatedAt();
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame('2013', $createdAt->format('Y'));
|
|
|
|
$this->assertSame('12', $createdAt->format('m'));
|
2016-09-20 14:45:13 +00:00
|
|
|
}
|
|
|
|
|
2016-07-12 11:51:05 +00:00
|
|
|
public function testImportWallabagWithEmptyFile()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2022-11-23 16:09:32 +00:00
|
|
|
$client = $this->getTestClient();
|
2016-07-12 11:51:05 +00:00
|
|
|
|
2016-09-21 15:47:47 +00:00
|
|
|
$crawler = $client->request('GET', '/import/firefox');
|
2016-07-12 11:51:05 +00:00
|
|
|
$form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
|
|
|
|
|
2023-12-31 11:25:57 +00:00
|
|
|
$file = new UploadedFile(__DIR__ . '/../../fixtures/Import/test.txt', 'test.txt');
|
2016-07-12 11:51:05 +00:00
|
|
|
|
|
|
|
$data = [
|
|
|
|
'upload_import_file[file]' => $file,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-07-12 11:51:05 +00:00
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringContainsString('flashes.import.notice.failed', $body[0]);
|
2016-07-12 11:51:05 +00:00
|
|
|
}
|
|
|
|
}
|