summaryrefslogtreecommitdiff
path: root/tests/units/OAuth2Test.php
blob: 0275f4267b374833ec9b11ad2c27eaaefc13a7aa (plain)
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
<?php

require_once __DIR__.'/Base.php';

use Core\OAuth2;

class OAuth2Test extends Base
{
    public function testAuthUrl()
    {
        $oauth = new OAuth2($this->container);
        $oauth->createService('A', 'B', 'C', 'D', 'E', array('f', 'g'));
        $this->assertEquals('D?response_type=code&client_id=A&redirect_uri=C&scope=f+g', $oauth->getAuthorizationUrl());
    }

    public function testAuthHeader()
    {
        $oauth = new OAuth2($this->container);
        $oauth->createService('A', 'B', 'C', 'D', 'E', array('f', 'g'));

        $oauth->setAccessToken('foobar', 'BeaRer');
        $this->assertEquals('Authorization: Bearer foobar', $oauth->getAuthorizationHeader());

        $oauth->setAccessToken('foobar', 'unknown');
        $this->assertEquals('', $oauth->getAuthorizationHeader());
    }

    public function testAccessToken()
    {
        $oauth = new OAuth2($this->container);
        $oauth->createService('A', 'B', 'C', 'D', 'E', array('f', 'g'));
        $oauth->getAccessToken('something');

        $data = $this->container['httpClient']->getData();
        $this->assertEquals('something', $data['code']);
        $this->assertEquals('A', $data['client_id']);
        $this->assertEquals('B', $data['client_secret']);
        $this->assertEquals('C', $data['redirect_uri']);
        $this->assertEquals('authorization_code', $data['grant_type']);

        $this->assertEquals('E', $this->container['httpClient']->getUrl());
    }
}