git

Форк
0
/t
/
test.pl 
160 строк · 6.3 Кб
1
#!/usr/bin/perl
2
use lib (split(/:/, $ENV{GITPERLLIB}));
3

4
use 5.008001;
5
use warnings;
6
use strict;
7

8
use Test::More qw(no_plan);
9

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);
15
}
16

17
use Cwd;
18
use File::Basename;
19

20
sub adjust_dirsep {
21
	my $path = shift;
22
	$path =~ s{\\}{/}g;
23
	return $path;
24
}
25

26
my $oid_re = qr/^[0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?$/;
27

28
BEGIN { use_ok('Git') }
29

30
# set up
31
our $abs_repo_dir = cwd();
32
ok(our $r = Git->repository(Directory => "."), "open repository");
33
{
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
}
45

46
# config
47
is($r->config("test.string"), "value", "config scalar: string");
48
is_deeply([$r->config("test.dupstring")], ["value1", "value2"],
49
	  "config array: string");
50
is($r->config("test.nonexistent"), undef, "config scalar: nonexistent");
51
is_deeply([$r->config("test.nonexistent")], [], "config array: nonexistent");
52
is($r->config_int("test.int"), 2048, "config_int: integer");
53
is($r->config_int("test.nonexistent"), undef, "config_int: nonexistent");
54
ok($r->config_bool("test.booltrue"), "config_bool: true");
55
ok(!$r->config_bool("test.boolfalse"), "config_bool: false");
56
is(adjust_dirsep($r->config_path("test.path")), $r->config("test.pathexpanded"),
57
   "config_path: ~/foo expansion");
58
is_deeply([$r->config_path("test.pathmulti")], ["foo", "bar"],
59
   "config_path: multiple values");
60
our $ansi_green = "\x1b[32m";
61
is($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.
68
open our $tmpstderr, ">&STDERR" or die "cannot save STDERR";
69
open STDERR, ">", "/dev/null" or die "cannot redirect STDERR to /dev/null";
70
is($r->config("test.dupstring"), "value2", "config: multivar");
71
eval { $r->config_bool("test.boolother") };
72
ok($@, "config_bool: non-boolean values fail");
73
open STDERR, ">&", $tmpstderr or die "cannot restore STDERR";
74

75
# ident
76
like($r->ident("aUthor"), qr/^A U Thor <author\@example.com> [0-9]+ [+-]\d{4}$/,
77
     "ident scalar: author (type)");
78
like($r->ident("cOmmitter"), qr/^C O Mitter <committer\@example.com> [0-9]+ [+-]\d{4}$/,
79
     "ident scalar: committer (type)");
80
is($r->ident("invalid"), "invalid", "ident scalar: invalid ident string (no parsing)");
81
my ($name, $email, $time_tz) = $r->ident('author');
82
is_deeply([$name, $email], ["A U Thor", "author\@example.com"],
83
	 "ident array: author");
84
like($time_tz, qr/[0-9]+ [+-]\d{4}/, "ident array: author");
85
is_deeply([$r->ident("Name <email> 123 +0000")], ["Name", "email", "123 +0000"],
86
	  "ident array: ident string");
87
is_deeply([$r->ident("invalid")], [], "ident array: invalid ident string");
88

89
# ident_person
90
is($r->ident_person("aUthor"), "A U Thor <author\@example.com>",
91
   "ident_person: author (type)");
92
is($r->ident_person("Name <email> 123 +0000"), "Name <email>",
93
   "ident_person: ident string");
94
is($r->ident_person("Name", "email", "123 +0000"), "Name <email>",
95
   "ident_person: array");
96

97
# objects and hashes
98
ok(our $file1hash = $r->command_oneline('rev-parse', "HEAD:file1"), "(get file hash)");
99
my $tmpfile = "file.tmp";
100
open TEMPFILE, "+>$tmpfile" or die "Can't open $tmpfile: $!";
101
is($r->cat_blob($file1hash, \*TEMPFILE), 15, "cat_blob: size");
102
our $blobcontents;
103
{ local $/; seek TEMPFILE, 0, 0; $blobcontents = <TEMPFILE>; }
104
is($blobcontents, "changed file 1\n", "cat_blob: data");
105
close TEMPFILE or die "Failed writing to $tmpfile: $!";
106
is(Git::hash_object("blob", $tmpfile), $file1hash, "hash_object: roundtrip");
107
open TEMPFILE, ">$tmpfile" or die "Can't open $tmpfile: $!";
108
print TEMPFILE my $test_text = "test blob, to be inserted\n";
109
close TEMPFILE or die "Failed writing to $tmpfile: $!";
110
like(our $newhash = $r->hash_and_insert_object($tmpfile), $oid_re,
111
     "hash_and_insert_object: returns hash");
112
open TEMPFILE, "+>$tmpfile" or die "Can't open $tmpfile: $!";
113
is($r->cat_blob($newhash, \*TEMPFILE), length $test_text, "cat_blob: roundtrip size");
114
{ local $/; seek TEMPFILE, 0, 0; $blobcontents = <TEMPFILE>; }
115
is($blobcontents, $test_text, "cat_blob: roundtrip data");
116
close TEMPFILE;
117
unlink $tmpfile;
118

119
# paths
120
is($r->repo_path, $abs_repo_dir . "/.git", "repo_path");
121
is($r->wc_path, $abs_repo_dir . "/", "wc_path");
122
is($r->wc_subdir, "", "wc_subdir initial");
123
$r->wc_chdir("directory1");
124
is($r->wc_subdir, "directory1", "wc_subdir after wc_chdir");
125
is($r->config("test.string"), "value", "config after wc_chdir");
126

127
# Object generation in sub directory
128
chdir("directory2");
129
my $r2 = Git->repository();
130
is($r2->repo_path, $abs_repo_dir . "/.git", "repo_path (2)");
131
is($r2->wc_path, $abs_repo_dir . "/", "wc_path (2)");
132
is($r2->wc_subdir, "directory2/", "wc_subdir initial (2)");
133

134
# commands in sub directory
135
my $last_commit = $r2->command_oneline(qw(rev-parse --verify HEAD));
136
like($last_commit, $oid_re, 'rev-parse returned hash');
137
my $dir_commit = $r2->command_oneline('log', '-n1', '--pretty=format:%H', '.');
138
isnt($last_commit, $dir_commit, 'log . does not show last commit');
139

140
# commands outside working tree
141
chdir($abs_repo_dir . '/..');
142
my $r3 = Git->repository(Directory => $abs_repo_dir);
143
my $tmpfile3 = "$abs_repo_dir/file3.tmp";
144
open TEMPFILE3, "+>$tmpfile3" or die "Can't open $tmpfile3: $!";
145
is($r3->cat_blob($file1hash, \*TEMPFILE3), 15, "cat_blob(outside): size");
146
close TEMPFILE3;
147
unlink $tmpfile3;
148
chdir($abs_repo_dir);
149

150
# unquoting paths
151
is(Git::unquote_path('abc'), 'abc', 'unquote unquoted path');
152
is(Git::unquote_path('"abc def"'), 'abc def', 'unquote simple quoted path');
153
is(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

157
printf "1..%d\n", Test::More->builder->current_test;
158

159
my $is_passing = eval { Test::More->is_passing };
160
exit($is_passing ? 0 : 1) unless $@ =~ /Can't locate object method/;
161

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.