aboutsummaryrefslogblamecommitdiffhomepage
path: root/tests/Wallabag/ImportBundle/Controller/ImportControllerTest.php
blob: 5e57dcefd39744ce868fa28081f8600fd3f76e9f (plain) (tree)
1
2
3
4
5

     
                                                 
 
                                                   




















                                                                                         
                                                                        

     
<?php

namespace Tests\Wallabag\ImportBundle\Controller;

use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;

class ImportControllerTest extends WallabagCoreTestCase
{
    public function testLogin()
    {
        $client = $this->getClient();

        $client->request('GET', '/import/');

        $this->assertEquals(302, $client->getResponse()->getStatusCode());
        $this->assertContains('login', $client->getResponse()->headers->get('location'));
    }

    public function testImportList()
    {
        $this->logInAs('admin');
        $client = $this->getClient();

        $crawler = $client->request('GET', '/import/');

        $this->assertEquals(200, $client->getResponse()->getStatusCode());
        $this->assertEquals(8, $crawler->filter('blockquote')->count());
    }
}