Merge branch 'srand'
[catagits/FCGI-ProcManager.git] / t / procmanager_constrained.pm
CommitLineData
e477c0bb 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.9 2001/04/23 16:13:45 muaddie Exp $
9
10use strict;
11use Test;
12
13BEGIN { plan tests => 5; }
14
15use FCGI::ProcManager::Constrained;
16
17my $m;
18
19ok $m = FCGI::ProcManager::Constrained->new();
20
21ok $m->n_processes(100) == 100;
22ok $m->n_processes(2) == 2;
23ok $m->n_processes(0) == 0;
24
25ok !$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
32if ($ENV{PM_N_PROCESSES}) {
33 $m->n_processes($ENV{PM_N_PROCESSES});
34 $m->pm_manage();
35 sample_request_loop($m);
36}
37
38exit 0;
39
40sub 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}