2 # Copyright (C) 2021 all contributors <meta@public-inbox.org>
3 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
6 use PublicInbox::TestCommon;
7 use Benchmark qw(:all);
8 use PublicInbox::Inbox;
11 my $inboxdir = $ENV{GIANT_INBOX_DIR};
12 plan skip_all => "GIANT_INBOX_DIR not defined for $0" unless $inboxdir;
14 my $obfuscate = $ENV{PI_OBFUSCATE} ? 1 : 0;
15 diag "obfuscate=$obfuscate\n";
17 my @cat = qw(cat-file --buffer --batch-check --batch-all-objects);
18 if (require_git(2.19, 1)) {
19 push @cat, '--unordered';
22 "git <2.19, cat-file lacks --unordered, locality suffers\n";
24 require_mods qw(Plack::Util);
26 my $ibx = PublicInbox::Inbox->new({ inboxdir => $inboxdir, name => 'name' ,
27 obfuscate => $obfuscate});
29 my $fh = $git->popen(@cat);
31 vec($vec, fileno($fh), 1) = 1;
32 select($vec, undef, undef, 60) or die "timed out waiting for --batch-check";
35 env => { HTTP_HOST => 'example.com', 'psgi.url_scheme' => 'https' },
37 www => Plack::Util::inline_object(style => sub {''}),
39 my ($mime, $res, $oid, $type);
45 $mime = PublicInbox::Eml->new(shift);
46 PublicInbox::View::multipart_text_as_html($mime, $ctx);
51 my $t = timeit(1, sub {
52 $ctx->{obuf} = \$obuf;
53 $ctx->{mhref} = '../';
55 ($oid, $type) = split / /;
56 next if $type ne 'blob';
58 $git->cat_async($oid, $cb);
62 diag 'multipart_text_as_html took '.timestr($t)." for $n <=> $m messages";
63 is($m, $n, 'rendered all messages');