2010-12-05 09:41:38 +01:00
|
|
|
<?php
|
2016-06-23 01:37:22 +02:00
|
|
|
|
2016-10-14 03:30:05 +02:00
|
|
|
namespace SilverStripe\Security\Tests;
|
|
|
|
|
|
|
|
use SilverStripe\Forms\HiddenField;
|
2016-06-23 01:37:22 +02:00
|
|
|
use SilverStripe\Security\SecurityToken;
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\Dev\SapphireTest;
|
2016-09-09 08:43:05 +02:00
|
|
|
use SilverStripe\Control\HTTPRequest;
|
2016-08-19 00:51:35 +02:00
|
|
|
use SilverStripe\Forms\FieldList;
|
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
class SecurityTokenTest extends SapphireTest
|
|
|
|
{
|
|
|
|
|
|
|
|
public function testIsEnabled()
|
|
|
|
{
|
|
|
|
$inst1 = SecurityToken::inst();
|
|
|
|
$this->assertTrue($inst1->isEnabled());
|
|
|
|
|
|
|
|
SecurityToken::disable();
|
|
|
|
$inst2 = SecurityToken::inst();
|
|
|
|
$this->assertFalse($inst2->isEnabled());
|
|
|
|
|
|
|
|
SecurityToken::enable();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testEnableAndDisable()
|
|
|
|
{
|
|
|
|
$inst = SecurityToken::inst();
|
|
|
|
$this->assertFalse($inst->check('randomvalue'));
|
|
|
|
|
|
|
|
SecurityToken::disable();
|
|
|
|
$inst = SecurityToken::inst();
|
|
|
|
$this->assertTrue($inst->check('randomvalue'));
|
|
|
|
|
|
|
|
SecurityToken::enable();
|
|
|
|
$inst = SecurityToken::inst();
|
|
|
|
$this->assertFalse($inst->check('randomvalue'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testIsEnabledStatic()
|
|
|
|
{
|
|
|
|
$this->assertTrue(SecurityToken::is_enabled());
|
|
|
|
|
|
|
|
SecurityToken::disable();
|
|
|
|
$this->assertFalse(SecurityToken::is_enabled());
|
|
|
|
|
|
|
|
SecurityToken::enable();
|
|
|
|
$this->assertTrue(SecurityToken::is_enabled());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testInst()
|
|
|
|
{
|
|
|
|
$inst1 = SecurityToken::inst();
|
|
|
|
$this->assertInstanceOf('SilverStripe\\Security\\SecurityToken', $inst1);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testInstReturnsSingleton()
|
|
|
|
{
|
|
|
|
$inst1 = SecurityToken::inst();
|
|
|
|
$inst2 = SecurityToken::inst();
|
|
|
|
$this->assertEquals($inst1, $inst2);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCheck()
|
|
|
|
{
|
|
|
|
$t = new SecurityToken();
|
|
|
|
|
|
|
|
$t->setValue(null);
|
|
|
|
$this->assertFalse($t->check('invalidtoken'), 'Any token is invalid if no token is stored');
|
|
|
|
|
|
|
|
$t->setValue(null);
|
|
|
|
$this->assertFalse($t->check(null), 'NULL token is invalid if no token is stored');
|
|
|
|
|
|
|
|
$t->setValue('mytoken');
|
|
|
|
$this->assertFalse($t->check('invalidtoken'), 'Invalid token returns false');
|
|
|
|
|
|
|
|
$t->setValue('mytoken');
|
|
|
|
$this->assertTrue($t->check('mytoken'), 'Valid token returns true');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testReset()
|
|
|
|
{
|
|
|
|
$t = new SecurityToken();
|
|
|
|
$initialValue = $t->getValue();
|
|
|
|
$t->reset();
|
|
|
|
|
|
|
|
$this->assertNotEquals($t->getValue(), $initialValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCheckRequest()
|
|
|
|
{
|
|
|
|
$t = new SecurityToken();
|
|
|
|
$n = $t->getName();
|
|
|
|
|
|
|
|
$t->setValue(null);
|
2020-04-20 19:58:09 +02:00
|
|
|
$r = new HTTPRequest('GET', 'dummy', [$n => 'invalidtoken']);
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertFalse($t->checkRequest($r), 'Any token is invalid if no token is stored');
|
|
|
|
|
|
|
|
$t->setValue(null);
|
2020-04-20 19:58:09 +02:00
|
|
|
$r = new HTTPRequest('GET', 'dummy', [$n => null]);
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertFalse($t->checkRequest($r), 'NULL token is invalid if no token is stored');
|
|
|
|
|
|
|
|
$t->setValue('mytoken');
|
2020-04-20 19:58:09 +02:00
|
|
|
$r = new HTTPRequest('GET', 'dummy', [$n => 'invalidtoken']);
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertFalse($t->checkRequest($r), 'Invalid token returns false');
|
|
|
|
|
|
|
|
$t->setValue('mytoken');
|
2020-04-20 19:58:09 +02:00
|
|
|
$r = new HTTPRequest('GET', 'dummy', [$n => 'mytoken']);
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertTrue($t->checkRequest($r), 'Valid token returns true');
|
|
|
|
|
|
|
|
$t->setValue('mytoken');
|
|
|
|
$r = new HTTPRequest('GET', 'dummy');
|
|
|
|
$r->addHeader('X-Securityid', 'mytoken');
|
|
|
|
$this->assertTrue($t->checkRequest($r), 'Valid token returns true');
|
|
|
|
|
|
|
|
$t->setValue('mytoken');
|
|
|
|
$r = new HTTPRequest('GET', 'dummy');
|
|
|
|
$r->addHeader('X-Securityid', 'wrongtoken');
|
|
|
|
$this->assertFalse($t->checkRequest($r), 'Valid token returns true');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAddToUrl()
|
|
|
|
{
|
|
|
|
$t = new SecurityToken();
|
|
|
|
|
2022-10-10 23:19:31 +02:00
|
|
|
$url = 'http://absolute.tld/action';
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertEquals(
|
|
|
|
sprintf('%s?%s=%s', $url, $t->getName(), $t->getValue()),
|
|
|
|
$t->addToUrl($url),
|
|
|
|
'Urls without existing GET parameters'
|
|
|
|
);
|
|
|
|
|
2022-10-10 23:19:31 +02:00
|
|
|
$url = 'http://absolute.tld?getparam=1';
|
2016-12-16 05:34:21 +01:00
|
|
|
$this->assertEquals(
|
|
|
|
sprintf('%s&%s=%s', $url, $t->getName(), $t->getValue()),
|
|
|
|
$t->addToUrl($url),
|
|
|
|
'Urls with existing GET parameters'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateFieldSet()
|
|
|
|
{
|
|
|
|
$fs = new FieldList();
|
|
|
|
$t = new SecurityToken();
|
|
|
|
$t->updateFieldSet($fs);
|
|
|
|
$f = $fs->dataFieldByName($t->getName());
|
|
|
|
|
|
|
|
$this->assertInstanceOf(HiddenField::class, $f);
|
|
|
|
$this->assertEquals($f->getName(), $t->getName(), 'Name matches');
|
|
|
|
$this->assertEquals($f->Value(), $t->getValue(), 'Value matches');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateFieldSetDoesntAddTwice()
|
|
|
|
{
|
|
|
|
$fs = new FieldList();
|
|
|
|
$t = new SecurityToken();
|
|
|
|
$t->updateFieldSet($fs); // first
|
|
|
|
$t->updateFieldSet($fs); // second
|
|
|
|
$f = $fs->dataFieldByName($t->getName());
|
|
|
|
|
|
|
|
$this->assertInstanceOf(HiddenField::class, $f);
|
|
|
|
$this->assertEquals(1, $fs->count());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUnnamedTokensCarrySameValue()
|
|
|
|
{
|
|
|
|
$t1 = new SecurityToken();
|
|
|
|
$t2 = new SecurityToken();
|
|
|
|
|
|
|
|
$this->assertEquals($t1->getName(), $t2->getName());
|
|
|
|
$this->assertEquals($t1->getValue(), $t2->getValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testNamedTokensCarryDifferentValues()
|
|
|
|
{
|
|
|
|
$t1 = new SecurityToken('one');
|
|
|
|
$t2 = new SecurityToken('two');
|
|
|
|
|
|
|
|
$this->assertNotEquals($t1->getName(), $t2->getName());
|
|
|
|
$this->assertNotEquals($t1->getValue(), $t2->getValue());
|
|
|
|
}
|
2012-03-24 04:04:52 +01:00
|
|
|
}
|