t / t9700 / test.plon commit pack-objects: don't loosen objects available in alternate or kept packs (094085e)
   1#!/usr/bin/perl
   2use lib (split(/:/, $ENV{GITPERLLIB}));
   3
   4use 5.006002;
   5use warnings;
   6use strict;
   7
   8use Test::More qw(no_plan);
   9
  10use Cwd;
  11use File::Basename;
  12
  13BEGIN { use_ok('Git') }
  14
  15# set up
  16our $repo_dir = "trash directory";
  17our $abs_repo_dir = Cwd->cwd;
  18die "this must be run by calling the t/t97* shell script(s)\n"
  19    if basename(Cwd->cwd) ne $repo_dir;
  20ok(our $r = Git->repository(Directory => "."), "open repository");
  21
  22# config
  23is($r->config("test.string"), "value", "config scalar: string");
  24is_deeply([$r->config("test.dupstring")], ["value1", "value2"],
  25          "config array: string");
  26is($r->config("test.nonexistent"), undef, "config scalar: nonexistent");
  27is_deeply([$r->config("test.nonexistent")], [], "config array: nonexistent");
  28is($r->config_int("test.int"), 2048, "config_int: integer");
  29is($r->config_int("test.nonexistent"), undef, "config_int: nonexistent");
  30ok($r->config_bool("test.booltrue"), "config_bool: true");
  31ok(!$r->config_bool("test.boolfalse"), "config_bool: false");
  32our $ansi_green = "\x1b[32m";
  33is($r->get_color("color.test.slot1", "red"), $ansi_green, "get_color");
  34# Cannot test $r->get_colorbool("color.foo")) because we do not
  35# control whether our STDOUT is a terminal.
  36
  37# Failure cases for config:
  38# Save and restore STDERR; we will probably extract this into a
  39# "dies_ok" method and possibly move the STDERR handling to Git.pm.
  40open our $tmpstderr, ">&STDERR" or die "cannot save STDERR"; close STDERR;
  41eval { $r->config("test.dupstring") };
  42ok($@, "config: duplicate entry in scalar context fails");
  43eval { $r->config_bool("test.boolother") };
  44ok($@, "config_bool: non-boolean values fail");
  45open STDERR, ">&", $tmpstderr or die "cannot restore STDERR";
  46
  47# ident
  48like($r->ident("aUthor"), qr/^A U Thor <author\@example.com> [0-9]+ \+0000$/,
  49     "ident scalar: author (type)");
  50like($r->ident("cOmmitter"), qr/^C O Mitter <committer\@example.com> [0-9]+ \+0000$/,
  51     "ident scalar: committer (type)");
  52is($r->ident("invalid"), "invalid", "ident scalar: invalid ident string (no parsing)");
  53my ($name, $email, $time_tz) = $r->ident('author');
  54is_deeply([$name, $email], ["A U Thor", "author\@example.com"],
  55         "ident array: author");
  56like($time_tz, qr/[0-9]+ \+0000/, "ident array: author");
  57is_deeply([$r->ident("Name <email> 123 +0000")], ["Name", "email", "123 +0000"],
  58          "ident array: ident string");
  59is_deeply([$r->ident("invalid")], [], "ident array: invalid ident string");
  60
  61# ident_person
  62is($r->ident_person("aUthor"), "A U Thor <author\@example.com>",
  63   "ident_person: author (type)");
  64is($r->ident_person("Name <email> 123 +0000"), "Name <email>",
  65   "ident_person: ident string");
  66is($r->ident_person("Name", "email", "123 +0000"), "Name <email>",
  67   "ident_person: array");
  68
  69# objects and hashes
  70ok(our $file1hash = $r->command_oneline('rev-parse', "HEAD:file1"), "(get file hash)");
  71my $tmpfile = "file.tmp";
  72open TEMPFILE, "+>$tmpfile" or die "Can't open $tmpfile: $!";
  73is($r->cat_blob($file1hash, \*TEMPFILE), 15, "cat_blob: size");
  74our $blobcontents;
  75{ local $/; seek TEMPFILE, 0, 0; $blobcontents = <TEMPFILE>; }
  76is($blobcontents, "changed file 1\n", "cat_blob: data");
  77close TEMPFILE or die "Failed writing to $tmpfile: $!";
  78is(Git::hash_object("blob", $tmpfile), $file1hash, "hash_object: roundtrip");
  79open TEMPFILE, ">$tmpfile" or die "Can't open $tmpfile: $!";
  80print TEMPFILE my $test_text = "test blob, to be inserted\n";
  81close TEMPFILE or die "Failed writing to $tmpfile: $!";
  82like(our $newhash = $r->hash_and_insert_object($tmpfile), qr/[0-9a-fA-F]{40}/,
  83     "hash_and_insert_object: returns hash");
  84open TEMPFILE, "+>$tmpfile" or die "Can't open $tmpfile: $!";
  85is($r->cat_blob($newhash, \*TEMPFILE), length $test_text, "cat_blob: roundtrip size");
  86{ local $/; seek TEMPFILE, 0, 0; $blobcontents = <TEMPFILE>; }
  87is($blobcontents, $test_text, "cat_blob: roundtrip data");
  88close TEMPFILE;
  89unlink $tmpfile;
  90
  91# paths
  92is($r->repo_path, "./.git", "repo_path");
  93is($r->wc_path, $abs_repo_dir . "/", "wc_path");
  94is($r->wc_subdir, "", "wc_subdir initial");
  95$r->wc_chdir("directory1");
  96is($r->wc_subdir, "directory1", "wc_subdir after wc_chdir");
  97TODO: {
  98        local $TODO = "commands do not work after wc_chdir";
  99        # Failure output is active even in non-verbose mode and thus
 100        # annoying.  Hence we skip these tests as long as they fail.
 101        todo_skip 'config after wc_chdir', 1;
 102        is($r->config("color.string"), "value", "config after wc_chdir");
 103}