b0f21eb08efd10c6eccf52787c74a1558ba82b53
[catagits/FCGI-ProcManager.git] / t / procmanager.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: procmanager.t,v 1.8 2001/02/09 16:16:13 muaddie Exp $
9
10 use strict;
11 use Test;
12
13 BEGIN { plan tests => 5; }
14
15 use FCGI::ProcManager;
16
17 my $m;
18
19 ok $m = FCGI::ProcManager->new();
20
21 ok $m->n_processes(100) == 100;
22 ok $m->n_processes(2) == 2;
23 ok $m->n_processes(0) == 0;
24
25 ok $m->pm_manage();
26
27 #ok $m->n_processes(-3);
28 #eval { $m->pm_manage(); };
29 #ok $@ =~ /dying from number of processes exception: -3/;
30 #undef $@;
31
32 if ($ENV{PM_N_PROCESSES}) {
33   $m->n_processes($ENV{PM_N_PROCESSES});
34   $m->pm_manage();
35   sample_request_loop($m);
36 }
37
38 exit 0;
39
40 sub sample_request_loop {
41   my ($m) = @_;
42
43   while (1) {
44     # Simulate blocking for a request.
45     my $t1 = int(rand(2)+2);
46     print "TEST: simulating blocking for request: $t1 seconds.\n";
47     sleep $t1;
48     # (Here is where accept-fail-on-intr would exit request loop.)
49
50     $m->pm_pre_dispatch();
51
52     # Simulate a request dispatch.
53     my $t = int(rand(3)+2);
54     print "TEST: simulating new request: $t seconds.\n";
55     while (my $nslept = sleep $t) {
56       $t -= $nslept;
57       last unless $t;
58     }
59
60     $m->pm_post_dispatch();
61   }
62 }