]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/extindex-psgi.t
www: drop --subject from "git send-email" instructions
[public-inbox.git] / t / extindex-psgi.t
index b9acc9793292b6d3b7a7189853c01b75af186279..98dc2e48f313b6e0bd82274d0d0c16ed67375a0d 100644 (file)
@@ -11,6 +11,7 @@ require_git(2.6);
 require_mods(qw(json DBD::SQLite Search::Xapian
                HTTP::Request::Common Plack::Test URI::Escape Plack::Builder));
 use_ok($_) for (qw(HTTP::Request::Common Plack::Test));
+use IO::Uncompress::Gunzip qw(gunzip);
 require PublicInbox::WWW;
 my ($ro_home, $cfg_path) = setup_public_inboxes;
 my ($tmpdir, $for_destroy) = tmpdir;
@@ -18,16 +19,19 @@ my $home = "$tmpdir/home";
 mkdir $home or BAIL_OUT $!;
 mkdir "$home/.public-inbox" or BAIL_OUT $!;
 my $pi_config = "$home/.public-inbox/config";
-cp("$ro_home/.public-inbox/config", $pi_config) or BAIL_OUT;
+cp($cfg_path, $pi_config) or BAIL_OUT;
 my $env = { HOME => $home };
 run_script([qw(-extindex --all), "$tmpdir/eidx"], $env) or BAIL_OUT;
 {
-       open my $cfgfh, '>', $pi_config or BAIL_OUT;
+       open my $cfgfh, '>>', $pi_config or BAIL_OUT;
        $cfgfh->autoflush(1);
        print $cfgfh <<EOM or BAIL_OUT;
 [extindex "all"]
        topdir = $tmpdir/eidx
        url = http://bogus.example.com/all
+[publicinbox]
+       wwwlisting = all
+       grokManifest = all
 EOM
 }
 my $www = PublicInbox::WWW->new(PublicInbox::Config->new($pi_config));
@@ -52,6 +56,33 @@ my $client = sub {
        my $cfg = PublicInbox::Config->git_config_dump($f);
        is($?, 0, 'no errors from git-config parsing');
        ok($cfg->{'extindex.all.topdir'}, 'extindex.topdir defined');
+
+       $res = $cb->(GET('/all/all.mbox.gz'));
+       is($res->code, 200, 'all.mbox.gz');
+
+       $res = $cb->(GET('/'));
+       like($res->content, qr!\Qhttp://bogus.example.com/all\E!,
+               '/all listed');
+       $res = $cb->(GET('/?q='));
+       is($res->code, 200, 'no query means all inboxes');
+       $res = $cb->(GET('/?q=nonexistent'));
+       is($res->code, 404, 'no inboxes matched');
+       unlike($res->content, qr!no inboxes, yet!,
+               'we have inboxes, just no matches');
+
+       my $m = {};
+       for my $pfx (qw(/t1 /t2), '') {
+               $res = $cb->(GET($pfx.'/manifest.js.gz'));
+               gunzip(\($res->content) => \(my $js));
+               $m->{$pfx} = json_utf8->decode($js);
+       }
+       is_deeply([sort keys %{$m->{''}}],
+               [ sort(keys %{$m->{'/t1'}}, keys %{$m->{'/t2'}}) ],
+               't1 + t2 = all');
+       is_deeply([ sort keys %{$m->{'/t2'}} ], [ '/t2/git/0.git' ],
+               't2 manifest');
+       is_deeply([ sort keys %{$m->{'/t1'}} ], [ '/t1' ],
+               't2 manifest');
 };
 test_psgi(sub { $www->call(@_) }, $client);
 %$env = (%$env, TMPDIR => $tmpdir, PI_CONFIG => $pi_config);