Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
SourceTest.php 1.02 KiB
<?php

declare(strict_types=1);

namespace SimpleSAML\Test\Auth;

use ReflectionClass;
use SimpleSAML\Auth;
use SimpleSAML\Test\Utils\ClearStateTestCase;
use SimpleSAML\Test\Utils\TestAuthSource;
use SimpleSAML\Test\Utils\TestAuthSourceFactory;

/**
 * Tests for \SimpleSAML\Auth\Source
 *
 * @covers \SimpleSAML\Auth\Source
 */
class SourceTest extends ClearStateTestCase
{
    /**
     */
    public function testParseAuthSource(): void
    {
        $class = new ReflectionClass(Auth\Source::class);
        $method = $class->getMethod('parseAuthSource');
        $method->setAccessible(true);

        // test direct instantiation of the auth source object
        $authSource = $method->invokeArgs(null, ['test', [TestAuthSource::class]]);
        $this->assertInstanceOf(TestAuthSource::class, $authSource);

        // test instantiation via an auth source factory
        $authSource = $method->invokeArgs(null, ['test', [TestAuthSourceFactory::class]]);
        $this->assertInstanceOf(TestAuthSource::class, $authSource);
    }
}