]> Sergey Matveev's repositories - public-inbox.git/blobdiff - xt/perf-msgview.t
update copyrights for 2021
[public-inbox.git] / xt / perf-msgview.t
index 11bd3a5d64657ff8d476e1273fd38d5f71490265..599808390b6d9a8b70ddca4e492c04ff3bd7b143 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2019 all contributors <meta@public-inbox.org>
+# Copyright (C) 2019-2021 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 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;
@@ -29,24 +29,32 @@ 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 {
+       $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();