cf5ce00b9e6a59f634f0582ca340a19d452ce219
[gitmo/MooseX-Daemonize.git] / t / 21.core-back-compat.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More 'no_plan';
7 use Test::Fatal;
8 use Test::Moose;
9 use File::Temp qw(tempdir);
10 use File::Spec::Functions;
11
12 my $dir = tempdir( CLEANUP => 1 );
13
14 BEGIN {
15     use_ok('MooseX::Daemonize::Core');
16     use_ok('MooseX::Daemonize::Pid');
17 }
18
19 use constant DEBUG => 0;
20
21 $ENV{MX_DAEMON_STDOUT} = catfile($dir, 'Out.txt');
22 $ENV{MX_DAEMON_STDERR} = catfile($dir, 'Err.txt');
23
24 {
25     package MyFooDaemon;
26     use Moose;
27
28     with 'MooseX::Daemonize::Core';
29
30     has 'daemon_pid' => (is => 'rw', isa => 'MooseX::Daemonize::Pid');
31
32     # capture the PID from the fork
33     around 'daemon_fork' => sub {
34         my $next = shift;
35         my $self = shift;
36         if (my $pid = $self->$next(@_)) {
37             $self->daemon_pid(
38                 MooseX::Daemonize::Pid->new(pid => $pid)
39             );
40         }
41     };
42
43     sub start {
44         my $self = shift;
45         # tell it to ignore zombies ...
46         $self->daemonize(
47             ignore_zombies => 1,
48             no_double_fork => 1,
49         );
50         return unless $self->is_daemon;
51         # change to our local dir
52         # so that we can debug easier
53         chdir $dir;
54         # make it easy to find with ps
55         $0 = 'test-app';
56         $SIG{INT} = sub {
57             print "Got INT! Oh Noes!";
58             exit;
59         };
60         while (1) {
61             print "Hello from $$\n";
62             sleep(10);
63         }
64         exit;
65     }
66 }
67
68 my $d = MyFooDaemon->new;
69 isa_ok($d, 'MyFooDaemon');
70 does_ok($d, 'MooseX::Daemonize::Core');
71
72 is(
73     exception { $d->start },
74     undef,
75     '... successfully daemonized from (' . $$ . ')',
76 );
77
78 my $p = $d->daemon_pid;
79 isa_ok($p, 'MooseX::Daemonize::Pid');
80
81 ok($p->is_running, '... the daemon process is running (' . $p->pid . ')');
82
83 my $pid = $p->pid;
84 if (DEBUG) {
85     diag `ps $pid`;
86     diag "-------";
87     diag `ps -x | grep test-app`;
88     diag "-------";
89     diag "killing $pid";
90 }
91 kill INT => $p->pid;
92 diag "killed $pid" if DEBUG;
93 sleep(2);
94 if (DEBUG) {
95     diag `ps $pid`;
96     diag "-------";
97     diag `ps -x | grep test-app`;
98 }
99
100 ok(!$p->is_running, '... the daemon process is no longer running (' . $p->pid . ')');
101
102 unlink $ENV{MX_DAEMON_STDOUT};
103 unlink $ENV{MX_DAEMON_STDERR};
104
105