/usr/share/perl5/Test/MooseX/Daemonize.pm is in libmoosex-daemonize-perl 0.21-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | use strict;
use warnings;
package Test::MooseX::Daemonize;
# ABSTRACT: Tool to help test MooseX::Daemonize applications
our $VERSION = '0.21';
# BEGIN CARGO CULTING
use Sub::Exporter -setup => {
exports => [ qw(daemonize_ok check_test_output) ],
groups => { default => [ qw(daemonize_ok check_test_output) ] },
};
use Test::Builder;
our $Test = Test::Builder->new;
sub daemonize_ok {
my ( $daemon, $msg ) = @_;
unless ( my $pid = fork ) {
$daemon->start();
exit;
}
else {
sleep(1); # Punt on sleep time, 1 seconds should be enough
$Test->ok( $daemon->pidfile->does_file_exist, $msg )
|| $Test->diag(
'Pidfile (' . $daemon->pidfile->file . ') not found.' );
}
}
sub check_test_output {
my ($app) = @_;
open( my $stdout_in, '<', $app->test_output )
or die "can't open test output: $!";
while ( my $line = <$stdout_in> ) {
$line =~ s/\s+\z//;
my $label;
if ( $line =~ /\A(?:(not\s+)?ok)(?:\s+-)(?:\s+(.*))\z/ ) {
my ( $not, $text ) = ( $1, $2, $3 );
$text ||= '';
# We don't just call ok(!$not), because that generates diagnostics of
# its own for failures. We only want the diagnostics from the child.
my $orig_no_diag = $Test->no_diag;
$Test->no_diag(1);
$Test->ok(!$not, $text);
$Test->no_diag($orig_no_diag);
}
elsif ( $line =~ s/\A#\s?// ) {
$Test->diag($line);
}
else {
$Test->diag("$label: $line (unrecognised)\n");
}
}
}
package # hide from PAUSE
Test::MooseX::Daemonize::Testable;
use Moose::Role;
has test_output => (
isa => 'Str',
is => 'ro',
required => 1,
);
after daemonize => sub {
$Test->use_numbers(0);
$Test->no_ending(1);
open my $out, '>', $_[0]->test_output or die "Cannot open test output: $!";
my $fileno = fileno $out;
open STDERR, ">&=", $fileno
or die "Can't redirect STDERR";
open STDOUT, ">&=", $fileno
or die "Can't redirect STDOUT";
$Test->output($out);
$Test->failure_output($out);
$Test->todo_output($out);
};
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Test::MooseX::Daemonize - Tool to help test MooseX::Daemonize applications
=head1 VERSION
version 0.21
=head1 SYNOPSIS
use File::Spec::Functions;
use File::Temp qw(tempdir);
my $dir = tempdir( CLEANUP => 1 );
## Try to make sure we are in the test directory
my $file = catfile( $dir, "im_alive" );
my $daemon = FileMaker->new( pidbase => $dir, filename => $file );
daemonize_ok( $daemon, 'child forked okay' );
ok( -e $file, "$file exists" );
=head1 DESCRIPTION
This module provides some basic L<Test::Builder>-compatible test methods to
use when writing tests for your L<MooseX::Daemonize>-based modules.
=head1 EXPORTED FUNCTIONS
=over 4
=item B<daemonize_ok ( $daemon, ?$msg )>
This will attempt to daemonize your C<$daemon> returning ok on
success and not ok on failure.
=item B<check_test_output ( $daemon )>
This is expected to be used with a C<$daemon> which does the
B<Test::MooseX::Daemonize::Testable> role (included in this package --
see the source for more info). It will collect the test output
from your daemon and apply it in the parent process by mucking
around with L<Test::Builder> stuff, again, read the source for
more info. If we get time we will document this more thoroughly.
=back
=head1 SEE ALSO
L<MooseX::Daemonize>
=head1 SUPPORT
Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-Daemonize>
(or L<bug-MooseX-Daemonize@rt.cpan.org|mailto:bug-MooseX-Daemonize@rt.cpan.org>).
There is also a mailing list available for users of this distribution, at
L<http://lists.perl.org/list/moose.html>.
There is also an irc channel available for users of this distribution, at
L<C<#moose> on C<irc.perl.org>|irc://irc.perl.org/#moose>.
=head1 AUTHORS
=over 4
=item *
Stevan Little <stevan.little@iinteractive.com>
=item *
Chris Prather <chris@prather.org>
=back
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2007 by Chris Prather.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|