2015-12-31 10:24:46 +00:00
|
|
|
<?php
|
|
|
|
|
2016-06-01 19:27:35 +00:00
|
|
|
namespace Tests\Wallabag\ImportBundle\Controller;
|
2015-12-31 10:24:46 +00:00
|
|
|
|
2016-06-01 19:27:35 +00:00
|
|
|
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
2015-12-31 10:24:46 +00:00
|
|
|
|
|
|
|
class PocketControllerTest extends WallabagCoreTestCase
|
|
|
|
{
|
|
|
|
public function testImportPocket()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/import/pocket');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2018-01-12 09:37:13 +00:00
|
|
|
$this->assertSame(1, $crawler->filter('button[name=action]')->count());
|
2015-12-31 10:24:46 +00:00
|
|
|
}
|
|
|
|
|
2016-09-09 16:02:29 +00:00
|
|
|
public function testImportPocketWithRabbitEnabled()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2016-09-09 19:02:03 +00:00
|
|
|
$client->getContainer()->get('craue_config')->set('import_with_rabbitmq', 1);
|
2016-09-09 16:02:29 +00:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/import/pocket');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2018-01-12 09:37:13 +00:00
|
|
|
$this->assertSame(1, $crawler->filter('button[name=action]')->count());
|
2016-09-09 16:02:29 +00:00
|
|
|
|
2016-09-09 19:02:03 +00:00
|
|
|
$client->getContainer()->get('craue_config')->set('import_with_rabbitmq', 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testImportPocketWithRedisEnabled()
|
|
|
|
{
|
2016-09-24 17:57:59 +00:00
|
|
|
$this->checkRedis();
|
2016-09-09 19:02:03 +00:00
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->getContainer()->get('craue_config')->set('import_with_redis', 1);
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/import/pocket');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2018-01-12 09:37:13 +00:00
|
|
|
$this->assertSame(1, $crawler->filter('button[name=action]')->count());
|
2016-09-09 19:02:03 +00:00
|
|
|
|
|
|
|
$client->getContainer()->get('craue_config')->set('import_with_redis', 0);
|
2016-09-09 16:02:29 +00:00
|
|
|
}
|
|
|
|
|
2016-03-27 18:35:56 +00:00
|
|
|
public function testImportPocketAuthBadToken()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2016-06-24 09:55:45 +00:00
|
|
|
$client->request('GET', '/import/pocket/auth');
|
2016-03-27 18:35:56 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-03-27 18:35:56 +00:00
|
|
|
}
|
|
|
|
|
2015-12-31 10:24:46 +00:00
|
|
|
public function testImportPocketAuth()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2016-03-27 18:35:56 +00:00
|
|
|
$pocketImport = $this->getMockBuilder('Wallabag\ImportBundle\Import\PocketImport')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$pocketImport
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getRequestToken')
|
|
|
|
->willReturn('token');
|
|
|
|
|
2016-06-24 09:55:45 +00:00
|
|
|
static::$kernel->getContainer()->set('wallabag_import.pocket.import', $pocketImport);
|
2016-03-27 18:35:56 +00:00
|
|
|
|
2016-06-24 09:55:45 +00:00
|
|
|
$client->request('GET', '/import/pocket/auth');
|
2015-12-31 10:24:46 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(301, $client->getResponse()->getStatusCode());
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringContainsString('getpocket.com/auth/authorize', $client->getResponse()->headers->get('location'));
|
2015-12-31 10:24:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testImportPocketCallbackWithBadToken()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2016-06-24 09:55:45 +00:00
|
|
|
$pocketImport = $this->getMockBuilder('Wallabag\ImportBundle\Import\PocketImport')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$pocketImport
|
|
|
|
->expects($this->once())
|
|
|
|
->method('authorize')
|
|
|
|
->willReturn(false);
|
|
|
|
|
|
|
|
static::$kernel->getContainer()->set('wallabag_import.pocket.import', $pocketImport);
|
|
|
|
|
|
|
|
$client->request('GET', '/import/pocket/callback');
|
2015-12-31 10:24:46 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringContainsString('/', $client->getResponse()->headers->get('location'), 'Import is ok, redirect to homepage');
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame('flashes.import.notice.failed', $client->getContainer()->get('session')->getFlashBag()->peek('notice')[0]);
|
2015-12-31 10:24:46 +00:00
|
|
|
}
|
2016-06-24 09:55:45 +00:00
|
|
|
|
|
|
|
public function testImportPocketCallback()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$pocketImport = $this->getMockBuilder('Wallabag\ImportBundle\Import\PocketImport')
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$pocketImport
|
|
|
|
->expects($this->once())
|
|
|
|
->method('authorize')
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
$pocketImport
|
|
|
|
->expects($this->once())
|
|
|
|
->method('setMarkAsRead')
|
|
|
|
->with(false)
|
|
|
|
->willReturn($pocketImport);
|
|
|
|
|
|
|
|
$pocketImport
|
|
|
|
->expects($this->once())
|
|
|
|
->method('import')
|
|
|
|
->willReturn(true);
|
|
|
|
|
|
|
|
static::$kernel->getContainer()->set('wallabag_import.pocket.import', $pocketImport);
|
|
|
|
|
|
|
|
$client->request('GET', '/import/pocket/callback');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringContainsString('/', $client->getResponse()->headers->get('location'), 'Import is ok, redirect to homepage');
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame('flashes.import.notice.summary', $client->getContainer()->get('session')->getFlashBag()->peek('notice')[0]);
|
2016-06-24 09:55:45 +00:00
|
|
|
}
|
2015-12-31 10:24:46 +00:00
|
|
|
}
|