The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use File::Spec::Functions;
use Test::More;

plan skip_all => "Test::Cmd not available" unless eval "use Test::Cmd; 1";

my %programs = (
    rack            => "RackManager",
   "cisco-status"   => "Cisco switch status",
   "cfengine-tags"  => "Cfengine tags generator",
   "racktables-check"   => "RackTables consistency check",
);

plan tests => 6 * keys %programs;

for my $command (sort keys %programs) {
    my $program = $programs{$command};
    my $cmdpath = -d "blib" ? catfile("blib", "script", $command)
                            : catfile("bin", $command);

    my $perl = join " ", $^X, map "-I$_", @INC;
    my $cmd = Test::Cmd->new(prog => $cmdpath, workdir => "", intereter => $perl);
    ok( $cmd, "created Test::Cmd object for $command" );

    # checking option --version
    $cmd->run(args => '--version', 'chdir' => $cmd->curdir);
    is( $?, 0, "exec: $command --version" );
    like( $cmd->stdout, qr/^$program v\d+\.\d+$/i, "  => checking version output" );

    # checking usage
    my $fakeopt = "this-is-not-an-option";
    $cmd->run(args => "--$fakeopt", 'chdir' => $cmd->curdir);
    is( $?, 0, "exec: $command --$fakeopt" );
    like( $cmd->stderr, qr/^Unknown option: $fakeopt$/, "  => checking error" );
    like( $cmd->stdout, qr/^Usage:\s+$command /ms, "  => checking usage");
}