The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
use Test::More tests => 5;
use POE qw(Component::Github);
my $payload = {
'repositories' => [
{
'owner' => 'bingos',
'private' => 'false',
'name' => 'poe-component-github',
'description' => '(perl) A POE component for the Github API',
'watchers' => 2,
'forks' => 0,
'fork' => 'false',
},
]
};
my $httpd = Test::POE::Server::TCP->spawn(
address => '127.0.0.1',
filter => POE::Filter::HTTP::Parser->new( type => 'server' ),
prefix => 'httpd_',
);
my $github = POE::Component::Github->spawn( url_path => '127.0.0.1:' . $httpd->port . '/api/v2/json' );
isa_ok( $github, 'POE::Component::Github');
POE::Session->create(
package_states => [
'main' => [qw(_start _github httpd_registered httpd_client_input)],
],
);
$poe_kernel->run();
pass("Okay the kernel returned");
exit 0;
sub _start {
$poe_kernel->post( $httpd->session_id, 'register', 'all' );
return;
}
sub httpd_registered {
$poe_kernel->post( $github->get_session_id, 'repositories', 'list', { event => '_github', user => 'bingos' }, );
return;
}
sub httpd_client_input {
my ($id,$input) = @_[ARG0,ARG1];
is( $input->uri->as_string, '/api/v2/json/repos/show/bingos', 'The URI was right.' );
my $resp = HTTP::Response->new( 200 );
$resp->protocol('HTTP/1.1');
$resp->content( JSON::Any->new->objToJson( $payload ) );
use bytes;
$resp->header('Content-Length', length $resp->content);
$resp->header('Content-Type', 'application/json; charset=utf-8');
$httpd->send_to_client( $id, $resp );
return;
}
sub _github {
my $args = $_[ARG0];
ok( $args->{data}, 'There appears to be some data' );
is_deeply( $args->{data}, $payload, 'The data was good' );
$poe_kernel->post( $github->get_session_id, 'shutdown' );
$httpd->shutdown();
return;
}