1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* check to see if reading from header field works |
4
|
|
|
*/ |
5
|
|
|
|
6
|
|
|
namespace Graviton\SecurityBundle\Authentication\Strategies; |
7
|
|
|
|
8
|
|
|
use Graviton\TestBundle\Test\WebTestCase; |
9
|
|
|
|
10
|
|
|
/** |
11
|
|
|
* Class HeaderFieldStrategyTest |
12
|
|
|
* |
13
|
|
|
* @author List of contributors <https://github.com/libgraviton/graviton/graphs/contributors> |
14
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GNU Public License |
15
|
|
|
* @link http://swisscom.ch |
16
|
|
|
*/ |
17
|
|
|
class HeaderFieldStrategyTest extends WebTestCase |
18
|
|
|
{ |
19
|
|
|
/** |
20
|
|
|
* @covers \Graviton\SecurityBundle\Authentication\Strategies\HeaderFieldStrategy::apply |
21
|
|
|
* @covers \Graviton\SecurityBundle\Authentication\Strategies\AbstractHttpStrategy::extractFieldInfo |
22
|
|
|
* @covers \Graviton\SecurityBundle\Authentication\Strategies\AbstractHttpStrategy::validateField |
23
|
|
|
* |
24
|
|
|
* @dataProvider stringProvider |
25
|
|
|
* |
26
|
|
|
* @param string $headerFieldValue header to test with |
27
|
|
|
* |
28
|
|
|
* @return void |
29
|
|
|
*/ |
30
|
|
|
public function testApply($headerFieldValue) |
31
|
|
|
{ |
32
|
|
|
$server = array( |
33
|
|
|
'HTTP_X_IDP_USERNAME' => $headerFieldValue, //"example-authentication-header", |
34
|
|
|
); |
35
|
|
|
|
36
|
|
|
$client = static::createClient(); |
37
|
|
|
$client->request( |
38
|
|
|
'GET', //method |
39
|
|
|
'/', //uri |
40
|
|
|
array(), //parameters |
41
|
|
|
array(), //files |
42
|
|
|
$server |
43
|
|
|
); |
44
|
|
|
|
45
|
|
|
$strategy = new HeaderFieldStrategy( |
46
|
|
|
$client->getKernel()->getContainer()->getParameter('graviton.security.authentication.strategy_key') |
47
|
|
|
); |
48
|
|
|
|
49
|
|
|
$this->assertEquals( |
50
|
|
|
$headerFieldValue, |
51
|
|
|
$strategy->apply($client->getRequest()) |
|
|
|
|
52
|
|
|
); |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
/** |
56
|
|
|
* @return array<string> |
57
|
|
|
*/ |
58
|
|
View Code Duplication |
public function stringProvider() |
|
|
|
|
59
|
|
|
{ |
60
|
|
|
return array( |
61
|
|
|
'plain string, no special chars' => array('exampleAuthenticationHeader'), |
62
|
|
|
'string with special chars' => array("$-_.+!*'(),{}|\\^~[]`<>#%;/?:@&=."), |
63
|
|
|
'string with octal chars' => array("a: \141, A: \101"), |
64
|
|
|
'string with hex chars' => array("a: \x61, A: \x41") |
65
|
|
|
); |
66
|
|
|
} |
67
|
|
|
} |
68
|
|
|
|
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: