Regenerated README and fixed tests for bootstrapped checkouts.
[catagits/Gitalist.git] / t / 02git_object.t
CommitLineData
cce03a80 1use FindBin qw/$Bin/;
df629266 2BEGIN {
0556ab26 3 my $env = "$FindBin::Bin/../script/env";
df629266 4 if (-r $env) {
5 do $env or die $@;
6 }
7}
8
a8a8f8f9 9use strict;
10use warnings;
5156786b 11use Test::More;
56908878 12use Test::Exception;
a8a8f8f9 13use Data::Dumper;
14
50394a3e 15use Path::Class;
44a9ed75 16use Gitalist::Git::Repository;
82bc0f05 17my $repository = Gitalist::Git::Repository->new(
b5b638f7 18 dir("$Bin/lib/repositories/repo1"),
50394a3e 19);
20
467fa7d9 21BEGIN {
22 use_ok 'Gitalist::Git::Object::Tree';
23 use_ok 'Gitalist::Git::Object::Blob';
24 use_ok 'Gitalist::Git::Object::Commit';
25 use_ok 'Gitalist::Git::Object::Tag';
26 }
a8a8f8f9 27
467fa7d9 28my $object = Gitalist::Git::Object::Tree->new(
82bc0f05 29 repository => $repository,
a8a8f8f9 30 sha1 => '729a7c3f6ba5453b42d16a43692205f67fb23bc1',
31 type => 'tree',
32 file => 'dir1',
33 mode => 16384,
34);
467fa7d9 35isa_ok($object, 'Gitalist::Git::Object::Tree', 'tree object');
50394a3e 36is($object->sha1,'729a7c3f6ba5453b42d16a43692205f67fb23bc1', 'sha1 is correct');
37is($object->type, 'tree', 'type is correct');
38is($object->file, 'dir1', 'file is correct');
a8a8f8f9 39is($object->mode, 16384, 'mode is correct');
65ffc9fb 40is($object->modestr, 'drwxr-xr-x', "modestr is correct" );
483b98b7 41is($object->size, 33, "size is correct");
a8a8f8f9 42
54368e9d 43# Create object from sha1.
467fa7d9 44my $obj2 = Gitalist::Git::Object::Blob->new(
82bc0f05 45 repository => $repository,
50394a3e 46 sha1 => '5716ca5987cbf97d6bb54920bea6adde242d87e6',
50394a3e 47);
467fa7d9 48isa_ok($obj2, 'Gitalist::Git::Object::Blob', 'blob object');
50394a3e 49is($obj2->sha1,'5716ca5987cbf97d6bb54920bea6adde242d87e6', 'sha1 is correct');
50is($obj2->type, 'blob', 'type is correct');
54368e9d 51is($obj2->mode, 0, 'mode is correct');
65ffc9fb 52is($obj2->modestr, '----------', "modestr is correct" );
56908878 53is($obj2->content, "bar\n", 'obj2 contents is correct');
483b98b7 54is($obj2->size, 4, "size is correct");
56908878 55dies_ok {
56 print $obj2->tree_sha1;
57} 'tree_sha1 on a blob is an exception';
58dies_ok {
59 print $obj2->comment;
60} 'comment is an empty string';
85762693 61
467fa7d9 62my $commit_obj = Gitalist::Git::Object::Commit->new(
82bc0f05 63 repository => $repository,
85762693 64 sha1 => '3f7567c7bdf7e7ebf410926493b92d398333116e',
65);
467fa7d9 66isa_ok($commit_obj, 'Gitalist::Git::Object::Commit', "commit object");
85762693 67my ($tree, $patch) = $commit_obj->diff(
85762693 68 patch => 1,
69);
70$patch = $patch->[0];
71is($patch->{head}, 'diff --git a/file1 b/file1', 'patch->{head} is correct');
72is($patch->{a}, 'a/file1', 'patch->{a} is correct');
73is($patch->{b}, 'b/file1', 'patch->{b} is correct');
74is($patch->{file}, 'file1', 'patch->{file} is correct');
75is($patch->{mode}, '100644', 'patch->{mode} is correct');
76is($patch->{src}, '257cc5642cb1a054f08cc83f2d943e56fd3ebe99', 'patch->{src} is correct');
77is($patch->{index}, 'index 257cc5642cb1a054f08cc83f2d943e56fd3ebe99..5716ca5987cbf97d6bb54920bea6adde242d87e6 100644', 'patch->{index} is correct');
78is($patch->{diff}, '--- a/file1
79+++ b/file1
80@@ -1 +1 @@
81-foo
82+bar
83', 'patch->{diff} is correct');
84is($patch->{dst}, '5716ca5987cbf97d6bb54920bea6adde242d87e6', 'patch->{dst} is correct');
377bf360 85
e4f50c24 86{
87 my $contents = do { local $/; my $fh = $commit_obj->get_patch; <$fh> };
88ok(index($contents,
5156786b 89'From 3f7567c7bdf7e7ebf410926493b92d398333116e Mon Sep 17 00:00:00 2001
377bf360 90From: Florian Ragwitz <rafl@debian.org>
91Date: Tue, 6 Mar 2007 20:39:45 +0100
92Subject: [PATCH] bar
93
f45b8ead 94---
95 file1 | 2 +-
96 1 files changed, 1 insertions(+), 1 deletions(-)
377bf360 97
98diff --git a/file1 b/file1
99index 257cc56..5716ca5 100644
100--- a/file1
101+++ b/file1
102@@ -1 +1 @@
103-foo
104+bar
e4f50c24 105--') == 0, 'commit_obj->get_patch can return a patch')
106 or warn("Got instead: $contents");
107}
f707d264 108
0af41853 109# Note - 2 patches = 3 parts due to where we split.
110{
e4f50c24 111 my $contents = do { local $/; my $fh = $commit_obj->get_patch(undef, 3); <$fh> };
112 my @bits = split /Subject: \[PATC/, $contents;
0af41853 113 is(scalar(@bits), 3,
e4f50c24 114 'commit_obj->get_patch can return a patchset')
115 or warn("Contents was $contents");
0af41853 116}
5156786b 117done_testing;
118