about summary refs log tree commit homepage
path: root/t/httpd-https.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-11-24 00:22:31 +0000
committerEric Wong <e@80x24.org>2019-11-24 21:46:49 +0000
commite05912ae3899a0f50a6baf3b6c1892789d24f6b1 (patch)
tree3b031d7478b78b77ae66eaa57360e21f2286f6c1 /t/httpd-https.t
parent8576a48b2344905229737fde45498c80a1171ca5 (diff)
downloadpublic-inbox-e05912ae3899a0f50a6baf3b6c1892789d24f6b1.tar.gz
We can shave several hundred milliseconds off tests which spawn
daemons by preloading and avoiding startup time for common
modules which are already loaded in the parent process.

This also gives ENV{TAIL} support to all tests which support
daemons which log to stdout/stderr.
Diffstat (limited to 't/httpd-https.t')
-rw-r--r--t/httpd-https.t28
1 files changed, 5 insertions, 23 deletions
diff --git a/t/httpd-https.t b/t/httpd-https.t
index 22c62bf4..81a11108 100644
--- a/t/httpd-https.t
+++ b/t/httpd-https.t
@@ -23,14 +23,8 @@ my $psgi = "./t/httpd-corner.psgi";
 my $tmpdir = tempdir('pi-httpd-https-XXXXXX', TMPDIR => 1, CLEANUP => 1);
 my $err = "$tmpdir/stderr.log";
 my $out = "$tmpdir/stdout.log";
-my $httpd = 'blib/script/public-inbox-httpd';
 my $https = tcp_server();
-my ($pid, $tail_pid);
-END {
-        foreach ($pid, $tail_pid) {
-                kill 'TERM', $_ if defined $_;
-        }
-};
+my $td;
 my $https_addr = $https->sockhost . ':' . $https->sockport;
 
 for my $args (
@@ -39,15 +33,9 @@ for my $args (
         for ($out, $err) {
                 open my $fh, '>', $_ or die "truncate: $!";
         }
-        if (my $tail_cmd = $ENV{TAIL}) { # don't assume GNU tail
-                $tail_pid = fork;
-                if (defined $tail_pid && $tail_pid == 0) {
-                        exec(split(' ', $tail_cmd), $out, $err);
-                }
-        }
-        my $cmd = [ $httpd, '-W0', @$args,
+        my $cmd = [ '-httpd', '-W0', @$args,
                         "--stdout=$out", "--stderr=$err", $psgi ];
-        $pid = spawn_listener(undef, $cmd, [ $https ]);
+        $td = start_script($cmd, undef, { 3 => $https });
         my %o = (
                 SSL_hostname => 'server.local',
                 SSL_verifycn_name => 'server.local',
@@ -119,15 +107,9 @@ for my $args (
         };
 
         $c = undef;
-        kill('TERM', $pid);
-        is($pid, waitpid($pid, 0), 'httpd exited successfully');
+        $td->kill;
+        $td->join;
         is($?, 0, 'no error in exited process');
-        $pid = undef;
-        if (defined $tail_pid) {
-                kill 'TERM', $tail_pid;
-                waitpid($tail_pid, 0);
-                $tail_pid = undef;
-        }
 }
 done_testing();
 1;