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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874
|
package Test::Nginx::Util;
use strict;
use warnings;
our $VERSION = '0.17';
use base 'Exporter';
use POSIX qw( SIGQUIT SIGKILL SIGTERM );
use File::Spec ();
use HTTP::Response;
use Cwd qw( cwd );
use List::Util qw( shuffle );
use Time::HiRes qw( sleep );
use ExtUtils::MakeMaker ();
our $LatestNginxVersion = 0.008039;
our $NoNginxManager = $ENV{TEST_NGINX_NO_NGINX_MANAGER} || 0;
our $Profiling = 0;
our $RepeatEach = 1;
our $MAX_PROCESSES = 10;
our $NoShuffle = $ENV{TEST_NGINX_NO_SHUFFLE} || 0;
our $UseValgrind = $ENV{TEST_NGINX_USE_VALGRIND};
our $EventType = $ENV{TEST_NGINX_EVENT_TYPE};
sub no_shuffle () {
$NoShuffle = 1;
}
sub no_nginx_manager () {
$NoNginxManager = 1;
}
our $ForkManager;
if ($Profiling || $UseValgrind) {
eval "use Parallel::ForkManager";
if ($@) {
die "Failed to load Parallel::ForkManager: $@\n";
}
$ForkManager = new Parallel::ForkManager($MAX_PROCESSES);
}
our $NginxBinary = $ENV{TEST_NGINX_BINARY} || 'nginx';
our $Workers = 1;
our $WorkerConnections = 64;
our $LogLevel = $ENV{TEST_NGINX_LOG_LEVEL} || 'debug';
our $MasterProcessEnabled = $ENV{TEST_NGINX_MASTER_PROCESS} || 'off';
our $DaemonEnabled = 'on';
our $ServerPort = $ENV{TEST_NGINX_SERVER_PORT} || $ENV{TEST_NGINX_PORT} || 1984;
our $ServerPortForClient = $ENV{TEST_NGINX_CLIENT_PORT} || $ENV{TEST_NGINX_PORT} || 1984;
our $NoRootLocation = 0;
our $TestNginxSleep = $ENV{TEST_NGINX_SLEEP} || 0;
our $BuildSlaveName = $ENV{TEST_NGINX_BUILDSLAVE};
our $ForceRestartOnTest = (defined $ENV{TEST_NGINX_FORCE_RESTART_ON_TEST})
? $ENV{TEST_NGINX_FORCE_RESTART_ON_TEST} : 1;
sub server_port (@) {
if (@_) {
$ServerPort = shift;
} else {
$ServerPort;
}
}
sub repeat_each (@) {
if (@_) {
$RepeatEach = shift;
} else {
return $RepeatEach;
}
}
sub worker_connections (@) {
if (@_) {
$WorkerConnections = shift;
} else {
return $WorkerConnections;
}
}
sub no_root_location () {
$NoRootLocation = 1;
}
sub workers (@) {
if (@_) {
#warn "setting workers to $_[0]";
$Workers = shift;
} else {
return $Workers;
}
}
sub log_level (@) {
if (@_) {
$LogLevel = shift;
} else {
return $LogLevel;
}
}
sub master_on () {
$MasterProcessEnabled = 'on';
}
sub master_process_enabled (@) {
if (@_) {
$MasterProcessEnabled = shift() ? 'on' : 'off';
} else {
return $MasterProcessEnabled;
}
}
our @EXPORT_OK = qw(
setup_server_root
write_config_file
get_canon_version
get_nginx_version
trim
show_all_chars
parse_headers
run_tests
$ServerPortForClient
$ServerPort
$NginxVersion
$PidFile
$ServRoot
$ConfFile
$RunTestHelper
$NoNginxManager
$RepeatEach
worker_connections
workers
master_on
config_preamble
repeat_each
master_process_enabled
log_level
no_shuffle
no_root_location
html_dir
server_root
server_port
no_nginx_manager
);
if ($Profiling || $UseValgrind) {
$DaemonEnabled = 'off';
$MasterProcessEnabled = 'off';
}
our $ConfigPreamble = '';
sub config_preamble ($) {
$ConfigPreamble = shift;
}
our $RunTestHelper;
our $NginxVersion;
our $NginxRawVersion;
our $TODO;
#our ($PrevRequest)
our $PrevConfig;
our $ServRoot = $ENV{TEST_NGINX_SERVROOT} || File::Spec->catfile(cwd() || '.', 't/servroot');
our $LogDir = File::Spec->catfile($ServRoot, 'logs');
our $ErrLogFile = File::Spec->catfile($LogDir, 'error.log');
our $AccLogFile = File::Spec->catfile($LogDir, 'access.log');
our $HtmlDir = File::Spec->catfile($ServRoot, 'html');
our $ConfDir = File::Spec->catfile($ServRoot, 'conf');
our $ConfFile = File::Spec->catfile($ConfDir, 'nginx.conf');
our $PidFile = File::Spec->catfile($LogDir, 'nginx.pid');
sub html_dir () {
return $HtmlDir;
}
sub server_root () {
return $ServRoot;
}
sub bail_out ($) {
Test::More::BAIL_OUT(@_);
}
sub run_tests () {
$NginxVersion = get_nginx_version();
if (defined $NginxVersion) {
#warn "[INFO] Using nginx version $NginxVersion ($NginxRawVersion)\n";
}
for my $block ($NoShuffle ? Test::Base::blocks() : shuffle Test::Base::blocks()) {
#for (1..3) {
run_test($block);
#}
}
if ($Profiling || $UseValgrind) {
$ForkManager->wait_all_children;
}
}
sub setup_server_root () {
if (-d $ServRoot) {
# Take special care, so we won't accidentally remove
# real user data when TEST_NGINX_SERVROOT is mis-used.
system("rm -rf $ConfDir > /dev/null") == 0 or
die "Can't remove $ConfDir";
system("rm -rf $HtmlDir > /dev/null") == 0 or
die "Can't remove $HtmlDir";
system("rm -rf $LogDir > /dev/null") == 0 or
die "Can't remove $LogDir";
system("rm -rf $ServRoot/*_temp > /dev/null") == 0 or
die "Can't remove $ServRoot/*_temp";
system("rmdir $ServRoot > /dev/null") == 0 or
die "Can't remove $ServRoot (not empty?)";
}
mkdir $ServRoot or
die "Failed to do mkdir $ServRoot\n";
mkdir $LogDir or
die "Failed to do mkdir $LogDir\n";
mkdir $HtmlDir or
die "Failed to do mkdir $HtmlDir\n";
my $index_file = "$HtmlDir/index.html";
open my $out, ">$index_file" or
die "Can't open $index_file for writing: $!\n";
print $out '<html><head><title>It works!</title></head><body>It works!</body></html>';
close $out;
mkdir $ConfDir or
die "Failed to do mkdir $ConfDir\n";
}
sub write_user_files ($) {
my $block = shift;
my $name = $block->name;
if ($block->user_files) {
my $raw = $block->user_files;
open my $in, '<', \$raw;
my @files;
my ($fname, $body, $date);
while (<$in>) {
if (/>>> (\S+)(?:\s+(.+))?/) {
if ($fname) {
push @files, [$fname, $body, $date];
}
$fname = $1;
$date = $2;
undef $body;
} else {
$body .= $_;
}
}
if ($fname) {
push @files, [$fname, $body, $date];
}
for my $file (@files) {
my ($fname, $body, $date) = @$file;
#warn "write file $fname with content [$body]\n";
if (!defined $body) {
$body = '';
}
if ($fname =~ /(.*)\//) {
my $dir = "$HtmlDir/$1";
if (! -d $dir) {
mkdir $dir or die "$name - Cannot create directory ", $dir;
}
}
open my $out, ">$HtmlDir/$fname" or
die "$name - Cannot open $HtmlDir/$fname for writing: $!\n";
print $out $body;
close $out;
if ($date) {
my $cmd = "touch -t '$date' $HtmlDir/$fname";
system($cmd) == 0 or
die "Failed to run shell command: $cmd\n";
}
}
}
}
sub write_config_file ($$$) {
my ($config, $http_config, $main_config) = @_;
$http_config = expand_env_in_config($http_config);
if (!defined $config) {
$config = '';
}
if (!defined $http_config) {
$http_config = '';
}
if (!defined $main_config) {
$main_config = '';
}
open my $out, ">$ConfFile" or
die "Can't open $ConfFile for writing: $!\n";
print $out <<_EOC_;
worker_processes $Workers;
daemon $DaemonEnabled;
master_process $MasterProcessEnabled;
error_log $ErrLogFile $LogLevel;
pid $PidFile;
$main_config
http {
access_log $AccLogFile;
default_type text/plain;
keepalive_timeout 68;
$http_config
server {
listen $ServerPort;
server_name 'localhost';
client_max_body_size 30M;
#client_body_buffer_size 4k;
# Begin preamble config...
$ConfigPreamble
# End preamble config...
# Begin test case config...
$config
# End test case config.
_EOC_
if (! $NoRootLocation) {
print $out <<_EOC_;
location / {
root $HtmlDir;
index index.html index.htm;
}
_EOC_
}
print $out <<_EOC_;
}
}
events {
worker_connections $WorkerConnections;
_EOC_
if ($EventType) {
print $out <<_EOC_;
use $EventType;
_EOC_
}
print $out "}\n";
close $out;
}
sub get_canon_version (@) {
sprintf "%d.%03d%03d", $_[0], $_[1], $_[2];
}
sub get_nginx_version () {
my $out = `$NginxBinary -V 2>&1`;
if (!defined $out || $? != 0) {
warn "Failed to get the version of the Nginx in PATH.\n";
}
if ($out =~ m{(?:nginx|ngx_openresty)/(\d+)\.(\d+)\.(\d+)}s) {
$NginxRawVersion = "$1.$2.$3";
return get_canon_version($1, $2, $3);
}
warn "Failed to parse the output of \"nginx -V\": $out\n";
return undef;
}
sub get_pid_from_pidfile ($) {
my ($name) = @_;
open my $in, $PidFile or
bail_out("$name - Failed to open the pid file $PidFile for reading: $!");
my $pid = do { local $/; <$in> };
chomp $pid;
#warn "Pid: $pid\n";
close $in;
return $pid;
}
sub trim ($) {
(my $s = shift) =~ s/^\s+|\s+$//g;
$s =~ s/\n/ /gs;
$s =~ s/\s{2,}/ /gs;
$s;
}
sub show_all_chars ($) {
my $s = shift;
$s =~ s/\n/\\n/gs;
$s =~ s/\r/\\r/gs;
$s =~ s/\t/\\t/gs;
$s;
}
sub parse_headers ($) {
my $s = shift;
my %headers;
open my $in, '<', \$s;
while (<$in>) {
s/^\s+|\s+$//g;
my $neg = ($_ =~ s/^!\s*//);
#warn "neg: $neg ($_)";
if ($neg) {
$headers{$_} = undef;
} else {
my ($key, $val) = split /\s*:\s*/, $_, 2;
$headers{$key} = $val;
}
}
close $in;
return \%headers;
}
sub expand_env_in_config ($) {
my $config = shift;
if (!defined $config) {
return;
}
$config =~ s/\$(TEST_NGINX_[_A-Z0-9]+)/
if (!defined $ENV{$1}) {
bail_out "No environment $1 defined.\n";
}
$ENV{$1}/eg;
$config;
}
sub check_if_missing_directives () {
open my $in, $ErrLogFile or
bail_out "check_if_missing_directives: Cannot open $ErrLogFile for reading: $!\n";
while (<$in>) {
#warn $_;
if (/\[emerg\] \S+?: unknown directive "([^"]+)"/) {
#warn "MATCHED!!! $1";
return $1;
}
}
close $in;
#warn "NOT MATCHED!!!";
return 0;
}
sub run_test ($) {
my $block = shift;
my $name = $block->name;
my $config = $block->config;
$config = expand_env_in_config($config);
my $dry_run = 0;
my $should_restart = 1;
my $should_reconfig = 1;
if (!defined $config) {
if (!$NoNginxManager) {
# Manager without config.
if (!defined $PrevConfig) {
bail_out("$name - No '--- config' section specified and could not get previous one. Use TEST_NGINX_NO_NGINX_MANAGER ?");
die;
}
$should_reconfig = 0; # There is nothing to reconfig to.
$should_restart = $ForceRestartOnTest;
}
# else: not manager without a config. This is not a problem at all.
# setting these values to something meaningful but should not be used
$should_restart = 0;
$should_reconfig = 0;
} elsif ($NoNginxManager) {
# One config but not manager: it's worth a warning.
Test::Base::diag("NO_NGINX_MANAGER activated: config for $name ignored");
# Like above: setting them to something meaningful just in case.
$should_restart = 0;
$should_reconfig = 0;
} else {
# One config and manager. Restart only if forced to or if config
# changed.
if ((!defined $PrevConfig) || ($config ne $PrevConfig)) {
$should_reconfig = 1;
} else {
$should_reconfig = 0;
}
if ($should_reconfig || $ForceRestartOnTest) {
$should_restart = 1;
} else {
$should_restart = 0;
}
}
my $skip_nginx = $block->skip_nginx;
my $skip_nginx2 = $block->skip_nginx2;
my $skip_slave = $block->skip_slave;
my ($tests_to_skip, $should_skip, $skip_reason);
if (defined $skip_nginx) {
if ($skip_nginx =~ m{
^ \s* (\d+) \s* : \s*
([<>]=?) \s* (\d+)\.(\d+)\.(\d+)
(?: \s* : \s* (.*) )?
\s*$}x) {
$tests_to_skip = $1;
my ($op, $ver1, $ver2, $ver3) = ($2, $3, $4, $5);
$skip_reason = $6;
#warn "$ver1 $ver2 $ver3";
my $ver = get_canon_version($ver1, $ver2, $ver3);
if ((!defined $NginxVersion and $op =~ /^</)
or eval "$NginxVersion $op $ver")
{
$should_skip = 1;
}
} else {
bail_out("$name - Invalid --- skip_nginx spec: " .
$skip_nginx);
die;
}
} elsif (defined $skip_nginx2) {
if ($skip_nginx2 =~ m{
^ \s* (\d+) \s* : \s*
([<>]=?) \s* (\d+)\.(\d+)\.(\d+)
\s* (or|and) \s*
([<>]=?) \s* (\d+)\.(\d+)\.(\d+)
(?: \s* : \s* (.*) )?
\s*$}x) {
$tests_to_skip = $1;
my ($opa, $ver1a, $ver2a, $ver3a) = ($2, $3, $4, $5);
my $opx = $6;
my ($opb, $ver1b, $ver2b, $ver3b) = ($7, $8, $9, $10);
$skip_reason = $11;
my $vera = get_canon_version($ver1a, $ver2a, $ver3a);
my $verb = get_canon_version($ver1b, $ver2b, $ver3b);
if ((!defined $NginxVersion)
or (($opx eq "or") and (eval "$NginxVersion $opa $vera"
or eval "$NginxVersion $opb $verb"))
or (($opx eq "and") and (eval "$NginxVersion $opa $vera"
and eval "$NginxVersion $opb $verb")))
{
$should_skip = 1;
}
} else {
bail_out("$name - Invalid --- skip_nginx2 spec: " .
$skip_nginx2);
die;
}
} elsif (defined $skip_slave and defined $BuildSlaveName) {
if ($skip_slave =~ m{
^ \s* (\d+) \s* : \s*
(\w+) \s* (?: (\w+) \s* )? (?: (\w+) \s* )?
(?: \s* : \s* (.*) )? \s*$}x)
{
$tests_to_skip = $1;
my ($slave1, $slave2, $slave3) = ($2, $3, $4);
$skip_reason = $5;
if ((defined $slave1 and $slave1 eq "all")
or (defined $slave1 and $slave1 eq $BuildSlaveName)
or (defined $slave2 and $slave2 eq $BuildSlaveName)
or (defined $slave3 and $slave3 eq $BuildSlaveName)
)
{
$should_skip = 1;
}
} else {
bail_out("$name - Invalid --- skip_slave spec: " .
$skip_slave);
die;
}
}
if (!defined $skip_reason) {
$skip_reason = "various reasons";
}
my $todo_nginx = $block->todo_nginx;
my ($should_todo, $todo_reason);
if (defined $todo_nginx) {
if ($todo_nginx =~ m{
^ \s*
([<>]=?) \s* (\d+)\.(\d+)\.(\d+)
(?: \s* : \s* (.*) )?
\s*$}x) {
my ($op, $ver1, $ver2, $ver3) = ($1, $2, $3, $4);
$todo_reason = $5;
my $ver = get_canon_version($ver1, $ver2, $ver3);
if ((!defined $NginxVersion and $op =~ /^</)
or eval "$NginxVersion $op $ver")
{
$should_todo = 1;
}
} else {
bail_out("$name - Invalid --- todo_nginx spec: " .
$todo_nginx);
die;
}
}
if (!defined $todo_reason) {
$todo_reason = "various reasons";
}
if (!$NoNginxManager && !$should_skip && $should_restart) {
if ($should_reconfig) {
$PrevConfig = $config;
}
my $nginx_is_running = 1;
if (-f $PidFile) {
my $pid = get_pid_from_pidfile($name);
if (!defined $pid or $pid eq '') {
undef $nginx_is_running;
goto start_nginx;
}
if (system("ps $pid > /dev/null") == 0) {
#warn "found running nginx...";
write_config_file($config, $block->http_config, $block->main_config);
if (kill(SIGQUIT, $pid) == 0) { # send quit signal
#warn("$name - Failed to send quit signal to the nginx process with PID $pid");
}
sleep 0.02;
if (system("ps $pid > /dev/null") == 0) {
#warn "killing with force...\n";
kill(SIGKILL, $pid);
sleep 0.02;
}
undef $nginx_is_running;
} else {
unlink $PidFile or
die "Failed to remove pid file $PidFile\n";
undef $nginx_is_running;
}
} else {
undef $nginx_is_running;
}
start_nginx:
unless ($nginx_is_running) {
#system("killall -9 nginx");
#warn "*** Restarting the nginx server...\n";
setup_server_root();
write_user_files($block);
write_config_file($config, $block->http_config, $block->main_config);
#warn "nginx binary: $NginxBinary";
if ( ! can_run($NginxBinary) ) {
bail_out("$name - Cannot find the nginx executable in the PATH environment");
die;
}
#if (system("nginx -p $ServRoot -c $ConfFile -t") != 0) {
#Test::More::BAIL_OUT("$name - Invalid config file");
#}
#my $cmd = "nginx -p $ServRoot -c $ConfFile > /dev/null";
if (!defined $NginxVersion) {
$NginxVersion = $LatestNginxVersion;
}
my $cmd;
if ($NginxVersion >= 0.007053) {
$cmd = "$NginxBinary -p $ServRoot/ -c $ConfFile > /dev/null";
} else {
$cmd = "$NginxBinary -c $ConfFile > /dev/null";
}
if ($UseValgrind) {
if (-f 'valgrind.suppress') {
$cmd = "valgrind -q --leak-check=full --gen-suppressions=all --suppressions=valgrind.suppress $cmd";
} else {
$cmd = "valgrind -q --leak-check=full --gen-suppressions=all $cmd";
}
warn "$name\n";
#warn "$cmd\n";
}
if ($Profiling || $UseValgrind) {
my $pid = $ForkManager->start;
if (!$pid) {
# child process
exec $cmd;
=begin cmt
if (system($cmd) != 0) {
Test::More::BAIL_OUT("$name - Cannot start nginx using command \"$cmd\".");
}
$ForkManager->finish; # terminate the child process
=end cmt
=cut
}
#warn "sleeping";
if ($TestNginxSleep) {
sleep $TestNginxSleep;
} else {
sleep 1;
}
} else {
if (system($cmd) != 0) {
if ($ENV{TEST_NGINX_IGNORE_MISSING_DIRECTIVES} and
my $directive = check_if_missing_directives())
{
$dry_run = $directive;
} else {
bail_out("$name - Cannot start nginx using command \"$cmd\".");
}
}
}
sleep 0.1;
}
}
if ($block->init) {
eval $block->init;
if ($@) {
bail_out("$name - init failed: $@");
}
}
my $i = 0;
while ($i++ < $RepeatEach) {
if ($should_skip) {
SKIP: {
Test::More::skip("$name - $skip_reason", $tests_to_skip);
$RunTestHelper->($block, $dry_run);
}
} elsif ($should_todo) {
TODO: {
local $TODO = "$name - $todo_reason";
$RunTestHelper->($block, $dry_run);
}
} else {
$RunTestHelper->($block, $dry_run);
}
}
if (my $total_errlog = $ENV{TEST_NGINX_ERROR_LOG}) {
my $errlog = "$LogDir/error.log";
if (-s $errlog) {
open my $out, ">>$total_errlog" or
die "Failed to append test case title to $total_errlog: $!\n";
print $out "\n=== $0 $name\n";
close $out;
system("cat $errlog >> $total_errlog") == 0 or
die "Failed to append $errlog to $total_errlog. Abort.\n";
}
}
if ($Profiling || $UseValgrind) {
#warn "Found quit...";
if (-f $PidFile) {
#warn "found pid file...";
my $pid = get_pid_from_pidfile($name);
if (system("ps $pid > /dev/null") == 0) {
write_config_file($config, $block->http_config, $block->main_config);
if (kill(SIGQUIT, $pid) == 0) { # send quit signal
warn("$name - Failed to send quit signal to the nginx process with PID $pid");
}
if ($TestNginxSleep) {
sleep $TestNginxSleep;
} else {
sleep 0.1;
}
if (-f $PidFile) {
#warn "killing with force (valgrind or profile)...\n";
kill(SIGKILL, $pid);
sleep 0.02;
} else {
#warn "nginx killed";
}
} else {
unlink $PidFile or
die "Failed to remove pid file $PidFile\n";
}
} else {
#warn "pid file not found";
}
}
}
END {
if ($UseValgrind || !$ENV{TEST_NGINX_NO_CLEAN}) {
local $?; # to avoid confusing Test::Builder::_ending
if (-f $PidFile) {
my $pid = get_pid_from_pidfile('');
if (!$pid) {
die "No pid found.";
}
if (system("ps $pid > /dev/null") == 0) {
if (kill(SIGQUIT, $pid) == 0) { # send quit signal
#warn("Failed to send quit signal to the nginx process with PID $pid");
}
if ($TestNginxSleep) {
sleep $TestNginxSleep;
} else {
sleep 0.02;
}
if (system("ps $pid > /dev/null") == 0) {
#warn "killing with force...\n";
kill(SIGKILL, $pid);
sleep 0.02;
}
} else {
unlink $PidFile;
}
}
}
}
# check if we can run some command
sub can_run {
my ($cmd) = @_;
#warn "can run: @_\n";
my $_cmd = $cmd;
return $_cmd if (-x $_cmd or $_cmd = MM->maybe_command($_cmd));
for my $dir ((split /$Config::Config{path_sep}/, $ENV{PATH}), '.') {
next if $dir eq '';
my $abs = File::Spec->catfile($dir, $_[0]);
return $abs if (-x $abs or $abs = MM->maybe_command($abs));
}
return;
}
1;
|