File: grouping_refresh_token.t

package info (click to toggle)
liboauth-lite2-perl 0.11-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 592 kB
  • sloc: perl: 2,658; makefile: 8
file content (74 lines) | stat: -rw-r--r-- 2,191 bytes parent folder | download | duplicates (2)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
use strict;
use warnings;

use lib 't/lib';
use Test::More tests => 8;

use TestDataHandler;
use OAuth::Lite2::Server::Endpoint::Token;
use OAuth::Lite2::Agent::PSGIMock;
use OAuth::Lite2::Client::ClientCredentials;

TestDataHandler->clear;
TestDataHandler->add_client(id => q{foo}, 
                            secret => q{bar}, 
                            user_id => q{100},
                            group_id => 1);
TestDataHandler->add_client(id => q{foo_2}, 
                            secret => q{bar_2}, 
                            group_id => 1);
TestDataHandler->add_user(username => q{buz}, password => q{hoge});
my $dh = TestDataHandler->new;

my $app = OAuth::Lite2::Server::Endpoint::Token->new(
    data_handler => "TestDataHandler",
);

$app->support_grant_types(qw(client_credentials grouping_refresh_token));

my $agent = OAuth::Lite2::Agent::PSGIMock->new(app => $app);

my $client = OAuth::Lite2::Client::ClientCredentials->new(
    id                => q{foo},
    secret            => q{bar},
    access_token_uri  => q{http://localhost/access_token},
    agent             => $agent,
);

# obtain refresh token
my $res = $client->get_access_token(
    scope => q{grouping_scope}
);
ok($res, q{response should be not undef});
is($res->refresh_token, q{refresh_token_0});
my $refresh_token = $res->refresh_token;

my $client_2 = OAuth::Lite2::Client::ClientCredentials->new(
    id                => q{foo_2},
    secret            => q{bar_2},
    access_token_uri  => q{http://localhost/access_token},
    agent             => $agent,
);

# success
$res = $client_2->get_grouping_refresh_token(
    refresh_token   => $refresh_token,
    scope => q{grouping_scope},
);
ok($res, q{response should be not undef});
is($res->refresh_token, q{refresh_token_1});

$res = $client_2->get_grouping_refresh_token(
    refresh_token   => $refresh_token,
    scope => q{grouping_scope},
    use_basic_schema => 1,
);
ok($res, q{response should be not undef});
is($res->refresh_token, q{refresh_token_2});

# failed
$res = $client->get_grouping_refresh_token(
    refresh_token   => q{invalid},
);
ok(!$res, q{response should be undef});
is($client->errstr, q{invalid_grant});