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