1 # Copyright (C) 2019 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
6 use File::Temp qw(tempdir);
8 require './t/common.perl';
11 my @mods = qw(DBD::SQLite Search::Xapian HTTP::Request::Common Plack::Test
12 URI::Escape Plack::Builder);
13 foreach my $mod (@mods) {
15 plan skip_all => "$mod missing for $0" if $@;
17 chomp(my $git_dir = `git rev-parse --git-dir 2>/dev/null`);
18 plan skip_all => "$0 must be run from a git working tree" if $?;
19 $git_dir = abs_path($git_dir);
21 use_ok "PublicInbox::$_" for (qw(Inbox V2Writable MIME Git SolverGit));
23 my $mainrepo = tempdir('pi-solver-XXXXXX', TMPDIR => 1, CLEANUP => 1);
25 mainrepo => $mainrepo,
26 name => 'test-v2writable',
28 -primary_address => 'test@example.com',
30 my $ibx = PublicInbox::Inbox->new($opts);
31 my $im = PublicInbox::V2Writable->new($ibx, 1);
34 sub deliver_patch ($) {
35 open my $fh, '<', $_[0] or die "open: $!";
36 my $mime = PublicInbox::MIME->new(do { local $/; <$fh> });
41 deliver_patch('t/solve/0001-simple-mod.patch');
43 my $git = PublicInbox::Git->new($git_dir);
44 is('public-inbox 1.0.0',
45 $git->commit_title('cb7c42b1e15577ed2215356a2bf925aef59cdd8d'),
46 'commit_title works on 1.0.0');
48 is(undef, $git->commit_title('impossible'), 'undef on impossible object');
50 $ibx->{-repo_objs} = [ $git ];
52 my $solver = PublicInbox::SolverGit->new($ibx, sub { $res = $_[0] });
53 open my $log, '+>>', "$mainrepo/solve.log" or die "open: $!";
54 my $psgi_env = { 'psgi.errors' => *STDERR };
55 $solver->solve($psgi_env, $log, '69df7d5', {});
56 ok($res, 'solved a blob!');
57 my $wt_git = $res->[0];
58 is(ref($wt_git), 'PublicInbox::Git', 'got a git object for the blob');
59 my $expect = '69df7d565d49fbaaeb0a067910f03dc22cd52bd0';
60 is($res->[1], $expect, 'resolved blob to unabbreviated identifier');
61 is($res->[2], 'blob', 'type specified');
62 is($res->[3], 4405, 'size returned');
64 is(ref($wt_git->cat_file($res->[1])), 'SCALAR', 'wt cat-file works');
65 is_deeply([$expect, 'blob', 4405],
66 [$wt_git->check($res->[1])], 'wt check works');
68 if (0) { # TODO: check this?
70 my $z = do { local $/; <$log> };
77 my $s = PublicInbox::SolverGit->new($ibx, sub { $more = $_[0] });
78 $s->solve($psgi_env, $log, $oid, {});
79 is($more->[1], $expect, 'resolved blob to long OID '.$i);
85 my $wt_git_dir = $wt_git->{git_dir};
87 ok(!-d $wt_git_dir, 'no references to WT held');
89 $solver = PublicInbox::SolverGit->new($ibx, sub { $res = $_[0] });
90 $solver->solve($psgi_env, $log, '0'x40, {});
91 is($res, undef, 'no error on z40');
93 my $git_v2_20_1_tag = '7a95a1cd084cb665c5c2586a415e42df0213af74';
94 $solver = PublicInbox::SolverGit->new($ibx, sub { $res = $_[0] });
95 $solver->solve($psgi_env, $log, $git_v2_20_1_tag, {});
96 is($res, undef, 'no error on a tag not in our repo');
98 deliver_patch('t/solve/0002-rename-with-modifications.patch');
99 $solver = PublicInbox::SolverGit->new($ibx, sub { $res = $_[0] });
100 $solver->solve($psgi_env, $log, '0a92431', {});
101 ok($res, 'resolved without hints');
106 path_b => 'CONTRIBUTING'
108 $solver = PublicInbox::SolverGit->new($ibx, sub { $res = $_[0] });
109 $solver->solve($psgi_env, $log, '0a92431', $hints);
111 # don't compare ::Git objects:
112 shift @$res; shift @$hinted;
113 is_deeply($res, $hinted, 'hints work (or did not hurt :P');