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