-
Notifications
You must be signed in to change notification settings - Fork 75
/
binary_upgrade.t
94 lines (60 loc) · 1.77 KB
/
binary_upgrade.t
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
#!/usr/bin/perl
# (C) Sergey Kandaurov
# (C) Nginx, Inc.
# Tests for binary upgrade.
###############################################################################
use warnings;
use strict;
use Test::More;
BEGIN { use FindBin; chdir($FindBin::Bin); }
use lib 'lib';
use Test::Nginx;
###############################################################################
select STDERR; $| = 1;
select STDOUT; $| = 1;
plan(skip_all => 'can leave orphaned process group')
unless $ENV{TEST_NGINX_UNSAFE};
my $t = Test::Nginx->new(qr/http unix/)->plan(4)
->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
events {
}
http {
%%TEST_GLOBALS_HTTP%%
server {
listen unix:%%TESTDIR%%/unix.sock;
server_name localhost;
}
}
EOF
my $d = $t->testdir();
$t->run();
###############################################################################
my $pid = $t->read_file('nginx.pid');
ok($pid, 'master pid');
kill 'USR2', $pid;
for (1 .. 30) {
last if -e "$d/nginx.pid" && -e "$d/nginx.pid.oldbin";
select undef, undef, undef, 0.2
}
isnt($t->read_file('nginx.pid'), $pid, 'master pid changed');
kill 'QUIT', $pid;
for (1 .. 30) {
last if ! -e "$d/nginx.pid.oldbin";
select undef, undef, undef, 0.2
}
ok(-e "$d/unix.sock", 'unix socket exists on old master shutdown');
# unix socket on new master termination
$pid = $t->read_file('nginx.pid');
kill 'USR2', $pid;
for (1 .. 30) {
last if -e "$d/nginx.pid" && -e "$d/nginx.pid.oldbin";
select undef, undef, undef, 0.2
}
kill 'TERM', $t->read_file('nginx.pid');
for (1 .. 30) {
last if ! -e "$d/nginx.pid.oldbin";
select undef, undef, undef, 0.2
}
ok(-e "$d/unix.sock", 'unix socket exists on new master termination');
###############################################################################