Daemon-Control-Plugin-HotStandby
view release on metacpan or search on metacpan
t/10-hot_standby.t view on Meta::CPAN
eval 'use Role::Tiny';
plan skip_all => 'Role::Tiny not installed' if $@;
plan skip_all => 'No windows support for this now' if $^O eq 'MsWin32';
}
use File::Temp qw/tempfile/;
my ( $file, $ilib );
# Let's make it so people can test in t/ or in the dist directory.
if ( -f 't/bin/10-hot_standby.pl' ) { # Dist Directory.
$file = "t/bin/10-hot_standby.pl";
$ilib = "lib";
} elsif ( -f 'bin/10-hot_standby.pl' ) {
$file = "bin/10-hot_standby.pl";
$ilib = "../lib";
} else {
die "Tests should be run in the dist directory or t/";
}
sub current_pid {
my $pid = `tail -n 1 /tmp/daemon_control_hotstandby_pid`;
chomp $pid;
return $pid;
}
sub get_command_output {
my ( @command ) = @_;
open my $lf, "-|", @command
or die "Couldn't get pipe to '@command': $!";
my $content = do { local $/; <$lf> };
close $lf;
return $content;
}
my $out;
ok $out = get_command_output( "$^X -I$ilib $file start" ), "Started system daemon";
like $out, qr/\[Started\]/, "Daemon started.";
ok $out = get_command_output( "$^X -I$ilib $file status" ), "Get status of system daemon.";
like $out, qr/\[Running\]/, "Daemon running.";
ok $? >> 8 == 0, "Exit Status = 0";
sleep 10;
ok $out = get_command_output( "$^X -I$ilib $file stop" ), "Stop daemon and get status.";
ok $out = get_command_output( "$^X -I$ilib $file status" ), "Get status of system daemon.";
like $out, qr/\[Not Running\]/, "Daemon not running.";
ok $? >> 8 == 3, "Exit Status = 3";
# Testing restart.
ok $out = get_command_output( "$^X -I$ilib $file start" ), "Started system daemon";
like $out, qr/\[Started\]/, "Daemon started for restarting";
ok $out = get_command_output( "$^X -I$ilib $file status" ), "Get status of system daemon.";
like $out, qr/\[Running\]/, "Daemon running for restarting.";
my $start_pid = current_pid();
ok $out = get_command_output( "$^X -I$ilib $file restart" ), "Get status of system daemon.";
like $out, qr/\[Found existing.*\[Started\]/ms, "Daemon restarted.";
my $next_pid = current_pid();
ok $out = get_command_output( "$^X -I$ilib $file status" ), "Get status of system daemon.";
# not sure how to check that $start_pid is still alive for a period of time before being killed at this stage.
isnt $start_pid, $next_pid, "pid file contents swapped";
like $out, qr/\[Running\]/, "Daemon running after restart.";
ok $out = get_command_output( "$^X -I$ilib $file stop" ), "Get status of system daemon.";
like $out, qr/\[Stopped\]/, "Daemon stopped after restart.";
done_testing;
( run in 1.950 second using v1.01-cache-2.11-cpan-ceb78f64989 )