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()
|
|
|
|
{
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/import/');
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('login', $client->getResponse()->headers->get('location'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testImportList()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/import/');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
2016-11-06 08:58:07 +00:00
|
|
|
$this->assertEquals(8, $crawler->filter('blockquote')->count());
|
2015-12-31 10:24:46 +00:00
|
|
|
}
|
|
|
|
}
|