* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bundle\SecurityBundle\Tests\Functional; class FormLoginTest extends WebTestCase { /** * @dataProvider getConfigs */ public function testFormLogin($config) { $client = $this->createClient(array('test_case' => 'StandardFormLogin', 'root_config' => $config)); $form = $client->request('GET', '/login')->selectButton('login')->form(); $form['_username'] = 'johannes'; $form['_password'] = 'test'; $client->submit($form); $this->assertRedirect($client->getResponse(), '/profile'); $text = $client->followRedirect()->text(); $this->assertContains('Hello johannes!', $text); $this->assertContains('You\'re browsing to path "/profile".', $text); } /** * @dataProvider getConfigs */ public function testFormLogout($config) { $client = $this->createClient(array('test_case' => 'StandardFormLogin', 'root_config' => $config)); $form = $client->request('GET', '/login')->selectButton('login')->form(); $form['_username'] = 'johannes'; $form['_password'] = 'test'; $client->submit($form); $this->assertRedirect($client->getResponse(), '/profile'); $crawler = $client->followRedirect(); $text = $crawler->text(); $this->assertContains('Hello johannes!', $text); $this->assertContains('You\'re browsing to path "/profile".', $text); $logoutLinks = $crawler->selectLink('Log out')->links(); $this->assertCount(6, $logoutLinks); $this->assertSame($logoutLinks[0]->getUri(), $logoutLinks[1]->getUri()); $this->assertSame($logoutLinks[2]->getUri(), $logoutLinks[3]->getUri()); $this->assertSame($logoutLinks[4]->getUri(), $logoutLinks[5]->getUri()); $this->assertNotSame($logoutLinks[0]->getUri(), $logoutLinks[2]->getUri()); $this->assertNotSame($logoutLinks[1]->getUri(), $logoutLinks[3]->getUri()); $this->assertSame($logoutLinks[0]->getUri(), $logoutLinks[4]->getUri()); $this->assertSame($logoutLinks[1]->getUri(), $logoutLinks[5]->getUri()); } /** * @dataProvider getConfigs */ public function testFormLoginWithCustomTargetPath($config) { $client = $this->createClient(array('test_case' => 'StandardFormLogin', 'root_config' => $config)); $form = $client->request('GET', '/login')->selectButton('login')->form(); $form['_username'] = 'johannes'; $form['_password'] = 'test'; $form['_target_path'] = '/foo'; $client->submit($form); $this->assertRedirect($client->getResponse(), '/foo'); $text = $client->followRedirect()->text(); $this->assertContains('Hello johannes!', $text); $this->assertContains('You\'re browsing to path "/foo".', $text); } /** * @dataProvider getConfigs */ public function testFormLoginRedirectsToProtectedResourceAfterLogin($config) { $client = $this->createClient(array('test_case' => 'StandardFormLogin', 'root_config' => $config)); $client->request('GET', '/protected_resource'); $this->assertRedirect($client->getResponse(), '/login'); $form = $client->followRedirect()->selectButton('login')->form(); $form['_username'] = 'johannes'; $form['_password'] = 'test'; $client->submit($form); $this->assertRedirect($client->getResponse(), '/protected_resource'); $text = $client->followRedirect()->text(); $this->assertContains('Hello johannes!', $text); $this->assertContains('You\'re browsing to path "/protected_resource".', $text); } public function getConfigs() { return array( array('config.yml'), array('routes_as_path.yml'), ); } }