App-KGB

 view release on metacpan or  search on metacpan

t/76-webhook-pipeline.t  view on Meta::CPAN

use strict;
use warnings;
use utf8;

use autodie qw(:all);
use Test::More;
use Test::Exception;

BEGIN {
    eval { require LWP::UserAgent; 1 }
        or plan skip_all => "LWP::UserAgent is required for testing webhooks";
}

use lib 't';
use TestBot;

use App::KGB::Change;
use File::Temp qw(tempdir);
use File::Spec;
use JSON qw(to_json);
use Test::Differences;

unified_diff();

use utf8;
my $builder = Test::More->builder;
binmode $builder->output,         ":utf8";
binmode $builder->failure_output, ":utf8";
binmode $builder->todo_output,    ":utf8";

my $tmp_cleanup = not $ENV{TEST_KEEP_TMP};
my $dir = tempdir(
    'kgb-XXXXXXX',
    CLEANUP => $tmp_cleanup,
    DIR     => File::Spec->tmpdir
);
diag "Temp directory $dir will be kept" unless $tmp_cleanup;

my $test_bot = TestBot->start;

use Cwd;
my $R = getcwd;

my $ua = LWP::UserAgent->new();
my $webhook_url = sprintf(
    'http://%s:%d/webhook/?%s',
    $test_bot->addr,
    $test_bot->port,
    join( '&',
        'channel=test', 'network=dummy',
        'use_color=0',  'pipeline_only_status=success',
        'pipeline_only_status=failed' )
);

sub webhook_post {
    return $ua->post(
        $webhook_url,
        'Content-Type' => 'text/json',
        Content        => to_json( shift, { utf8 => 1 } ),
    );
}

my $resp = webhook_post(
    {   object_kind => 'pipeline',
        user        => { name => 'Test User' },
        project     => { name => 'test-repo', },
        object_attributes =>
            { id => 42, status => 'created' },
    }
);

is( $resp->code, 202, 'pipeline event response status is 202' )
    or diag $resp->as_string;

$resp = webhook_post(
    {   object_kind => 'pipeline',
        user        => { name => 'Test User' },
        project     => { name => 'test-repo', },
        object_attributes =>
            { id => 42, status => 'success', duration => 3665, },
    }
);

is( $resp->code, 202, 'pipeline event response status is 202' )
    or diag $resp->as_string;

TestBot->expect(
    join( ' ',
        'dummy/#test test-repo',



( run in 0.816 second using v1.01-cache-2.11-cpan-5735350b133 )