mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-13 12:31:05 +00:00
aa5c7f05b8
- disable autowiring for Event (because the Entry entity was injected) - rename `getClient()` for test to `getTestClient()` to avoid error while overriding (from `BrowserKitAssertionsTrait`)
29 lines
807 B
PHP
29 lines
807 B
PHP
<?php
|
|
|
|
namespace Tests\Wallabag\ImportBundle\Controller;
|
|
|
|
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(10, $crawler->filter('blockquote')->count());
|
|
}
|
|
}
|