wallabag/tests/Controller/Import/ImportControllerTest.php
Kevin Decherf 1d661e8c68 Merge remote-tracking branch 'origin/2.6' into port/2.6.10
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
2024-11-11 20:51:41 +01:00

29 lines
782 B
PHP

<?php
namespace Tests\Wallabag\Controller\Import;
use Tests\Wallabag\WallabagTestCase;
class ImportControllerTest extends WallabagTestCase
{
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(13, $crawler->filter('blockquote')->count());
}
}