]> Sergey Matveev's repositories - public-inbox.git/blobdiff - xt/perf-msgview.t
treewide: replace {-inbox} with {ibx} for consistency
[public-inbox.git] / xt / perf-msgview.t
index 9375977aac883c5c730537da045e99a77828ab00..30e133d7c396ce965936d999b69a28c30b4ad75a 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2019 all contributors <meta@public-inbox.org>
+# Copyright (C) 2019-2020 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
 use warnings;
@@ -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 {
-       my $obuf = '';
        $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);
-               PublicInbox::View::multipart_text_as_html($mime, '../', $ctx);
-               $obuf = '';
+               $git->cat_async($oid, $cb);
        }
+       $git->cat_async_wait;
 });
-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();