]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/lei-mirror.t
multi_git: hoist out common epoch/alternates handling
[public-inbox.git] / t / lei-mirror.t
index 35b77cf7519671f209542bf282f33ff4d923577d..5238b67cef0d51777dca88fbeee00d75b5d307c1 100644 (file)
@@ -4,6 +4,7 @@
 use strict; use v5.10.1; use PublicInbox::TestCommon;
 use PublicInbox::Inbox;
 require_mods(qw(-httpd lei));
+require_cmd('curl');
 my $sock = tcp_server();
 my ($tmpdir, $for_destroy) = tmpdir();
 my $http = 'http://'.tcp_host_port($sock);
@@ -91,25 +92,50 @@ SKIP: {
        my $opt = { -C => $d, 2 => \(my $err) };
        ok(!run_script([qw(-clone -q), "$http/404"], undef, $opt), '404 fails');
        ok(!-d "$d/404", 'destination not created');
-       delete $opt->{2};
 
        ok(run_script([qw(-clone -q -C), $d, "$http/t2"], undef, $opt),
                '-clone succeeds on v2');
-       ok(-d "$d/t2/git/0.git", 'epoch cloned');
+       ok(-f "$d/t2/git/0.git/config", 'epoch cloned');
+
+       # writeBitmaps is the default for bare repos in git 2.22+,
+       # so we may stop setting it ourselves.
+       0 and is(xqx(['git', "--git-dir=$d/t2/git/0.git", 'config',
+               qw(--bool repack.writeBitmaps)]), "true\n",
+               'write bitmaps set (via include.path=all.git/config');
+
+       is(xqx(['git', "--git-dir=$d/t2/git/0.git", 'config',
+               qw(include.path)]), "../../all.git/config\n",
+               'include.path set');
+
+       ok(-s "$d/t2/all.git/objects/info/alternates",
+               'all.git alternates created');
        ok(-f "$d/t2/manifest.js.gz", 'manifest saved');
        ok(!-e "$d/t2/mirror.done", 'no leftover mirror.done');
-       ok(run_script([qw(-fetch -q -C), "$d/t2"], undef, $opt),
+       ok(run_script([qw(-fetch -C), "$d/t2"], undef, $opt),
                '-fetch succeeds w/ manifest.js.gz');
+       unlike($err, qr/git fetch/, 'no fetch done w/ manifest');
        unlink("$d/t2/manifest.js.gz") or xbail "unlink $!";
-       ok(run_script([qw(-fetch -q -C), "$d/t2"], undef, $opt),
+       ok(run_script([qw(-fetch -C), "$d/t2"], undef, $opt),
                '-fetch succeeds w/o manifest.js.gz');
+       like($err, qr/git fetch/, 'fetch forced w/o manifest');
 
        ok(run_script([qw(-clone -q -C), $d, "$http/t1"], undef, $opt),
                'cloning v1 works');
        ok(-d "$d/t1", 'v1 cloned');
        ok(!-e "$d/t1/mirror.done", 'no leftover file');
-       ok(run_script([qw(-fetch -q -C), "$d/t1"], undef, $opt),
+       ok(-f "$d/t1/manifest.js.gz", 'manifest saved');
+       ok(run_script([qw(-fetch -C), "$d/t1"], undef, $opt),
                'fetching v1 works');
+       unlike($err, qr/git fetch/, 'no fetch done w/ manifest');
+       unlink("$d/t1/manifest.js.gz") or xbail "unlink $!";
+       my $before = [ glob("$d/t1/*") ];
+       ok(run_script([qw(-fetch -C), "$d/t1"], undef, $opt),
+               'fetching v1 works w/o manifest.js.gz');
+       unlink("$d/t1/FETCH_HEAD"); # git internal
+       like($err, qr/git fetch/, 'no fetch done w/ manifest');
+       ok(unlink("$d/t1/manifest.js.gz"), 'manifest created');
+       my $after = [ glob("$d/t1/*") ];
+       is_deeply($before, $after, 'no new files created');
 }
 
 ok($td->kill, 'killed -httpd');