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
|
<?php
declare(strict_types=1);
namespace SimpleSAML\Test\Utils;
use ReflectionObject;
use SAML2\AuthnRequest;
use SAML2\Binding;
use SimpleSAML\Configuration;
use SimpleSAML\Module\saml\Auth\Source\SP;
/**
* Wrap the SSP \SimpleSAML\Module\saml\Auth\Source\SP class
* - Use introspection to make startSSO2Test available
* - Override sendSAML2AuthnRequest() to catch the AuthnRequest being sent
*/
class SpTester extends SP
{
/**
* @param array $info
* @param array $config
* @return void
*/
public function __construct($info, $config)
{
parent::__construct($info, $config);
}
/**
* @return void
*/
public function startSSO2Test(Configuration $idpMetadata, array $state)
{
$reflector = new ReflectionObject($this);
$method = $reflector->getMethod('startSSO2');
$method->setAccessible(true);
$method->invoke($this, $idpMetadata, $state);
}
/**
* override the method that sends the request to avoid sending anything
* @return void
*/
public function sendSAML2AuthnRequest(array &$state, Binding $binding, AuthnRequest $ar)
{
// Exit test. Continuing would mean running into a assert(FALSE)
throw new ExitTestException(
[
'state' => $state,
'binding' => $binding,
'ar' => $ar,
]
);
}
}
|