]> Sergey Matveev's repositories - public-inbox.git/blob - t/httpd-unix.t
t/httpd-unix: improve test reliability
[public-inbox.git] / t / httpd-unix.t
1 # Copyright (C) 2016-2020 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3 # Tests for binding Unix domain sockets
4 use strict;
5 use warnings;
6 use Test::More;
7 use PublicInbox::TestCommon;
8 use Errno qw(EADDRINUSE);
9 use Cwd qw(abs_path);
10 use Carp qw(croak);
11 require_mods(qw(Plack::Util Plack::Builder HTTP::Date HTTP::Status));
12 use IO::Socket::UNIX;
13 my ($tmpdir, $for_destroy) = tmpdir();
14 my $unix = "$tmpdir/unix.sock";
15 my $psgi = './t/httpd-corner.psgi';
16 my $out = "$tmpdir/out.log";
17 my $err = "$tmpdir/err.log";
18 my $td;
19
20 my $spawn_httpd = sub {
21         my (@args) = @_;
22         my $cmd = [ '-httpd', @args, "--stdout=$out", "--stderr=$err", $psgi ];
23         $td = start_script($cmd);
24 };
25
26 {
27         require PublicInbox::Daemon;
28         my $l = "$tmpdir/named.sock";
29         my $s = IO::Socket::UNIX->new(Listen => 5, Local => $l,
30                                         Type => SOCK_STREAM);
31         is(PublicInbox::Daemon::sockname($s), $l, 'sockname works for UNIX');
32 }
33
34 ok(!-S $unix, 'UNIX socket does not exist, yet');
35 $spawn_httpd->("-l$unix", '-W0');
36 my %o = (Peer => $unix, Type => SOCK_STREAM);
37 for (1..1000) {
38         last if -S $unix && IO::Socket::UNIX->new(%o);
39         select undef, undef, undef, 0.02
40 }
41
42 ok(-S $unix, 'UNIX socket was bound by -httpd');
43 sub check_sock ($) {
44         my ($unix) = @_;
45         my $sock = IO::Socket::UNIX->new(Peer => $unix, Type => SOCK_STREAM);
46         warn "E: $! connecting to $unix\n" unless defined $sock;
47         ok($sock, 'client UNIX socket connected');
48         ok($sock->write("GET /host-port HTTP/1.0\r\n\r\n"),
49                 'wrote req to server');
50         ok($sock->read(my $buf, 4096), 'read response');
51         like($buf, qr!\r\n\r\n127\.0\.0\.1:0\z!,
52                 'set REMOTE_ADDR and REMOTE_PORT for Unix socket');
53 }
54
55 check_sock($unix);
56
57 { # do not clobber existing socket
58         my %err = ( 'linux' => EADDRINUSE, 'freebsd' => EADDRINUSE );
59         open my $out, '>>', "$tmpdir/1" or die "redirect failed: $!";
60         open my $err, '>>', "$tmpdir/2" or die "redirect failed: $!";
61         my $cmd = ['-httpd', '-l', $unix, '-W0', $psgi];
62         my $ftd = start_script($cmd, undef, { 1 => $out, 2 => $err });
63         $ftd->join;
64         isnt($?, 0, 'httpd failure set $?');
65         SKIP: {
66                 my $ec = $err{$^O} or
67                         skip("not sure if $^O fails with EADDRINUSE", 1);
68                 is($? >> 8, $ec, 'httpd failed with EADDRINUSE');
69         };
70         open my $fh, "$tmpdir/2" or die "failed to open $tmpdir/2: $!";
71         local $/;
72         my $e = <$fh>;
73         like($e, qr/no listeners bound/i, 'got error message');
74         is(-s "$tmpdir/1", 0, 'stdout was empty');
75 }
76
77 {
78         is($td->kill, 1, 'terminate existing process');
79         $td->join;
80         is($?, 0, 'existing httpd exited successfully');
81         ok(-S $unix, 'unix socket still exists');
82 }
83
84 sub delay_until {
85         my $cond = shift;
86         for (1..1000) {
87                 return if $cond->();
88                 select undef, undef, undef, 0.012;
89         }
90         Carp::croak('condition failed');
91 }
92
93 SKIP: {
94         require_mods('Net::Server::Daemonize', 20);
95         my $pid_file = "$tmpdir/pid";
96         my $read_pid = sub {
97                 my $f = shift;
98                 open my $fh, '<', $f or die "open $f failed: $!";
99                 my $pid = do { local $/; <$fh> };
100                 chomp($pid) or die("pid file not ready $!");
101                 $pid;
102         };
103
104         for my $w (qw(-W0 -W1)) {
105                 # wait for daemonization
106                 $spawn_httpd->("-l$unix", '-D', '-P', $pid_file, $w);
107                 $td->join;
108                 is($?, 0, "daemonized $w process");
109                 check_sock($unix);
110                 ok(-s $pid_file, "$w pid file written");
111                 my $pid = $read_pid->($pid_file);
112                 is(kill('TERM', $pid), 1, "signaled daemonized $w process");
113                 delay_until(sub { !kill(0, $pid) });
114                 is(kill(0, $pid), 0, "daemonized $w process exited");
115                 ok(!-e $pid_file, "$w pid file unlinked at exit");
116         }
117
118         # try a USR2 upgrade with workers:
119         my $httpd = abs_path('blib/script/public-inbox-httpd');
120         $psgi = abs_path($psgi);
121         my $opt = { run_mode => 0 };
122
123         my @args = ("-l$unix", '-D', '-P', $pid_file, -1, $out, -2, $err);
124         $td = start_script([$httpd, @args, $psgi], undef, $opt);
125         $td->join;
126         is($?, 0, "daemonized process again");
127         check_sock($unix);
128         ok(-s $pid_file, 'pid file written');
129         my $pid = $read_pid->($pid_file);
130
131         # stop worker to ensure check_sock below hits $new_pid
132         kill('TTOU', $pid) or die "TTOU failed: $!";
133
134         kill('USR2', $pid) or die "USR2 failed: $!";
135         delay_until(sub {
136                 $pid != (eval { $read_pid->($pid_file) } // $pid)
137         });
138         my $new_pid = $read_pid->($pid_file);
139         isnt($new_pid, $pid, 'new child started');
140         delay_until(sub { -s "$pid_file.oldbin" });
141         my $old_pid = $read_pid->("$pid_file.oldbin");
142         is($old_pid, $pid, '.oldbin pid file written');
143
144         check_sock($unix); # ensures $new_pid is ready to receive signals
145
146         # first, back out of the upgrade
147         kill('QUIT', $new_pid) or die "kill new PID failed: $!";
148         delay_until(sub {
149                 $pid == (eval { $read_pid->($pid_file) } // 0)
150         });
151         is($read_pid->($pid_file), $pid, 'old PID file restored');
152         ok(!-f "$pid_file.oldbin", '.oldbin PID file gone');
153
154         # retry USR2 upgrade
155         kill('USR2', $pid) or die "USR2 failed: $!";
156         delay_until(sub {
157                 $pid != (eval { $read_pid->($pid_file) } // $pid)
158         });
159         $new_pid = $read_pid->($pid_file);
160         isnt($new_pid, $pid, 'new child started again');
161         $old_pid = $read_pid->("$pid_file.oldbin");
162         is($old_pid, $pid, '.oldbin pid file written');
163
164         # drop the old parent
165         kill('QUIT', $old_pid) or die "QUIT failed: $!";
166         delay_until(sub { !kill(0, $old_pid) });
167         ok(!-f "$pid_file.oldbin", '.oldbin PID file gone');
168
169         # drop the new child
170         check_sock($unix);
171         kill('QUIT', $new_pid) or die "QUIT failed: $!";
172         delay_until(sub { !kill(0, $new_pid) });
173         ok(!-f $pid_file, 'PID file is gone');
174
175
176         # try USR2 without workers (-W0)
177         $td = start_script([$httpd, @args, '-W0', $psgi], undef, $opt);
178         $td->join;
179         is($?, 0, 'daemonized w/o workers');
180         check_sock($unix);
181         $pid = $read_pid->($pid_file);
182
183         # replace running process
184         kill('USR2', $pid) or die "USR2 failed: $!";
185         delay_until(sub { !kill(0, $pid) });
186
187         check_sock($unix);
188         $pid = $read_pid->($pid_file);
189         kill('QUIT', $pid) or die "USR2 failed: $!";
190         delay_until(sub { !kill(0, $pid) });
191         ok(!-f $pid_file, 'PID file is gone');
192 }
193
194 done_testing();