GitHub-Apps-Auth
view release on metacpan or search on metacpan
t/02_overload.t view on Meta::CPAN
use strict;
use Test::More;
use Test::Mock::Guard;
use Test::Time;
use GitHub::Apps::Auth;
use Crypt::PK::RSA;
use JSON qw/encode_json/;
use Time::Moment;
use Furl::Response;
my $pk = Crypt::PK::RSA->new->generate_key->export_key_pem("private");
my $auth = GitHub::Apps::Auth->new(
private_key => \$pk,
app_id => 42,
installation_id => 4242,
);
my $expected_base_token = 1234567890;
my $g = mock_guard "GitHub::Apps::Auth" => {
_post_to_access_token => sub {
my $body = encode_json({
token => $expected_base_token++ . "",
expires_at => Time::Moment->from_epoch(time())->plus_minutes(1)->strftime("%Y-%m-%dT%H:%M:%S%Z"),
});
return Furl::Response->new(1, 200, "OK", [], $body);
},
};
is "$auth", "1234567890";
sleep 1;
is "$auth", "1234567890";
sleep 59;
is "$auth", "1234567890";
sleep 1;
is "$auth", "1234567891";
sleep 1;
is "$auth", "1234567891";
done_testing;
( run in 1.282 second using v1.01-cache-2.11-cpan-39bf76dae61 )