aboutsummaryrefslogtreecommitdiff
path: root/t/27-race-sbofind.t
diff options
context:
space:
mode:
Diffstat (limited to 't/27-race-sbofind.t')
-rwxr-xr-xt/27-race-sbofind.t94
1 files changed, 0 insertions, 94 deletions
diff --git a/t/27-race-sbofind.t b/t/27-race-sbofind.t
deleted file mode 100755
index 39ac51c..0000000
--- a/t/27-race-sbofind.t
+++ /dev/null
@@ -1,94 +0,0 @@
-#!/usr/bin/env perl
-
-use strict;
-use warnings;
-use Test::More;
-use Test::Exit;
-use FindBin '$RealBin';
-use lib $RealBin;
-use Test::Sbotools qw/set_gpg_verify load/;
-use Capture::Tiny qw/ capture_merged /;
-use File::Temp 'tempdir';
-use Cwd;
-use feature 'state';
-
-plan tests => 9;
-
-set_gpg_verify('FALSE');
-load('sbofind');
-my $tags_file = '/usr/sbo/repo/TAGS.txt';
-
-# 1: tags file
-{
- rename $tags_file, "$tags_file.bak";
- system 'touch', $tags_file;
-
- no warnings 'redefine';
- local *_race::cond = sub {
- if ($_[0] eq '$tags_file may be deleted after -f check') {
- local *_race::cond = sub {
- if ($_[0] eq '$file could be deleted between -f test and open') {
- unlink $tags_file;
- }
- };
- }
- };
-
- my $exit;
- capture_merged { $exit = exit_code { perform_search('foo'); }; };
-
- is ($exit, undef, "perform_search didn't exit");
-
- rename "$tags_file.bak", $tags_file;
-}
-
-# 2-3: slackbuilds.txt file
-{
- my $sbt = '/usr/sbo/repo/SLACKBUILDS.TXT';
- system('touch', $tags_file) unless -f $tags_file;
-
- no warnings 'redefine';
- local *_race::cond = sub {
- if ($_[0] eq '$file could be deleted between -f test and open') {
- state $num++;
- rename $sbt, "$sbt.bak" if $num == 2;
- }
- };
-
- my $exit;
- my $out = capture_merged { $exit = exit_code { perform_search('foo'); }; };
-
- is ($out, "Unable to open $sbt.\n", "perform_search gave correct output");
- is ($exit, 6, "perform_search exited with 6");
-
- rename "$sbt.bak", $sbt;
-}
-
-# 4-9: get_file_contents
-{
- my $file = tempdir(CLEANUP => 1) . "/foo";
-
- my ($exit, $ret);
- my $out = capture_merged { $exit = exit_code { $ret = get_file_contents($file); }; };
-
- is ($out, '', 'get_file_contents gave no output');
- is ($ret, "Unable to open $file.\n", 'get_file_contents returned correctly');
- is ($exit, undef, 'get_file_contents didn\'t exit');
-
- system 'touch', $file;
-
- no warnings 'redefine';
- local *_race::cond = sub {
- if ($_[0] eq '$file could be deleted between -f test and open') {
- unlink $file;
- }
- };
-
- undef $exit;
- undef $ret;
- $out = capture_merged { $exit = exit_code { $ret = get_file_contents($file); }; };
-
- is ($out, '', 'get_file_contents gave no output');
- is ($ret, "Unable to open $file.\n", 'get_file_contents returned correctly');
- is ($exit, undef, 'get_file_contents still didn\'t exit');
-}