hydra/t/lib/Setup.pm

124 lines
3.1 KiB
Perl
Raw Permalink Normal View History

2011-03-16 13:18:12 +00:00
package Setup;
use strict;
2021-08-19 20:36:43 +00:00
use warnings;
2011-03-16 13:18:12 +00:00
use Exporter;
use Test::PostgreSQL;
use File::Temp;
use File::Path qw(make_path);
use File::Basename;
use Cwd qw(abs_path getcwd);
use Hydra::Helper::Exec;
use CliRunners;
2011-03-16 13:18:12 +00:00
our @ISA = qw(Exporter);
2022-01-10 21:47:04 +00:00
our @EXPORT = qw(
createBaseJobset
createJobsetWithOneInput
evalFails
evalSucceeds
hydra_setup
nrBuildsForJobset
nrQueuedBuildsForJobset
queuedBuildsForJobset
runBuild
sendNotifications
test_context
test_init
updateRepository
write_file
);
# Set up the environment for running tests.
#
# See HydraTestContext::new for documentation
sub test_context {
require HydraTestContext;
return HydraTestContext->new(@_);
}
# Set up the environment for running tests.
#
# See HydraTestContext::new for documentation
sub test_init {
require HydraTestContext;
my $ctx = HydraTestContext->new(@_);
return (
context => $ctx,
tmpdir => $ctx->tmpdir,
testdir => $ctx->testdir,
jobsdir => $ctx->jobsdir
)
}
2021-07-26 17:13:27 +00:00
sub write_file {
my ($path, $text) = @_;
open(my $fh, '>', $path) or die "Could not open file '$path' $!";
print $fh $text || "";
close $fh;
}
2011-03-16 13:18:12 +00:00
sub hydra_setup {
2013-01-23 12:49:26 +00:00
my ($db) = @_;
$db->resultset('Users')->create({ username => "root", emailaddress => 'root@invalid.org', password => '' });
2011-03-16 13:18:12 +00:00
}
2011-03-17 11:55:39 +00:00
sub nrBuildsForJobset {
2013-01-23 12:49:26 +00:00
my ($jobset) = @_;
return $jobset->builds->search({},{})->count ;
2011-03-17 11:55:39 +00:00
}
2011-03-17 13:25:27 +00:00
sub queuedBuildsForJobset {
2013-01-23 12:49:26 +00:00
my ($jobset) = @_;
return $jobset->builds->search({finished => 0});
2011-03-17 13:25:27 +00:00
}
2011-03-17 11:55:39 +00:00
sub nrQueuedBuildsForJobset {
2013-01-23 12:49:26 +00:00
my ($jobset) = @_;
return queuedBuildsForJobset($jobset)->count ;
2011-03-17 11:55:39 +00:00
}
sub createBaseJobset {
my ($jobsetName, $nixexprpath, $jobspath) = @_;
2013-01-22 13:41:02 +00:00
2013-01-23 12:49:26 +00:00
my $db = Hydra::Model::DB->new;
my $project = $db->resultset('Projects')->update_or_create({name => "tests", displayname => "", owner => "root"});
my $jobset = $project->jobsets->create({name => $jobsetName, nixexprinput => "jobs", nixexprpath => $nixexprpath, emailoverride => ""});
2011-03-17 11:55:39 +00:00
2013-01-23 12:49:26 +00:00
my $jobsetinput;
my $jobsetinputals;
2011-03-17 11:55:39 +00:00
2013-01-23 12:49:26 +00:00
$jobsetinput = $jobset->jobsetinputs->create({name => "jobs", type => "path"});
$jobsetinputals = $jobsetinput->jobsetinputalts->create({altnr => 0, value => $jobspath});
2011-03-17 11:55:39 +00:00
2013-01-23 12:49:26 +00:00
return $jobset;
2011-03-17 11:55:39 +00:00
}
sub createJobsetWithOneInput {
my ($jobsetName, $nixexprpath, $name, $type, $uri, $jobspath) = @_;
my $jobset = createBaseJobset($jobsetName, $nixexprpath, $jobspath);
2011-03-17 11:55:39 +00:00
2013-01-23 12:49:26 +00:00
my $jobsetinput;
my $jobsetinputals;
2011-03-17 11:55:39 +00:00
2013-01-23 12:49:26 +00:00
$jobsetinput = $jobset->jobsetinputs->create({name => $name, type => $type});
$jobsetinputals = $jobsetinput->jobsetinputalts->create({altnr => 0, value => $uri});
2011-03-17 11:55:39 +00:00
2013-01-23 12:49:26 +00:00
return $jobset;
2011-03-17 11:55:39 +00:00
}
2012-04-15 01:17:35 +00:00
sub updateRepository {
2021-02-24 02:42:59 +00:00
my ($scm, $update, $scratchdir) = @_;
my $curdir = getcwd;
chdir "$scratchdir";
2013-01-23 12:49:26 +00:00
my ($res, $stdout, $stderr) = captureStdoutStderr(60, ($update, $scm));
2021-02-24 02:42:59 +00:00
chdir "$curdir";
die "unexpected update error with $scm: $stderr\n" if $res;
2013-01-23 12:49:26 +00:00
my ($message, $loop, $status) = $stdout =~ m/::(.*) -- (.*) -- (.*)::/;
print STDOUT "Update $scm repository: $message\n";
return ($loop eq "continue", $status eq "updated");
2012-04-15 01:17:35 +00:00
}
2011-03-16 13:18:12 +00:00
1;