summaryrefslogtreecommitdiff
path: root/tests/units/Core/Security/TokenTest.php
blob: dbb7bd1a79a71b2c087e73c757887844bc6ced28 (plain)
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
<?php

require_once __DIR__.'/../../Base.php';

use Kanboard\Core\Security\Token;

class TokenTest extends Base
{
    public function testGenerateToken()
    {
        $t1 = Token::getToken();
        $t2 = Token::getToken();

        $this->assertNotEmpty($t1);
        $this->assertNotEmpty($t2);

        $this->assertNotEquals($t1, $t2);
    }

    public function testCSRFTokens()
    {
        $token = new Token($this->container);
        $t1 = $token->getCSRFToken();

        $this->assertNotEmpty($t1);
        $this->assertTrue($token->validateCSRFToken($t1));
        $this->assertFalse($token->validateCSRFToken($t1));
    }
}