wallabag/tests/Controller/Import/ImportControllerTest.php

30 lines
812 B
PHP
Raw Normal View History

<?php
2023-12-31 11:25:57 +00:00
namespace Tests\Wallabag\CoreBundle\Controller\Import;
2016-06-01 19:27:35 +00:00
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
class ImportControllerTest extends WallabagCoreTestCase
{
public function testLogin()
{
$client = $this->getTestClient();
$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'));
}
public function testImportList()
{
$this->logInAs('admin');
$client = $this->getTestClient();
$crawler = $client->request('GET', '/import/');
2017-07-01 07:52:38 +00:00
$this->assertSame(200, $client->getResponse()->getStatusCode());
2023-07-26 10:49:30 +00:00
$this->assertSame(12, $crawler->filter('blockquote')->count());
}
}