-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f88197
commit 0105b17
Showing
1 changed file
with
29 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,12 @@ | |
# SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
use Test::Most; | ||
use Mojo::Base -signatures; | ||
|
||
use FindBin; | ||
use lib "$FindBin::Bin/lib", "$FindBin::Bin/../external/os-autoinst-common/lib"; | ||
use Data::Dumper; | ||
use OpenQA::Git; | ||
use OpenQA::Utils; | ||
use OpenQA::Task::Needle::Save; | ||
use OpenQA::Test::Case; | ||
use OpenQA::Test::TimeLimit '10'; | ||
use Mojo::File 'tempdir'; | ||
|
@@ -57,20 +56,20 @@ subtest 'make git commit (error handling)' => sub { | |
|
||
# setup mocking | ||
my @executed_commands; | ||
my $utils_mock = Test::MockModule->new('OpenQA::Git'); | ||
my %mock_return_value = ( | ||
status => 1, | ||
stderr => undef, | ||
); | ||
$utils_mock->redefine( | ||
run_cmd_with_log_return_error => sub { | ||
my ($cmd) = @_; | ||
push(@executed_commands, $cmd); | ||
return \%mock_return_value; | ||
}); | ||
|
||
sub _run_cmd_mock ($cmd) { | ||
push(@executed_commands, $cmd); | ||
return \%mock_return_value; | ||
} | ||
|
||
subtest 'git commands with mocked run_cmd_with_log_return_error' => sub { | ||
# check default config | ||
my $utils_mock = Test::MockModule->new('OpenQA::Git'); | ||
$utils_mock->redefine(run_cmd_with_log_return_error => \&_run_cmd_mock); | ||
my $git = OpenQA::Git->new(app => $t->app, dir => 'foo/bar', user => $first_user); | ||
is($git->app, $t->app, 'app is set'); | ||
is($git->dir, 'foo/bar', 'dir is set'); | ||
|
@@ -128,7 +127,7 @@ subtest 'git commands with mocked run_cmd_with_log_return_error' => sub { | |
is( | ||
$git->dir('/repo/path')->commit( | ||
{ | ||
message => 'some test', | ||
message => 'add rm test', | ||
add => [qw(foo.png foo.json)], | ||
rm => [qw(bar.png bar.json)], | ||
} | ||
|
@@ -143,16 +142,35 @@ subtest 'git commands with mocked run_cmd_with_log_return_error' => sub { | |
[qw(git -C /repo/path rm bar.png bar.json)], | ||
[ | ||
qw(git -C /repo/path commit -q -m), | ||
'some test', | ||
'add rm test', | ||
'--author=openQA system user <[email protected]>', | ||
qw(foo.png foo.json bar.png bar.json) | ||
], | ||
], | ||
'changes staged and committed', | ||
) or diag explain \@executed_commands; | ||
|
||
$git->config->{do_push} = 'yes'; | ||
|
||
local $mock_return_value{status} = 1; | ||
local $mock_return_value{stderr} = 'mocked push error'; | ||
local $mock_return_value{stdout} = ''; | ||
|
||
$utils_mock->redefine( | ||
run_cmd_with_log_return_error => sub ($cmd) { | ||
push(@executed_commands, $cmd); | ||
if ($cmd->[3] eq 'push') { | ||
$mock_return_value{status} = 0; | ||
} | ||
return \%mock_return_value; | ||
}); | ||
like $git->commit({message => 'failed push test'}), qr/Unable to push Git commit/, 'error handled during push'; | ||
$git->config->{do_push} = ''; | ||
}; | ||
|
||
subtest 'saving needle via Git' => sub { | ||
my $utils_mock = Test::MockModule->new('OpenQA::Git'); | ||
$utils_mock->redefine(run_cmd_with_log_return_error => \&_run_cmd_mock); | ||
{ | ||
package Test::FakeMinionJob; # uncoverable statement | ||
sub finish { } | ||
|