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