Conditions | 1 |
Paths | 1 |
Total Lines | 31 |
Code Lines | 21 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function testMonitor() |
||
14 | { |
||
15 | $serverVars = new DependencyInjection(['SERVER_NAME' => 'localhost']); |
||
16 | $requestVars = new DependencyInjection(['output' => 'travis']); |
||
17 | $globalConfig_input = [ |
||
18 | 'enable.saml20-idp' => true, |
||
19 | 'enable.shib13-idp' => true, |
||
20 | 'enable.adfs-idp' => true, |
||
21 | 'enable.wsfed-sp' => true, |
||
22 | 'metadata.sources' => [ |
||
23 | [ |
||
24 | 'type' => 'xml', |
||
25 | 'file' => 'modules/monitor/tests/files/metadata.xml', |
||
26 | ], |
||
27 | ], |
||
28 | ]; |
||
29 | $authSourceConfig_input = [ |
||
30 | 'test' => 'travis' |
||
31 | ]; |
||
32 | $moduleConfig_input = [ |
||
33 | 'test' => 'travis' |
||
34 | ]; |
||
35 | $globalConfig = \SimpleSAML_Configuration::loadFromArray($globalConfig_input); |
||
36 | $authSourceConfig = \SimpleSAML_Configuration::loadFromArray($authSourceConfig_input); |
||
37 | $moduleConfig = \SimpleSAML_Configuration::loadFromArray($moduleConfig_input); |
||
38 | $testConf = new TestConfiguration($serverVars, $requestVars, $globalConfig, $authSourceConfig, $moduleConfig); |
||
39 | |||
40 | $monitor = new Monitor($testConf); |
||
41 | $this->assertEquals($testConf, $monitor->getTestConfiguration()); |
||
42 | |||
43 | $monitor->invokeTestSuites(); |
||
44 | } |
||
46 |