2015-12-31 11:24:46 +01:00
|
|
|
<?php
|
|
|
|
|
2024-02-19 01:30:12 +01:00
|
|
|
namespace Tests\Wallabag\Controller\Import;
|
2015-12-31 11:24:46 +01:00
|
|
|
|
2024-02-24 20:24:51 +01:00
|
|
|
use Tests\Wallabag\WallabagTestCase;
|
2015-12-31 11:24:46 +01:00
|
|
|
|
2024-02-24 20:24:51 +01:00
|
|
|
class ImportControllerTest extends WallabagTestCase
|
2015-12-31 11:24:46 +01:00
|
|
|
{
|
|
|
|
public function testLogin()
|
|
|
|
{
|
2022-11-23 17:09:32 +01:00
|
|
|
$client = $this->getTestClient();
|
2015-12-31 11:24:46 +01:00
|
|
|
|
|
|
|
$client->request('GET', '/import/');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('login', $client->getResponse()->headers->get('location'));
|
2015-12-31 11:24:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testImportList()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2022-11-23 17:09:32 +01:00
|
|
|
$client = $this->getTestClient();
|
2015-12-31 11:24:46 +01:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/import/');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2023-07-26 12:49:30 +02:00
|
|
|
$this->assertSame(12, $crawler->filter('blockquote')->count());
|
2015-12-31 11:24:46 +01:00
|
|
|
}
|
|
|
|
}
|