1 | <?php |
||
9 | final class Negotiate extends \SimpleSAML\Module\monitor\TestSuiteFactory |
||
10 | { |
||
11 | /** |
||
12 | * @var array |
||
13 | */ |
||
14 | private $authSource = array(); |
||
15 | |||
16 | /** |
||
17 | * @var array |
||
18 | */ |
||
19 | private $serverVars = array(); |
||
20 | |||
21 | /** |
||
22 | * @var array |
||
23 | */ |
||
24 | private $requestVars = array(); |
||
25 | |||
26 | /** |
||
27 | * @param TestConfiguration $configuration |
||
28 | * @param TestData $testData |
||
29 | */ |
||
30 | public function __construct($configuration, $testData) |
||
31 | { |
||
32 | $authSource = $testData->getInput('authSource'); |
||
33 | $this->serverVars = $configuration->getServerVars(); |
||
34 | $this->requestVars = $configuration->getRequestVars(); |
||
35 | |||
36 | assert(is_array($authSource)); |
||
37 | $this->authSource = $authSource; |
||
38 | |||
39 | parent::__construct($configuration); |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * @return void |
||
44 | */ |
||
45 | protected function invokeTestSuite() |
||
46 | { |
||
47 | $input = array( |
||
61 |