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 ImportControllerTest extends WallabagCoreTestCase
|
|
|
|
{
|
|
|
|
public function testLogin()
|
|
|
|
{
|
2022-11-23 16:09:32 +00:00
|
|
|
$client = $this->getTestClient();
|
2015-12-31 10:24:46 +00:00
|
|
|
|
|
|
|
$client->request('GET', '/import/');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringContainsString('login', $client->getResponse()->headers->get('location'));
|
2015-12-31 10:24:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testImportList()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2022-11-23 16:09:32 +00:00
|
|
|
$client = $this->getTestClient();
|
2015-12-31 10:24:46 +00:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/import/');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2021-02-08 08:57:10 +00:00
|
|
|
$this->assertSame(10, $crawler->filter('blockquote')->count());
|
2015-12-31 10:24:46 +00:00
|
|
|
}
|
|
|
|
}
|