wallabag/tests/Controller/Import/ImportControllerTest.php
2024-02-23 07:42:48 +01:00

30 lines
812 B
PHP

<?php
namespace Tests\Wallabag\CoreBundle\Controller\Import;
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
class ImportControllerTest extends WallabagCoreTestCase
{
public function testLogin()
{
$client = $this->getTestClient();
$client->request('GET', '/import/');
$this->assertSame(302, $client->getResponse()->getStatusCode());
$this->assertStringContainsString('login', $client->getResponse()->headers->get('location'));
}
public function testImportList()
{
$this->logInAs('admin');
$client = $this->getTestClient();
$crawler = $client->request('GET', '/import/');
$this->assertSame(200, $client->getResponse()->getStatusCode());
$this->assertSame(12, $crawler->filter('blockquote')->count());
}
}