Remove version number in Pod that perl-reversion doesn't fix
[catagits/Catalyst-Authentication-Credential-OpenID.git] / t / Provider / script / testapp_server.pl
CommitLineData
5f33d3e0 1#!/usr/bin/env perl
2
3BEGIN {
4 $ENV{CATALYST_ENGINE} ||= 'HTTP';
5 $ENV{CATALYST_SCRIPT_GEN} = 39;
6 require Catalyst::Engine::HTTP;
7}
8
9use strict;
10use warnings;
11use Getopt::Long;
12use Pod::Usage;
13use FindBin;
14use lib "$FindBin::Bin/../lib";
15
16my $debug = 0;
17my $fork = 0;
18my $help = 0;
19my $host = undef;
20my $port = $ENV{TESTAPP_PORT} || $ENV{CATALYST_PORT} || 3000;
21my $keepalive = 0;
22my $restart = $ENV{TESTAPP_RELOAD} || $ENV{CATALYST_RELOAD} || 0;
23my $background = 0;
24my $pidfile = undef;
25
26my $check_interval;
27my $file_regex;
28my $watch_directory;
29my $follow_symlinks;
30
31my @argv = @ARGV;
32
33GetOptions(
34 'debug|d' => \$debug,
35 'fork|f' => \$fork,
36 'help|?' => \$help,
37 'host=s' => \$host,
38 'port|p=s' => \$port,
39 'keepalive|k' => \$keepalive,
40 'restart|r' => \$restart,
41 'restartdelay|rd=s' => \$check_interval,
42 'restartregex|rr=s' => \$file_regex,
43 'restartdirectory=s@' => \$watch_directory,
44 'followsymlinks' => \$follow_symlinks,
45 'background' => \$background,
46 'pidfile=s' => \$pidfile,
47);
48
49pod2usage(1) if $help;
50
51if ( $debug ) {
52 $ENV{CATALYST_DEBUG} = 1;
53}
54
55# If we load this here, then in the case of a restarter, it does not
56# need to be reloaded for each restart.
57require Catalyst;
58
59# If this isn't done, then the Catalyst::Devel tests for the restarter
60# fail.
61$| = 1 if $ENV{HARNESS_ACTIVE};
62
63my $runner = sub {
64 # This is require instead of use so that the above environment
65 # variables can be set at runtime.
66 require TestApp;
67
68 TestApp->run(
69 $port, $host,
70 {
71 argv => \@argv,
72 'fork' => $fork,
73 keepalive => $keepalive,
74 background => $background,
75 pidfile => $pidfile,
76 }
77 );
78};
79
80if ( $restart ) {
81 die "Cannot run in the background and also watch for changed files.\n"
82 if $background;
83
84 require Catalyst::Restarter;
85
86 my $subclass = Catalyst::Restarter->pick_subclass;
87
88 my %args;
89 $args{follow_symlinks} = 1
90 if $follow_symlinks;
91 $args{directories} = $watch_directory
92 if defined $watch_directory;
93 $args{sleep_interval} = $check_interval
94 if defined $check_interval;
95 $args{filter} = qr/$file_regex/
96 if defined $file_regex;
97
98 my $restarter = $subclass->new(
99 %args,
100 start_sub => $runner,
101 argv => \@argv,
102 );
103
104 $restarter->run_and_watch;
105}
106else {
107 $runner->();
108}
109
1101;
111
112=head1 NAME
113
114testapp_server.pl - Catalyst Testserver
115
116=head1 SYNOPSIS
117
118testapp_server.pl [options]
119
120 Options:
121 -d -debug force debug mode
122 -f -fork handle each request in a new process
123 (defaults to false)
124 -? -help display this help and exits
125 -host host (defaults to all)
126 -p -port port (defaults to 3000)
127 -k -keepalive enable keep-alive connections
128 -r -restart restart when files get modified
129 (defaults to false)
130 -rd -restartdelay delay between file checks
131 (ignored if you have Linux::Inotify2 installed)
132 -rr -restartregex regex match files that trigger
133 a restart when modified
134 (defaults to '\.yml$|\.yaml$|\.conf|\.pm$')
135 -restartdirectory the directory to search for
136 modified files, can be set mulitple times
137 (defaults to '[SCRIPT_DIR]/..')
138 -follow_symlinks follow symlinks in search directories
139 (defaults to false. this is a no-op on Win32)
140 -background run the process in the background
141 -pidfile specify filename for pid file
142
143 See also:
144 perldoc Catalyst::Manual
145 perldoc Catalyst::Manual::Intro
146
147=head1 DESCRIPTION
148
149Run a Catalyst Testserver for this application.
150
151=head1 AUTHORS
152
153Catalyst Contributors, see Catalyst.pm
154
155=head1 COPYRIGHT
156
157This library is free software. You can redistribute it and/or modify
158it under the same terms as Perl itself.
159
160=cut