Merge branch 'nd/dashless'
[git/dscho.git] / t / t9700 / test.pl
blob4d2312548a81762918ac05b9a0014195b08ea532
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 $repo_dir = "trash directory";
18 our $abs_repo_dir = Cwd->cwd;
19 die "this must be run by calling the t/t97* shell script(s)\n"
20 if basename(Cwd->cwd) ne $repo_dir;
21 ok(our $r = Git->repository(Directory => "."), "open repository");
23 # config
24 is($r->config("test.string"), "value", "config scalar: string");
25 is_deeply([$r->config("test.dupstring")], ["value1", "value2"],
26 "config array: string");
27 is($r->config("test.nonexistent"), undef, "config scalar: nonexistent");
28 is_deeply([$r->config("test.nonexistent")], [], "config array: nonexistent");
29 is($r->config_int("test.int"), 2048, "config_int: integer");
30 is($r->config_int("test.nonexistent"), undef, "config_int: nonexistent");
31 ok($r->config_bool("test.booltrue"), "config_bool: true");
32 ok(!$r->config_bool("test.boolfalse"), "config_bool: false");
33 our $ansi_green = "\x1b[32m";
34 is($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.
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.
41 open our $tmpstderr, ">&", STDERR or die "cannot save STDERR"; close STDERR;
42 eval { $r->config("test.dupstring") };
43 ok($@, "config: duplicate entry in scalar context fails");
44 eval { $r->config_bool("test.boolother") };
45 ok($@, "config_bool: non-boolean values fail");
46 open STDERR, ">&", $tmpstderr or die "cannot restore STDERR";
48 # ident
49 like($r->ident("aUthor"), qr/^A U Thor <author\@example.com> [0-9]+ \+0000$/,
50 "ident scalar: author (type)");
51 like($r->ident("cOmmitter"), qr/^C O Mitter <committer\@example.com> [0-9]+ \+0000$/,
52 "ident scalar: committer (type)");
53 is($r->ident("invalid"), "invalid", "ident scalar: invalid ident string (no parsing)");
54 my ($name, $email, $time_tz) = $r->ident('author');
55 is_deeply([$name, $email], ["A U Thor", "author\@example.com"],
56 "ident array: author");
57 like($time_tz, qr/[0-9]+ \+0000/, "ident array: author");
58 is_deeply([$r->ident("Name <email> 123 +0000")], ["Name", "email", "123 +0000"],
59 "ident array: ident string");
60 is_deeply([$r->ident("invalid")], [], "ident array: invalid ident string");
62 # ident_person
63 is($r->ident_person("aUthor"), "A U Thor <author\@example.com>",
64 "ident_person: author (type)");
65 is($r->ident_person("Name <email> 123 +0000"), "Name <email>",
66 "ident_person: ident string");
67 is($r->ident_person("Name", "email", "123 +0000"), "Name <email>",
68 "ident_person: array");
70 # objects and hashes
71 ok(our $file1hash = $r->command_oneline('rev-parse', "HEAD:file1"), "(get file hash)");
72 our $tmpfile = File::Temp->new;
73 is($r->cat_blob($file1hash, $tmpfile), 15, "cat_blob: size");
74 our $blobcontents;
75 { local $/; seek $tmpfile, 0, 0; $blobcontents = <$tmpfile>; }
76 is($blobcontents, "changed file 1\n", "cat_blob: data");
77 seek $tmpfile, 0, 0;
78 is(Git::hash_object("blob", $tmpfile), $file1hash, "hash_object: roundtrip");
79 $tmpfile = File::Temp->new();
80 print $tmpfile my $test_text = "test blob, to be inserted\n";
81 like(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;
84 is($r->cat_blob($newhash, $tmpfile), length $test_text, "cat_blob: roundtrip size");
85 { local $/; seek $tmpfile, 0, 0; $blobcontents = <$tmpfile>; }
86 is($blobcontents, $test_text, "cat_blob: roundtrip data");
88 # paths
89 is($r->repo_path, "./.git", "repo_path");
90 is($r->wc_path, $abs_repo_dir . "/", "wc_path");
91 is($r->wc_subdir, "", "wc_subdir initial");
92 $r->wc_chdir("directory1");
93 is($r->wc_subdir, "directory1", "wc_subdir after wc_chdir");
94 TODO: {
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");