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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
|
<?php
/**
* Test for the consent:Consent authproc filter.
*
* @author Vincent Rioux <vrioux@ctech.ca>
* @package SimpleSAMLphp
*/
namespace SimpleSAML\Test\Module\consent\Auth\Process;
use PHPUnit\Framework\TestCase;
use \SimpleSAML_Configuration as Configuration;
class ConsentTest extends TestCase
{
public function setUp()
{
$this->config = Configuration::loadFromArray(array(), '[ARRAY]', 'simplesaml');
}
/**
* Helper function to run the filter with a given configuration.
*
* @param array $config The filter configuration.
* @param array $request The request state.
* @return array The state array after processing.
*/
private function processFilter(array $config, array $request)
{
$filter = new \sspmod_consent_Auth_Process_Consent($config, null);
$filter->process($request);
return $request;
}
/**
* Test for the private checkDisable() method.
*/
public function testCheckDisable()
{
// test consent disable regex with match
$config = array();
// test consent disable with match on specific SP entityid
$request = array(
'Source' => array(
'entityid' => 'https://idp.example.org',
'metadata-set' => 'saml20-idp-local',
'consent.disable' => array(
'https://valid.flatstring.example.that.does.not.match',
),
'SingleSignOnService' => array(
array(
'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect',
'Location' => 'https://idp.example.org/saml2/idp/SSOService.php',
),
),
),
'Destination' => array(
// valid entityid equal to the last one in the consent.disable array
'entityid' => 'https://sp.example.org/my-sp',
'metadata-set' => 'saml20-sp-remote',
'consent.disable' => array(
array('type' => 'regex', 'pattern' => '/invalid/i'),
'https://sp.example.org/my-sp', // accept the SP that has this specific entityid
'https://idp.example.org',
),
),
'UserID' => 'jdoe',
'Attributes' => array(
'eduPersonPrincipalName' => array('jdoe@example.com'),
),
);
$result = $this->processFilter($config, $request);
// the state should NOT have changed because NO consent should be necessary (match)
$this->assertEquals($request, $result);
// test consent disable with match on SP through regular expression
$request = array(
'Source' => array(
'entityid' => 'https://idp.example.org',
'metadata-set' => 'saml20-idp-local',
'consent.disable' => array(
array(), // invalid consent option array should be ignored
1234, // bad option
array(''), // no type
array('type'=>'invalid'), // invalid consent option type should be ignored
array('type'=>'regex'), // regex consent option without pattern should be ignored
array('type'=>'regex', 'pattern'=>'/.*\.valid.regex\.that\.does\.not\.match.*/i'),
// accept any SP that has an entityid that contains the string ".example.org"
array('type'=>'regex', 'pattern'=>'/.*\.example\.org\/.*/i'),
),
'SingleSignOnService' => array(
array(
'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect',
'Location' => 'https://idp.example.org/saml2/idp/SSOService.php',
),
),
),
'Destination' => array(
'entityid' => 'https://sp.example.org/my-sp', // sp contains the string ".example.org"
'metadata-set' => 'saml20-sp-remote',
),
'UserID' => 'jdoe',
'Attributes' => array(
'eduPersonPrincipalName' => array('jdoe@example.com'),
),
);
$result = $this->processFilter($config, $request);
// the state should NOT have changed because NO consent should be necessary (match)
$this->assertEquals($request, $result);
// test corner cases
$request['Source']['consent.disable'] = array(
'https://valid.flatstring.example.that.does.not.match',
array('foo' => 'bar'),
);
$request['Destination']['consent.disable'] = 1;
$result = $this->processFilter($config, $request);
// the state should NOT have changed because NO consent should be necessary (match)
$this->assertEquals($request, $result);
}
public function testAttributeHashIsConsistentWhenOrderOfValuesChange()
{
$attributes1 = array(
'attribute1' => array('val1', 'val2'),
'attribute2' => array('val1', 'val2')
);
$attributeHash1 = \sspmod_consent_Auth_Process_Consent::getAttributeHash($attributes1, true);
$attributes2 = array(
'attribute1' => array('val1', 'val2'),
'attribute2' => array('val2', 'val1')
);
$attributeHash2 = \sspmod_consent_Auth_Process_Consent::getAttributeHash($attributes2, true);
$this->assertEquals($attributeHash1, $attributeHash2, "Hash is not the same when the order of values changes");
}
public function testAttributeHashIsConsistentWhenOrderOfAttributesChange()
{
$attributes1 = array(
'attribute2' => array('val1', 'val2'),
'attribute1' => array('val1', 'val2')
);
$attributeHash1 = \sspmod_consent_Auth_Process_Consent::getAttributeHash($attributes1, true);
$attributes2 = array(
'attribute1' => array('val1', 'val2'),
'attribute2' => array('val1', 'val2')
);
$attributeHash2 = \sspmod_consent_Auth_Process_Consent::getAttributeHash($attributes2, true);
$this->assertEquals(
$attributeHash1,
$attributeHash2,
"Hash is not the same when the order of the attributs changes"
);
}
public function testAttributeHashIsConsistentWithoutValuesWhenOrderOfAttributesChange()
{
$attributes1 = array(
'attribute2' => array('val1', 'val2'),
'attribute1' => array('val1', 'val2')
);
$attributeHash1 = \sspmod_consent_Auth_Process_Consent::getAttributeHash($attributes1);
$attributes2 = array(
'attribute1' => array('val1', 'val2'),
'attribute2' => array('val1', 'val2')
);
$attributeHash2 = \sspmod_consent_Auth_Process_Consent::getAttributeHash($attributes2);
$this->assertEquals(
$attributeHash1,
$attributeHash2,
"Hash is not the same when the order of the attributs changes and the values are not included"
);
}
public function testConstructorSetsInstancePrivateVars()
{
$reflection = new \ReflectionClass('\sspmod_consent_Auth_Process_Consent');
foreach (array(
'_includeValues', '_checked', '_focus', '_hiddenAttributes', '_noconsentattributes', '_showNoConsentAboutService'
) as $v) {
$instanceVars[$v] = $reflection->getProperty($v);
$instanceVars[$v]->setAccessible(true);
}
/* these just need to be different to the default values */
$config = array(
'includeValues' => true,
'checked' => true,
'focus' => 'yes',
'hiddenAttributes' => array('attribute1', 'attribute2'),
'attributes.exclude' => array('attribute1', 'attribute2'),
'showNoConsentAboutService' => false,
);
$testcase = $reflection->newInstance($config, null);
$this->assertEquals($instanceVars['_includeValues']->getValue($testcase), $config['includeValues']);
$this->assertEquals($instanceVars['_checked']->getValue($testcase), $config['checked']);
$this->assertEquals($instanceVars['_focus']->getValue($testcase), $config['focus']);
$this->assertEquals($instanceVars['_hiddenAttributes']->getValue($testcase), $config['hiddenAttributes']);
$this->assertEquals($instanceVars['_noconsentattributes']->getValue($testcase), $config['attributes.exclude']);
$this->assertEquals($instanceVars['_showNoConsentAboutService']->getValue($testcase), $config['showNoConsentAboutService']);
$deprecated = $reflection->newInstance(array('noconsentattributes' => $config['attributes.exclude'],), null);
$this->assertEquals($instanceVars['_noconsentattributes']->getValue($deprecated), $config['attributes.exclude']);
}
}
|