Newer
Older
#!/usr/bin/env perl
use strict;
use warnings;
use 5.010;
Birte Kristina Friesel
committed
use Test::Command tests => 59;
Birte Kristina Friesel
committed
$ENV{HOME} = 'test';
my $images = 'test/ok/gif test/ok/jpg test/ok/png test/ok/pnm '
. 'test/fail/gif test/fail/jpg test/fail/png test/fail/pnm';
my ($feh_name, $feh_version) = @ENV{'PACKAGE', 'VERSION'};
# These tests are meant to run non-interactively and without X.
# make sure they are capable of doing so.
delete $ENV{'DISPLAY'};
my $err_no_env = <<'EOF';
Unable to determine feh PACKAGE or VERSION.
This is most likely because you ran 'prove test' or 'perl test/feh.t'.
Sinc this test uses make variables and is therefore designed to be run from
the Makefile only, use 'make test' instead.
If you absolutely need to run it the other way, use
PACKAGE=feh VERSION=1.5 ${your_command}
(with the appropiate values, of course).
EOF
if (length($feh_name) == 0 or length($feh_version) == 0) {
die($err_no_env);
}
qr{${feh_name} WARNING: test/fail/... \- No Imlib2 loader for that file format\n};
my $re_loadable = qr{test/ok/...};
my $re_unloadable = qr{test/fail/...};
my $re_list_action = qr{test/ok/... 16x16 \(${feh_name}\)};
my $cmd = Test::Command->new(cmd => "$feh --version");
$cmd->exit_is_num(0);
$cmd->stderr_is_eq('');
$cmd = Test::Command->new(cmd => "$feh --loadable $images");
$cmd->exit_is_num(0);
$cmd->stdout_like($re_loadable);
$cmd->stderr_is_eq('');
$cmd = Test::Command->new(
cmd => "$feh --loadable --action 'echo touch %f' $images"
);
$cmd->exit_is_num(0);
$cmd->stdout_is_file('test/nx_action/loadable_action');
$cmd->stderr_is_eq('');
$cmd = Test::Command->new(
cmd => "$feh --loadable --action ';echo touch %f' $images"
);
$cmd->exit_is_num(0);
$cmd->stdout_is_file('test/nx_action/loadable_naction');
$cmd->stderr_is_eq('');
$cmd = Test::Command->new(
cmd => "$feh --unloadable --action 'echo rm %f' $images"
);
$cmd->exit_is_num(0);
$cmd->stdout_is_file('test/nx_action/unloadable_action');
$cmd->stderr_is_eq('');
$cmd = Test::Command->new(
cmd => "$feh --unloadable --action ';echo rm %f' $images"
);
$cmd->exit_is_num(0);
$cmd->stdout_is_file('test/nx_action/unloadable_naction');
$cmd->stderr_is_eq('');
$cmd = Test::Command->new(cmd => "$feh --unloadable $images");
$cmd->exit_is_num(0);
$cmd->stdout_like($re_unloadable);
$cmd->stderr_is_eq('');
$cmd = Test::Command->new(cmd => "$feh --list $images");
$cmd->stdout_is_file('test/list/default');
for my $sort (qw/name filename width height pixels size format/) {
$cmd = Test::Command->new(cmd => "$feh --list $images --sort $sort");
$cmd->exit_is_num(0);
$cmd->stdout_is_file("test/list/$sort");
$cmd->stderr_like($re_warning);
}
$cmd = Test::Command->new(cmd => "$feh --list $images --sort format --reverse");
$cmd->exit_is_num(0);
$cmd->stdout_is_file('test/list/format_reverse');
$cmd = Test::Command->new(
cmd => "$feh --list --recursive --sort filename test/ok"
);
$cmd->exit_is_num(0);
$cmd->stdout_is_file('test/list/filename_recursive');
$cmd->stderr_is_eq('');
$cmd = Test::Command->new(cmd => "$feh --customlist '%f; %h; %l; %m; %n; %p; "
. "%s; %t; %u; %w' $images");
$cmd->stdout_is_file('test/list/custom');
$cmd = Test::Command->new(cmd => "$feh --list --quiet $images");
$cmd->exit_is_num(0);
$cmd->stdout_is_file('test/list/default');
$cmd->stderr_is_eq('');
$cmd = Test::Command->new(cmd =>
"$feh --quiet --list --action 'echo \"%f %wx%h (%P)\" >&2' $images");
$cmd->exit_is_num(0);
$cmd->stdout_is_file('test/list/default');