494be445e0d07d38ea25a9b74d6498e9fd58ecbb
[catagits/FCGI-ProcManager.git] / t / exporter.t
1 # -*- perl -*-
2 # Copyright (c) 2000, FundsXpress Financial Network, Inc.
3 # This library is free software released "AS IS WITH ALL FAULTS"
4 # and WITHOUT ANY WARRANTIES under the terms of the GNU Lesser
5 # General Public License, Version 2.1, a copy of which can be
6 # found in the "COPYING" file of this distribution.
7
8 # $Id: exporter.t,v 1.5 2001/02/09 16:16:13 muaddie Exp $
9
10 use strict;
11 use Test;
12
13 BEGIN { plan tests => 4; }
14
15 use FCGI::ProcManager qw(:all);
16
17 ok pm_parameter('n_processes',100) == 100;
18 ok pm_parameter('n_processes',2) == 2;
19 ok pm_parameter('n_processes',0) == 0;
20
21 ok pm_manage();
22
23 #ok pm_parameter('n_processes',-3);
24 #eval { pm_manage(); };
25 #ok $@ =~ /dying from number of processes exception: -3/;
26 #undef $@;
27
28 if ($ENV{PM_N_PROCESSES}) {
29   pm_parameter('n_processes',$ENV{PM_N_PROCESSES});
30   pm_manage();
31   sample_request_loop();
32 }
33
34 exit 0;
35
36 sub sample_request_loop {
37
38   while (1) {
39     # Simulate blocking for a request.
40     my $t1 = int(rand(2)+1);
41     print "TEST: simulating blocking for request: $t1 seconds.\n";
42     sleep $t1;
43     # (Here is where accept-fail-on-intr would exit request loop.)
44
45     pm_pre_dispatch();
46
47     # Simulate a request dispatch.
48     my $t = int(rand(3)+2);
49     print "TEST: simulating request: sleeping $t seconds.\n";
50     while (my $nslept = sleep $t) {
51       $t -= $nslept;
52       last unless $t;
53     }
54
55     pm_post_dispatch();
56   }
57 }