wallabag/tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php

207 lines
7.6 KiB
PHP
Raw Normal View History

2016-11-04 21:44:31 +00:00
<?php
namespace Tests\Wallabag\ImportBundle\Controller;
use Symfony\Component\HttpFoundation\File\UploadedFile;
2017-07-01 07:52:38 +00:00
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
2016-11-04 21:44:31 +00:00
class PinboardControllerTest extends WallabagCoreTestCase
{
public function testImportPinboard()
{
$this->logInAs('admin');
$client = $this->getClient();
$crawler = $client->request('GET', '/import/pinboard');
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-11-04 21:44:31 +00:00
}
public function testImportPinboardWithRabbitEnabled()
{
$this->logInAs('admin');
$client = $this->getClient();
$client->getContainer()->get('craue_config')->set('import_with_rabbitmq', 1);
$crawler = $client->request('GET', '/import/pinboard');
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-11-04 21:44:31 +00:00
$client->getContainer()->get('craue_config')->set('import_with_rabbitmq', 0);
}
public function testImportPinboardBadFile()
{
$this->logInAs('admin');
$client = $this->getClient();
$crawler = $client->request('GET', '/import/pinboard');
$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-11-04 21:44:31 +00:00
}
public function testImportPinboardWithRedisEnabled()
{
$this->checkRedis();
$this->logInAs('admin');
$client = $this->getClient();
$client->getContainer()->get('craue_config')->set('import_with_redis', 1);
$crawler = $client->request('GET', '/import/pinboard');
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-11-04 21:44:31 +00:00
$form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
2017-07-01 07:52:38 +00:00
$file = new UploadedFile(__DIR__ . '/../fixtures/pinboard_export', 'pinboard.json');
2016-11-04 21:44:31 +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-11-04 21:44:31 +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-11-04 21:44:31 +00:00
$this->assertNotEmpty($client->getContainer()->get('wallabag_core.redis.client')->lpop('wallabag.import.pinboard'));
$client->getContainer()->get('craue_config')->set('import_with_redis', 0);
}
public function testImportPinboardWithFile()
{
$this->logInAs('admin');
$client = $this->getClient();
$crawler = $client->request('GET', '/import/pinboard');
$form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
2017-07-01 07:52:38 +00:00
$file = new UploadedFile(__DIR__ . '/../fixtures/pinboard_export', 'pinboard.json');
2016-11-04 21:44:31 +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-11-04 21:44:31 +00:00
$crawler = $client->followRedirect();
$content = $client->getContainer()
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findByUrlAndUserId(
'https://ma.ttias.be/varnish-explained/',
$this->getLoggedInUserId()
);
$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-11-04 21:44:31 +00:00
$this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
$this->assertNotEmpty($content->getMimetype(), 'Mimetype for https://ma.ttias.be is ok');
$this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for https://ma.ttias.be is ok');
2020-05-25 03:50:11 +00:00
$this->assertNotEmpty($content->getLanguage(), 'Language for https://ma.ttias.be is ok');
2017-05-31 08:38:15 +00:00
$tags = $content->getTagsLabel();
2017-05-31 08:38:15 +00:00
$this->assertContains('foot', $tags, 'It includes the "foot" tag');
$this->assertContains('varnish', $tags, 'It includes the "varnish" tag');
$this->assertContains('php', $tags, 'It includes the "php" tag');
$this->assertCount(3, $tags);
2017-05-31 08:38:15 +00:00
2016-11-04 21:44:31 +00:00
$this->assertInstanceOf(\DateTime::class, $content->getCreatedAt());
2017-07-01 07:52:38 +00:00
$this->assertSame('2016-10-26', $content->getCreatedAt()->format('Y-m-d'));
2016-11-04 21:44:31 +00:00
}
public function testImportPinboardWithFileAndMarkAllAsRead()
{
$this->logInAs('admin');
$client = $this->getClient();
$crawler = $client->request('GET', '/import/pinboard');
$form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
2017-07-01 07:52:38 +00:00
$file = new UploadedFile(__DIR__ . '/../fixtures/pinboard_export', 'pinboard-read.json');
2016-11-04 21:44:31 +00:00
$data = [
'upload_import_file[file]' => $file,
'upload_import_file[mark_as_read]' => 1,
];
$client->submit($form, $data);
2017-07-01 07:52:38 +00:00
$this->assertSame(302, $client->getResponse()->getStatusCode());
2016-11-04 21:44:31 +00:00
$crawler = $client->followRedirect();
$content1 = $client->getContainer()
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findByUrlAndUserId(
'https://ilia.ws/files/nginx_torontophpug.pdf',
$this->getLoggedInUserId()
);
$this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content1);
2016-11-04 21:44:31 +00:00
$this->assertTrue($content1->isArchived());
$content2 = $client->getContainer()
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findByUrlAndUserId(
'https://developers.google.com/web/updates/2016/07/infinite-scroller',
$this->getLoggedInUserId()
);
$this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content2);
2016-11-04 21:44:31 +00:00
$this->assertTrue($content2->isArchived());
$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-11-04 21:44:31 +00:00
}
public function testImportPinboardWithEmptyFile()
{
$this->logInAs('admin');
$client = $this->getClient();
$crawler = $client->request('GET', '/import/pinboard');
$form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
2017-07-01 07:52:38 +00:00
$file = new UploadedFile(__DIR__ . '/../fixtures/test.txt', 'test.txt');
2016-11-04 21:44:31 +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-11-04 21:44:31 +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-11-04 21:44:31 +00:00
}
}