X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=xt%2Fperf-msgview.t;h=30fc07dcbc87ad812de8da9d41bb3df0bc1883e3;hb=0283273a14e1871955f6a9132f4f3f7884ec8a3f;hp=11bd3a5d64657ff8d476e1273fd38d5f71490265;hpb=3c313f9034aac96182e2efdc2f92c40803626f32;p=public-inbox.git diff --git a/xt/perf-msgview.t b/xt/perf-msgview.t index 11bd3a5d..30fc07dc 100644 --- a/xt/perf-msgview.t +++ b/xt/perf-msgview.t @@ -1,4 +1,4 @@ -# Copyright (C) 2019 all contributors +# Copyright (C) 2019-2020 all contributors # License: AGPL-3.0+ use strict; use warnings; @@ -18,7 +18,7 @@ if (require_git(2.19, 1)) { warn "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; @@ -32,21 +32,30 @@ my $ctx = { -inbox => $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 = ''; +}; + +$git->cat_async_begin; my $t = timeit(1, sub { + $ctx->{obuf} = \$obuf; + $ctx->{mhref} = '../'; while (<$fh>) { - ($cmt, $type) = split / /; + ($oid, $type) = split / /; next if $type ne 'blob'; ++$n; - $str = $git->cat_file($cmt); - $mime = PublicInbox::MIME->new($str); - $res = PublicInbox::View::msg_html($ctx, $mime); - $res = $res->[2]; - while (defined($res->getline)) {} - $res->close; + $git->cat_async($oid, $cb); } + $git->cat_async_wait; }); -diag 'msg_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();