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
|
<?php
declare(strict_types=1);
namespace SimpleSAML\Test\Metadata;
use SimpleSAML\Configuration;
use SimpleSAML\Metadata\MetaDataStorageHandler;
use SimpleSAML\Test\Utils\ClearStateTestCase;
class MetaDataStorageHandlerTest extends ClearStateTestCase
{
/**
* Test that loading specific entities works, and that metadata source precedence is followed
* @return void
*/
public function testLoadEntities(): void
{
$c = [
'metadata.sources' => [
['type' => 'flatfile', 'directory' => __DIR__ . '/test-metadata/source1'],
['type' => 'serialize', 'directory' => __DIR__ . '/test-metadata/source2'],
],
];
Configuration::loadFromArray($c, '', 'simplesaml');
$handler = MetaDataStorageHandler::getMetadataHandler();
$entities = $handler->getMetaDataForEntities([
'entityA',
'entityB',
'nosuchEntity',
'entityInBoth',
'expiredInSrc1InSrc2'
], 'saml20-sp-remote');
$this->assertCount(4, $entities);
$this->assertEquals('entityA SP from source1', $entities['entityA']['name']['en']);
$this->assertEquals('entityB SP from source2', $entities['entityB']['name']['en']);
$this->assertEquals(
'entityInBoth SP from source1',
$entities['entityInBoth']['name']['en'],
"Entity is in both sources, but should get loaded from the first"
);
$this->assertEquals(
'expiredInSrc1InSrc2 SP from source2',
$entities['expiredInSrc1InSrc2']['name']['en'],
"Entity is in both sources, expired in src1 and available from src2"
);
}
}
|