]> Sergey Matveev's repositories - public-inbox.git/blob - xt/perf-msgview.t
cf550c1a284b80b9dd516444f93302a604bd194d
[public-inbox.git] / xt / perf-msgview.t
1 #!perl -w
2 # Copyright (C) all contributors <meta@public-inbox.org>
3 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 use strict;
5 use v5.10.1;
6 use PublicInbox::TestCommon;
7 use Benchmark qw(:all);
8 use PublicInbox::Inbox;
9 use PublicInbox::View;
10 use PublicInbox::Spawn qw(popen_rd);
11
12 my $inboxdir = $ENV{GIANT_INBOX_DIR} // $ENV{GIANT_PI_DIR};
13 my $blob = $ENV{TEST_BLOB};
14 plan skip_all => "GIANT_INBOX_DIR not defined for $0" unless $inboxdir;
15
16 my @cat = qw(cat-file --buffer --batch-check --batch-all-objects);
17 if (require_git(2.19, 1)) {
18         push @cat, '--unordered';
19 } else {
20         warn
21 "git <2.19, cat-file lacks --unordered, locality suffers\n";
22 }
23 require_mods qw(Plack::Util);
24 my $ibx = PublicInbox::Inbox->new({ inboxdir => $inboxdir, name => 'name' });
25 my $git = $ibx->git;
26 my $fh = $blob ? undef : $git->popen(@cat);
27 if ($fh) {
28         my $vec = '';
29         vec($vec, fileno($fh), 1) = 1;
30         select($vec, undef, undef, 60) or
31                 die "timed out waiting for --batch-check";
32 }
33
34 my $ctx = {
35         env => { HTTP_HOST => 'example.com', 'psgi.url_scheme' => 'https' },
36         ibx => $ibx,
37         www => Plack::Util::inline_object(style => sub {''}),
38 };
39 my ($mime, $res, $oid, $type);
40 my $n = 0;
41 my $obuf = '';
42 my $m = 0;
43
44 my $cb = sub {
45         $mime = PublicInbox::Eml->new(shift);
46         PublicInbox::View::multipart_text_as_html($mime, $ctx);
47         ++$m;
48         $obuf = '';
49 };
50
51 my $t = timeit(1, sub {
52         $ctx->{obuf} = \$obuf;
53         $ctx->{mhref} = '../';
54         if (defined $blob) {
55                 my $nr = $ENV{NR} // 10000;
56                 for (1..$nr) {
57                         ++$n;
58                         $git->cat_async($blob, $cb);
59                 }
60         } else {
61                 while (<$fh>) {
62                         ($oid, $type) = split / /;
63                         next if $type ne 'blob';
64                         ++$n;
65                         $git->cat_async($oid, $cb);
66                 }
67         }
68         $git->async_wait_all;
69 });
70 diag 'multipart_text_as_html took '.timestr($t)." for $n <=> $m messages";
71 is($m, $n, 'rendered all messages');
72 done_testing();