RPClaimsDistributedTest   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 35
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 17
dl 0
loc 35
rs 10
c 1
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A execute() 0 27 1
A getTestId() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Facile\OpenIDClient\ConformanceTest\RpTest\ClaimsTypes;
6
7
use PHPUnit\Framework\Assert;
8
use Facile\OpenIDClient\Claims\DistributedParser;
9
use Facile\OpenIDClient\ConformanceTest\RpTest\AbstractRpTest;
10
use Facile\OpenIDClient\ConformanceTest\TestInfo;
11
use Facile\OpenIDClient\Session\AuthSession;
12
use Facile\OpenIDClient\Service\AuthorizationService;
13
use Facile\OpenIDClient\Service\UserInfoService;
14
use function Facile\OpenIDClient\base64url_encode;
15
16
/**
17
 * Make a UserInfo Request and read the Distributed Claims.
18
 *
19
 * Understand the distributed claims in the UserInfo Response.
20
 */
21
class RPClaimsDistributedTest extends AbstractRpTest
22
{
23
24
    public function getTestId(): string
25
    {
26
        return 'rp-claims-distributed';
27
    }
28
29
    public function execute(TestInfo $testInfo): void
30
    {
31
        $client = $this->registerClient($testInfo);
32
33
        $authorizationService = new AuthorizationService();
0 ignored issues
show
Bug introduced by
The call to Facile\OpenIDClient\Serv...nService::__construct() has too few arguments starting with tokenSetFactory. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

33
        $authorizationService = /** @scrutinizer ignore-call */ new AuthorizationService();

This check compares calls to functions or methods with their respective definitions. If the call has less arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.

Loading history...
34
        $userInfoService = new UserInfoService();
0 ignored issues
show
Bug introduced by
The call to Facile\OpenIDClient\Serv...oService::__construct() has too few arguments starting with userInfoVerifierBuilder. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

34
        $userInfoService = /** @scrutinizer ignore-call */ new UserInfoService();

This check compares calls to functions or methods with their respective definitions. If the call has less arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.

Loading history...
35
        $distributedClaims = new DistributedParser();
36
37
        $authSession = AuthSession::fromArray([
38
            'nonce' => base64url_encode(\random_bytes(32)),
39
        ]);
40
        $uri = $authorizationService->getAuthorizationUri($client, [
41
            'response_type' => $testInfo->getResponseType(),
42
            'nonce' => $authSession->getNonce(),
43
        ]);
44
45
        // Simulate a redirect and create the server request
46
        $serverRequest = $this->simulateAuthRedirect($uri);
47
48
        $params = $authorizationService->getCallbackParams($serverRequest, $client);
49
        $tokenSet = $authorizationService->callback($client, $params, null, $authSession);
50
51
        $userInfo = $userInfoService->getUserInfo($client, $tokenSet);
52
        $distributed = $distributedClaims->fetch($client, $userInfo);
53
54
        Assert::assertArrayHasKey('age', $distributed);
55
        Assert::assertSame(30, $distributed['age']);
56
    }
57
}
58