]> Sergey Matveev's repositories - public-inbox.git/commitdiff
xt/solver.t: real-world regression tests
authorEric Wong <e@80x24.org>
Sat, 4 Jan 2020 03:34:13 +0000 (03:34 +0000)
committerEric Wong <e@80x24.org>
Sat, 4 Jan 2020 03:34:33 +0000 (03:34 +0000)
There's a lot of test cases which we should probably
make self-contained at some point, but right now it's
easier to just mark them off in a maintainer test.

MANIFEST
xt/solver.t [new file with mode: 0644]

index 4d922f97b39d5bc95080819be69f73ab194a0b52..845fee7b486f80fab935f60e1aa3fb57a2479640 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -301,3 +301,4 @@ xt/nntpd-validate.t
 xt/perf-msgview.t
 xt/perf-nntpd.t
 xt/perf-threading.t
+xt/solver.t
diff --git a/xt/solver.t b/xt/solver.t
new file mode 100644 (file)
index 0000000..238abec
--- /dev/null
@@ -0,0 +1,57 @@
+#!perl -w
+# Copyright (C) 2020 all contributors <meta@public-inbox.org>
+# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
+use strict;
+use Test::More;
+use PublicInbox::TestCommon;
+use PublicInbox::Config; # this relies on PI_CONFIG // ~/.public-inbox/config
+use PublicInbox::WWW;
+my @psgi = qw(HTTP::Request::Common Plack::Test URI::Escape Plack::Builder);
+require_mods(qw(DBD::SQLite Search::Xapian), @psgi);
+use_ok($_) for @psgi;
+my $cfg = PublicInbox::Config->new;
+my $www = PublicInbox::WWW->new($cfg);
+my $app = sub {
+       my $env = shift;
+       $env->{'psgi.errors'} = \*STDERR;
+       $www->call($env);
+};
+
+# TODO: convert these to self-contained test cases
+my $todo = {
+       'git' => [
+               # 'eebf7a8/s/?b=t%2Ftest-lib.sh', TODO
+               'eb580ca513/s/?b=remote-odb.c',
+               '776fa90f7f/s/?b=contrib/git-jump/git-jump',
+               '5cd8845/s/?b=submodule.c',
+               '81c1164ae5/s/?b=builtin/log.c',
+               '6aa8857a11/s/?b=protocol.c', # TODO: i/, w/ instead of a/ b/
+               '96f1c7f/s/', # TODO: b=contrib/completion/git-completion.bash
+               'b76f2c0/s/?b=po/zh_CN.po',
+       ],
+};
+
+my ($ibx, $urls);
+my $client = sub {
+       my ($cb) = @_;
+       for (@$urls) {
+               my $url = "/$ibx/$_";
+               my $res = $cb->(GET($url));
+               is($res->code, 200, $url);
+               next if $res->code == 200;
+               # diag $res->content;
+               diag "$url failed";
+       }
+};
+
+while (($ibx, $urls) = each %$todo) {
+       SKIP: {
+               if (!$cfg->lookup_name($ibx)) {
+                       skip("$ibx not configured", scalar(@$urls));
+               }
+               test_psgi($app, $client);
+       }
+}
+
+done_testing();
+1;