Merge branch 'mp/complete-paths'
[git/mingw.git] / t / t9700 / test.pl
blob0d4e366232c29bdde0e1059d431ae96afc259112
1 #!/usr/bin/perl
2 use lib (split(/:/, $ENV{GITPERLLIB}));
4 use 5.008;
5 use warnings;
6 use strict;
8 use Test::More qw(no_plan);
10 BEGIN {
11 # t9700-perl-git.sh kicks off our testing, so we have to go from
12 # there.
13 Test::More->builder->current_test(1);
14 Test::More->builder->no_ending(1);
17 use Cwd;
18 use File::Basename;
20 BEGIN { use_ok('Git') }
22 # set up
23 our $abs_repo_dir = cwd();
24 ok(our $r = Git->repository(Directory => "."), "open repository");
26 # config
27 is($r->config("test.string"), "value", "config scalar: string");
28 is_deeply([$r->config("test.dupstring")], ["value1", "value2"],
29 "config array: string");
30 is($r->config("test.nonexistent"), undef, "config scalar: nonexistent");
31 is_deeply([$r->config("test.nonexistent")], [], "config array: nonexistent");
32 is($r->config_int("test.int"), 2048, "config_int: integer");
33 is($r->config_int("test.nonexistent"), undef, "config_int: nonexistent");
34 ok($r->config_bool("test.booltrue"), "config_bool: true");
35 ok(!$r->config_bool("test.boolfalse"), "config_bool: false");
36 is($r->config_path("test.path"), $r->config("test.pathexpanded"),
37 "config_path: ~/foo expansion");
38 is_deeply([$r->config_path("test.pathmulti")], ["foo", "bar"],
39 "config_path: multiple values");
40 our $ansi_green = "\x1b[32m";
41 is($r->get_color("color.test.slot1", "red"), $ansi_green, "get_color");
42 # Cannot test $r->get_colorbool("color.foo")) because we do not
43 # control whether our STDOUT is a terminal.
45 # Failure cases for config:
46 # Save and restore STDERR; we will probably extract this into a
47 # "dies_ok" method and possibly move the STDERR handling to Git.pm.
48 open our $tmpstderr, ">&STDERR" or die "cannot save STDERR"; close STDERR;
49 is($r->config("test.dupstring"), "value2", "config: multivar");
50 eval { $r->config_bool("test.boolother") };
51 ok($@, "config_bool: non-boolean values fail");
52 open STDERR, ">&", $tmpstderr or die "cannot restore STDERR";
54 # ident
55 like($r->ident("aUthor"), qr/^A U Thor <author\@example.com> [0-9]+ \+0000$/,
56 "ident scalar: author (type)");
57 like($r->ident("cOmmitter"), qr/^C O Mitter <committer\@example.com> [0-9]+ \+0000$/,
58 "ident scalar: committer (type)");
59 is($r->ident("invalid"), "invalid", "ident scalar: invalid ident string (no parsing)");
60 my ($name, $email, $time_tz) = $r->ident('author');
61 is_deeply([$name, $email], ["A U Thor", "author\@example.com"],
62 "ident array: author");
63 like($time_tz, qr/[0-9]+ \+0000/, "ident array: author");
64 is_deeply([$r->ident("Name <email> 123 +0000")], ["Name", "email", "123 +0000"],
65 "ident array: ident string");
66 is_deeply([$r->ident("invalid")], [], "ident array: invalid ident string");
68 # ident_person
69 is($r->ident_person("aUthor"), "A U Thor <author\@example.com>",
70 "ident_person: author (type)");
71 is($r->ident_person("Name <email> 123 +0000"), "Name <email>",
72 "ident_person: ident string");
73 is($r->ident_person("Name", "email", "123 +0000"), "Name <email>",
74 "ident_person: array");
76 # objects and hashes
77 ok(our $file1hash = $r->command_oneline('rev-parse', "HEAD:file1"), "(get file hash)");
78 my $tmpfile = "file.tmp";
79 open TEMPFILE, "+>$tmpfile" or die "Can't open $tmpfile: $!";
80 is($r->cat_blob($file1hash, \*TEMPFILE), 15, "cat_blob: size");
81 our $blobcontents;
82 { local $/; seek TEMPFILE, 0, 0; $blobcontents = <TEMPFILE>; }
83 is($blobcontents, "changed file 1\n", "cat_blob: data");
84 close TEMPFILE or die "Failed writing to $tmpfile: $!";
85 is(Git::hash_object("blob", $tmpfile), $file1hash, "hash_object: roundtrip");
86 open TEMPFILE, ">$tmpfile" or die "Can't open $tmpfile: $!";
87 print TEMPFILE my $test_text = "test blob, to be inserted\n";
88 close TEMPFILE or die "Failed writing to $tmpfile: $!";
89 like(our $newhash = $r->hash_and_insert_object($tmpfile), qr/[0-9a-fA-F]{40}/,
90 "hash_and_insert_object: returns hash");
91 open TEMPFILE, "+>$tmpfile" or die "Can't open $tmpfile: $!";
92 is($r->cat_blob($newhash, \*TEMPFILE), length $test_text, "cat_blob: roundtrip size");
93 { local $/; seek TEMPFILE, 0, 0; $blobcontents = <TEMPFILE>; }
94 is($blobcontents, $test_text, "cat_blob: roundtrip data");
95 close TEMPFILE;
96 unlink $tmpfile;
98 # paths
99 is($r->repo_path, $abs_repo_dir . "/.git", "repo_path");
100 is($r->wc_path, $abs_repo_dir . "/", "wc_path");
101 is($r->wc_subdir, "", "wc_subdir initial");
102 $r->wc_chdir("directory1");
103 is($r->wc_subdir, "directory1", "wc_subdir after wc_chdir");
104 is($r->config("test.string"), "value", "config after wc_chdir");
106 # Object generation in sub directory
107 chdir("directory2");
108 my $r2 = Git->repository();
109 is($r2->repo_path, $abs_repo_dir . "/.git", "repo_path (2)");
110 is($r2->wc_path, $abs_repo_dir . "/", "wc_path (2)");
111 is($r2->wc_subdir, "directory2/", "wc_subdir initial (2)");
113 # commands in sub directory
114 my $last_commit = $r2->command_oneline(qw(rev-parse --verify HEAD));
115 like($last_commit, qr/^[0-9a-fA-F]{40}$/, 'rev-parse returned hash');
116 my $dir_commit = $r2->command_oneline('log', '-n1', '--pretty=format:%H', '.');
117 isnt($last_commit, $dir_commit, 'log . does not show last commit');
119 # commands outside working tree
120 chdir($abs_repo_dir . '/..');
121 my $r3 = Git->repository(Directory => $abs_repo_dir);
122 my $tmpfile3 = "$abs_repo_dir/file3.tmp";
123 open TEMPFILE3, "+>$tmpfile3" or die "Can't open $tmpfile3: $!";
124 is($r3->cat_blob($file1hash, \*TEMPFILE3), 15, "cat_blob(outside): size");
125 close TEMPFILE3;
126 unlink $tmpfile3;
127 chdir($abs_repo_dir);
129 printf "1..%d\n", Test::More->builder->current_test;
131 my $is_passing = eval { Test::More->is_passing };
132 exit($is_passing ? 0 : 1) unless $@ =~ /Can't locate object method/;