forked from lix-project/hydra
API: test api/push-github
This commit is contained in:
parent
20db82b001
commit
a81e358016
|
@ -267,7 +267,6 @@ sub push : Chained('api') PathPart('push') Args(0) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
sub push_github : Chained('api') PathPart('push-github') Args(0) {
|
sub push_github : Chained('api') PathPart('push-github') Args(0) {
|
||||||
my ($self, $c) = @_;
|
my ($self, $c) = @_;
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,9 @@ use warnings;
|
||||||
use Setup;
|
use Setup;
|
||||||
use Test2::V0;
|
use Test2::V0;
|
||||||
use Catalyst::Test ();
|
use Catalyst::Test ();
|
||||||
|
use HTTP::Request;
|
||||||
use HTTP::Request::Common;
|
use HTTP::Request::Common;
|
||||||
use JSON::MaybeXS qw(decode_json);
|
use JSON::MaybeXS qw(decode_json encode_json);
|
||||||
|
|
||||||
sub is_json {
|
sub is_json {
|
||||||
my ($response, $message) = @_;
|
my ($response, $message) = @_;
|
||||||
|
@ -141,4 +142,74 @@ subtest "/api/push" => sub {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
subtest "/api/push-github" => sub {
|
||||||
|
# Create a project and jobset which looks like it comes from GitHub
|
||||||
|
my $user = $ctx->db()->resultset('Users')->create({
|
||||||
|
username => "api-push-github",
|
||||||
|
emailaddress => 'api-push-github@example.org',
|
||||||
|
password => ''
|
||||||
|
});
|
||||||
|
|
||||||
|
my $project = $ctx->db()->resultset('Projects')->create({
|
||||||
|
name => "api-push-github",
|
||||||
|
displayname => "api-push-github",
|
||||||
|
owner => $user->username
|
||||||
|
});
|
||||||
|
|
||||||
|
subtest "with a legacy input type" => sub {
|
||||||
|
my $jobset = $project->jobsets->create({
|
||||||
|
name => "legacy-input-type",
|
||||||
|
nixexprinput => "src",
|
||||||
|
nixexprpath => "default.nix",
|
||||||
|
emailoverride => ""
|
||||||
|
});
|
||||||
|
|
||||||
|
my $jobsetinput = $jobset->jobsetinputs->create({name => "src", type => "git"});
|
||||||
|
$jobsetinput->jobsetinputalts->create({altnr => 0, value => "https://github.com/OWNER/LEGACY-REPO.git"});
|
||||||
|
|
||||||
|
my $req = POST '/api/push-github',
|
||||||
|
"Content-Type" => "application/json",
|
||||||
|
"Content" => encode_json({
|
||||||
|
repository => {
|
||||||
|
owner => {
|
||||||
|
name => "OWNER",
|
||||||
|
},
|
||||||
|
name => "LEGACY-REPO",
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
my $response = request($req);
|
||||||
|
ok($response->is_success, "The API enpdoint for triggering jobsets returns 200.");
|
||||||
|
|
||||||
|
my $data = is_json($response);
|
||||||
|
is($data, { jobsetsTriggered => [ "api-push-github:legacy-input-type" ] }, "The correct jobsets are triggered.");
|
||||||
|
};
|
||||||
|
|
||||||
|
subtest "with a flake input type" => sub {
|
||||||
|
my $jobset = $project->jobsets->create({
|
||||||
|
name => "flake-input-type",
|
||||||
|
type => 1,
|
||||||
|
flake => "github:OWNER/FLAKE-REPO",
|
||||||
|
emailoverride => ""
|
||||||
|
});
|
||||||
|
|
||||||
|
my $req = POST '/api/push-github',
|
||||||
|
"Content-Type" => "application/json",
|
||||||
|
"Content" => encode_json({
|
||||||
|
repository => {
|
||||||
|
owner => {
|
||||||
|
name => "OWNER",
|
||||||
|
},
|
||||||
|
name => "FLAKE-REPO",
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
my $response = request($req);
|
||||||
|
ok($response->is_success, "The API enpdoint for triggering jobsets returns 200.");
|
||||||
|
|
||||||
|
my $data = is_json($response);
|
||||||
|
is($data, { jobsetsTriggered => [ "api-push-github:flake-input-type" ] }, "The correct jobsets are triggered.");
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
done_testing;
|
done_testing;
|
||||||
|
|
Loading…
Reference in a new issue