blob: 6d753708d2acb6c7bcf47e5a057d99845c1006a3 [file] [log] [blame]
Lea Wiemannb4780d72008-06-19 22:32:49 +02001#!/usr/bin/perl
2use lib (split(/:/, $ENV{GITPERLLIB}));
3
Ævar Arnfjörð Bjarmasond48b2842010-09-24 20:00:52 +00004use 5.008;
Lea Wiemannb4780d72008-06-19 22:32:49 +02005use warnings;
6use strict;
7
8use Test::More qw(no_plan);
9
Ævar Arnfjörð Bjarmasond998bd42010-06-24 17:44:46 +000010BEGIN {
11 # t9700-perl-git.sh kicks off our testing, so we have to go from
12 # there.
Brandon Casey15eeb6e2010-06-28 17:51:02 -050013 Test::More->builder->current_test(1);
14 Test::More->builder->no_ending(1);
Ævar Arnfjörð Bjarmasond998bd42010-06-24 17:44:46 +000015}
16
Lea Wiemannb4780d72008-06-19 22:32:49 +020017use Cwd;
18use File::Basename;
Lea Wiemannb4780d72008-06-19 22:32:49 +020019
Jeff King839b6392016-03-04 06:43:21 -050020sub adjust_dirsep {
21 my $path = shift;
22 $path =~ s{\\}{/}g;
23 return $path;
24}
25
brian m. carlsone0a646e2020-07-29 23:14:15 +000026my $oid_re = qr/^[0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?$/;
27
Lea Wiemannb4780d72008-06-19 22:32:49 +020028BEGIN { use_ok('Git') }
29
30# set up
Ramsay Jones81f40262009-11-19 18:41:20 +000031our $abs_repo_dir = cwd();
Lea Wiemannb4780d72008-06-19 22:32:49 +020032ok(our $r = Git->repository(Directory => "."), "open repository");
Jeff King20da61f2022-10-22 18:08:59 -040033{
34 local $ENV{GIT_TEST_ASSUME_DIFFERENT_OWNER} = 1;
35 my $failed;
36
37 $failed = eval { Git->repository(Directory => $abs_repo_dir) };
38 ok(!$failed, "reject unsafe non-bare repository");
39 like($@, qr/not a git repository/i, "unsafe error message");
40
41 $failed = eval { Git->repository(Directory => "$abs_repo_dir/bare.git") };
42 ok(!$failed, "reject unsafe bare repository");
43 like($@, qr/not a git repository/i, "unsafe error message");
44}
Lea Wiemannb4780d72008-06-19 22:32:49 +020045
46# config
47is($r->config("test.string"), "value", "config scalar: string");
48is_deeply([$r->config("test.dupstring")], ["value1", "value2"],
49 "config array: string");
50is($r->config("test.nonexistent"), undef, "config scalar: nonexistent");
51is_deeply([$r->config("test.nonexistent")], [], "config array: nonexistent");
52is($r->config_int("test.int"), 2048, "config_int: integer");
53is($r->config_int("test.nonexistent"), undef, "config_int: nonexistent");
54ok($r->config_bool("test.booltrue"), "config_bool: true");
55ok(!$r->config_bool("test.boolfalse"), "config_bool: false");
Jeff King839b6392016-03-04 06:43:21 -050056is(adjust_dirsep($r->config_path("test.path")), $r->config("test.pathexpanded"),
Jakub Narebskicb9c9df2011-10-21 20:42:44 +020057 "config_path: ~/foo expansion");
58is_deeply([$r->config_path("test.pathmulti")], ["foo", "bar"],
59 "config_path: multiple values");
Lea Wiemannb4780d72008-06-19 22:32:49 +020060our $ansi_green = "\x1b[32m";
61is($r->get_color("color.test.slot1", "red"), $ansi_green, "get_color");
62# Cannot test $r->get_colorbool("color.foo")) because we do not
63# control whether our STDOUT is a terminal.
64
65# Failure cases for config:
66# Save and restore STDERR; we will probably extract this into a
67# "dies_ok" method and possibly move the STDERR handling to Git.pm.
Thomas Rasta749c0b2013-04-04 22:41:42 +020068open our $tmpstderr, ">&STDERR" or die "cannot save STDERR";
69open STDERR, ">", "/dev/null" or die "cannot redirect STDERR to /dev/null";
Jeff King00b347d2012-10-23 16:52:44 -040070is($r->config("test.dupstring"), "value2", "config: multivar");
Lea Wiemannb4780d72008-06-19 22:32:49 +020071eval { $r->config_bool("test.boolother") };
72ok($@, "config_bool: non-boolean values fail");
73open STDERR, ">&", $tmpstderr or die "cannot restore STDERR";
74
75# ident
Jeff Kingfccf41e2020-07-09 16:35:50 -040076like($r->ident("aUthor"), qr/^A U Thor <author\@example.com> [0-9]+ [+-]\d{4}$/,
Lea Wiemannb4780d72008-06-19 22:32:49 +020077 "ident scalar: author (type)");
Jeff Kingfccf41e2020-07-09 16:35:50 -040078like($r->ident("cOmmitter"), qr/^C O Mitter <committer\@example.com> [0-9]+ [+-]\d{4}$/,
Lea Wiemannb4780d72008-06-19 22:32:49 +020079 "ident scalar: committer (type)");
80is($r->ident("invalid"), "invalid", "ident scalar: invalid ident string (no parsing)");
81my ($name, $email, $time_tz) = $r->ident('author');
82is_deeply([$name, $email], ["A U Thor", "author\@example.com"],
83 "ident array: author");
Jeff Kingfccf41e2020-07-09 16:35:50 -040084like($time_tz, qr/[0-9]+ [+-]\d{4}/, "ident array: author");
Lea Wiemannb4780d72008-06-19 22:32:49 +020085is_deeply([$r->ident("Name <email> 123 +0000")], ["Name", "email", "123 +0000"],
86 "ident array: ident string");
87is_deeply([$r->ident("invalid")], [], "ident array: invalid ident string");
88
89# ident_person
90is($r->ident_person("aUthor"), "A U Thor <author\@example.com>",
91 "ident_person: author (type)");
92is($r->ident_person("Name <email> 123 +0000"), "Name <email>",
93 "ident_person: ident string");
94is($r->ident_person("Name", "email", "123 +0000"), "Name <email>",
95 "ident_person: array");
96
97# objects and hashes
98ok(our $file1hash = $r->command_oneline('rev-parse', "HEAD:file1"), "(get file hash)");
Brandon Caseybf557782008-09-15 11:25:22 -050099my $tmpfile = "file.tmp";
100open TEMPFILE, "+>$tmpfile" or die "Can't open $tmpfile: $!";
101is($r->cat_blob($file1hash, \*TEMPFILE), 15, "cat_blob: size");
Lea Wiemannb4780d72008-06-19 22:32:49 +0200102our $blobcontents;
Brandon Caseybf557782008-09-15 11:25:22 -0500103{ local $/; seek TEMPFILE, 0, 0; $blobcontents = <TEMPFILE>; }
Lea Wiemannb4780d72008-06-19 22:32:49 +0200104is($blobcontents, "changed file 1\n", "cat_blob: data");
Brandon Caseybf557782008-09-15 11:25:22 -0500105close TEMPFILE or die "Failed writing to $tmpfile: $!";
Lea Wiemannb4780d72008-06-19 22:32:49 +0200106is(Git::hash_object("blob", $tmpfile), $file1hash, "hash_object: roundtrip");
Brandon Caseybf557782008-09-15 11:25:22 -0500107open TEMPFILE, ">$tmpfile" or die "Can't open $tmpfile: $!";
108print TEMPFILE my $test_text = "test blob, to be inserted\n";
109close TEMPFILE or die "Failed writing to $tmpfile: $!";
brian m. carlsone0a646e2020-07-29 23:14:15 +0000110like(our $newhash = $r->hash_and_insert_object($tmpfile), $oid_re,
Lea Wiemannb4780d72008-06-19 22:32:49 +0200111 "hash_and_insert_object: returns hash");
Brandon Caseybf557782008-09-15 11:25:22 -0500112open TEMPFILE, "+>$tmpfile" or die "Can't open $tmpfile: $!";
113is($r->cat_blob($newhash, \*TEMPFILE), length $test_text, "cat_blob: roundtrip size");
114{ local $/; seek TEMPFILE, 0, 0; $blobcontents = <TEMPFILE>; }
Lea Wiemannb4780d72008-06-19 22:32:49 +0200115is($blobcontents, $test_text, "cat_blob: roundtrip data");
Brandon Caseybf557782008-09-15 11:25:22 -0500116close TEMPFILE;
117unlink $tmpfile;
Lea Wiemannb4780d72008-06-19 22:32:49 +0200118
119# paths
Frank Lichtenheldfe53bbc2009-05-07 15:41:28 +0200120is($r->repo_path, $abs_repo_dir . "/.git", "repo_path");
Lea Wiemannb4780d72008-06-19 22:32:49 +0200121is($r->wc_path, $abs_repo_dir . "/", "wc_path");
122is($r->wc_subdir, "", "wc_subdir initial");
123$r->wc_chdir("directory1");
124is($r->wc_subdir, "directory1", "wc_subdir after wc_chdir");
Frank Lichtenheldfe53bbc2009-05-07 15:41:28 +0200125is($r->config("test.string"), "value", "config after wc_chdir");
Frank Lichtenheldda159c72009-05-07 15:41:27 +0200126
127# Object generation in sub directory
128chdir("directory2");
129my $r2 = Git->repository();
130is($r2->repo_path, $abs_repo_dir . "/.git", "repo_path (2)");
131is($r2->wc_path, $abs_repo_dir . "/", "wc_path (2)");
132is($r2->wc_subdir, "directory2/", "wc_subdir initial (2)");
133
134# commands in sub directory
135my $last_commit = $r2->command_oneline(qw(rev-parse --verify HEAD));
brian m. carlsone0a646e2020-07-29 23:14:15 +0000136like($last_commit, $oid_re, 'rev-parse returned hash');
Frank Lichtenheldda159c72009-05-07 15:41:27 +0200137my $dir_commit = $r2->command_oneline('log', '-n1', '--pretty=format:%H', '.');
138isnt($last_commit, $dir_commit, 'log . does not show last commit');
Ævar Arnfjörð Bjarmasond998bd42010-06-24 17:44:46 +0000139
Masatake Osanai48d9e6a2011-02-15 07:13:04 +0900140# commands outside working tree
141chdir($abs_repo_dir . '/..');
142my $r3 = Git->repository(Directory => $abs_repo_dir);
143my $tmpfile3 = "$abs_repo_dir/file3.tmp";
144open TEMPFILE3, "+>$tmpfile3" or die "Can't open $tmpfile3: $!";
145is($r3->cat_blob($file1hash, \*TEMPFILE3), 15, "cat_blob(outside): size");
146close TEMPFILE3;
147unlink $tmpfile3;
148chdir($abs_repo_dir);
149
Phillip Wood3f9c6372017-06-30 10:49:12 +0100150# unquoting paths
151is(Git::unquote_path('abc'), 'abc', 'unquote unquoted path');
152is(Git::unquote_path('"abc def"'), 'abc def', 'unquote simple quoted path');
153is(Git::unquote_path('"abc\"\\\\ \a\b\t\n\v\f\r\001\040"'),
154 "abc\"\\ \x07\x08\x09\x0a\x0b\x0c\x0d\x01 ",
155 'unquote escape sequences');
156
Brandon Casey15eeb6e2010-06-28 17:51:02 -0500157printf "1..%d\n", Test::More->builder->current_test;
Ævar Arnfjörð Bjarmasond998bd42010-06-24 17:44:46 +0000158
Ævar Arnfjörð Bjarmason635155f2010-06-26 12:42:41 +0000159my $is_passing = eval { Test::More->is_passing };
160exit($is_passing ? 0 : 1) unless $@ =~ /Can't locate object method/;