File: LogoutTest.php

package info (click to toggle)
symfony 2.8.7%2Bdfsg-1.3%2Bdeb9u3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 39,888 kB
  • sloc: php: 225,095; xml: 4,083; sh: 475; ansic: 263; makefile: 127
file content (52 lines) | stat: -rw-r--r-- 1,706 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * 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 LogoutTest extends WebTestCase
{
    public function testSessionLessRememberMeLogout()
    {
        $client = $this->createClient(array('test_case' => 'RememberMeLogout', 'root_config' => 'config.yml'));

        $client->request('POST', '/login', array(
            '_username' => 'johannes',
            '_password' => 'test',
        ));

        $cookieJar = $client->getCookieJar();
        $cookieJar->expire(session_name());

        $this->assertNotNull($cookieJar->get('REMEMBERME'));

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

        $this->assertNull($cookieJar->get('REMEMBERME'));
    }

    public function testCsrfTokensAreClearedOnLogout()
    {
        $client = $this->createClient(array('test_case' => 'LogoutWithoutSessionInvalidation', 'root_config' => 'config.yml'));
        $client->getContainer()->get('security.csrf.token_storage')->setToken('foo', 'bar');

        $client->request('POST', '/login', array(
            '_username' => 'johannes',
            '_password' => 'test',
        ));

        $this->assertTrue($client->getContainer()->get('security.csrf.token_storage')->hasToken('foo'));
        $this->assertSame('bar', $client->getContainer()->get('security.csrf.token_storage')->getToken('foo'));

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

        $this->assertFalse($client->getContainer()->get('security.csrf.token_storage')->hasToken('foo'));
    }
}