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