blob: ebc707f5175d8e5abb90ba905fcdd838b014477f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Exit;
use FindBin '$RealBin';
use lib $RealBin;
use Capture::Tiny qw/ capture_merged /;
use File::Temp 'tempdir';
use Cwd;
use feature 'state';
use Test::Sbotools qw/ set_repo set_lo sboinstall sbosnap load /;
if ($ENV{TEST_INSTALL}) {
plan tests => 2;
} else {
plan skip_all => 'Only run these tests if TEST_INSTALL=1';
}
set_lo("$RealBin/LO2");
# set up git repo with readme slackbuild
my $tempdir = tempdir(CLEANUP => 0);
capture_merged { system <<"GIT"; };
cd $tempdir
git init
mkdir test
cp -a "$RealBin/LO/nonexistentslackbuild8/" test
git add test
git commit -m 'first commit'
GIT
set_repo("file://$tempdir");
sbosnap 'fetch', { test => 0 };
# install the readme slackbuild
sboinstall 'nonexistentslackbuild8', { input => "y\ny", test => 0 };
{ package STDINTIE;
sub TIEHANDLE { bless {}, shift; }
sub READLINE {
no warnings 'once', 'redefine';
*_race::cond = sub {
unlink "/usr/sbo/repo/test/nonexistentslackbuild8/README";
};
"y\n";
}
}
tie *STDIN, 'STDINTIE';
my $res = load('sboremove', argv => ['nonexistentslackbuild8']);
like ($res->{out}, qr/Unable to open README for nonexistentslackbuild8\./, 'sboremove output with race condition correct');
is ($res->{exit}, 0, 'sboremove exited with 0');
|