X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=xt%2Fperf-msgview.t;h=cf550c1a284b80b9dd516444f93302a604bd194d;hb=0ae89efce11e1e3b10a067c61c5b4cde30fa2b3b;hp=9375977aac883c5c730537da045e99a77828ab00;hpb=7d6f64eceeec2e0d4886d62480d183934801fa67;p=public-inbox.git diff --git a/xt/perf-msgview.t b/xt/perf-msgview.t index 9375977a..cf550c1a 100644 --- a/xt/perf-msgview.t +++ b/xt/perf-msgview.t @@ -1,14 +1,16 @@ -# Copyright (C) 2019 all contributors +#!perl -w +# Copyright (C) all contributors # License: AGPL-3.0+ use strict; -use warnings; -use Test::More; +use v5.10.1; +use PublicInbox::TestCommon; use Benchmark qw(:all); use PublicInbox::Inbox; use PublicInbox::View; -use PublicInbox::TestCommon; +use PublicInbox::Spawn qw(popen_rd); my $inboxdir = $ENV{GIANT_INBOX_DIR} // $ENV{GIANT_PI_DIR}; +my $blob = $ENV{TEST_BLOB}; plan skip_all => "GIANT_INBOX_DIR not defined for $0" unless $inboxdir; my @cat = qw(cat-file --buffer --batch-check --batch-all-objects); @@ -19,34 +21,52 @@ if (require_git(2.19, 1)) { "git <2.19, cat-file lacks --unordered, locality suffers\n"; } require_mods qw(Plack::Util); -use_ok 'Plack::Util'; my $ibx = PublicInbox::Inbox->new({ inboxdir => $inboxdir, name => 'name' }); my $git = $ibx->git; -my $fh = $git->popen(@cat); -my $vec = ''; -vec($vec, fileno($fh), 1) = 1; -select($vec, undef, undef, 60) or die "timed out waiting for --batch-check"; +my $fh = $blob ? undef : $git->popen(@cat); +if ($fh) { + my $vec = ''; + vec($vec, fileno($fh), 1) = 1; + select($vec, undef, undef, 60) or + die "timed out waiting for --batch-check"; +} my $ctx = { env => { HTTP_HOST => 'example.com', 'psgi.url_scheme' => 'https' }, - -inbox => $ibx, + ibx => $ibx, www => Plack::Util::inline_object(style => sub {''}), }; -my ($str, $mime, $res, $cmt, $type); +my ($mime, $res, $oid, $type); my $n = 0; +my $obuf = ''; +my $m = 0; + +my $cb = sub { + $mime = PublicInbox::Eml->new(shift); + PublicInbox::View::multipart_text_as_html($mime, $ctx); + ++$m; + $obuf = ''; +}; + my $t = timeit(1, sub { - my $obuf = ''; $ctx->{obuf} = \$obuf; - while (<$fh>) { - ($cmt, $type) = split / /; - next if $type ne 'blob'; - ++$n; - $str = $git->cat_file($cmt); - $mime = PublicInbox::MIME->new($str); - PublicInbox::View::multipart_text_as_html($mime, '../', $ctx); - $obuf = ''; + $ctx->{mhref} = '../'; + if (defined $blob) { + my $nr = $ENV{NR} // 10000; + for (1..$nr) { + ++$n; + $git->cat_async($blob, $cb); + } + } else { + while (<$fh>) { + ($oid, $type) = split / /; + next if $type ne 'blob'; + ++$n; + $git->cat_async($oid, $cb); + } } + $git->async_wait_all; }); -diag 'multipart_text_as_html took '.timestr($t)." for $n messages"; -ok 1; +diag 'multipart_text_as_html took '.timestr($t)." for $n <=> $m messages"; +is($m, $n, 'rendered all messages'); done_testing();