4736dd57f84ef98bcdd935a9174742a24fd3f54a
[catagits/Gitalist.git] / t / model_collectionofrepos.t
1 use FindBin qw/$Bin/;
2 BEGIN {
3     my $env = "$FindBin::Bin/../script/env";
4     if (-r $env) {
5         do $env or die $@;
6     }
7 }
8
9 use strict;
10 use warnings;
11
12 use Test::More;
13 use Test::Exception;
14 use lib "$Bin/lib"; # Used for testing of --model-class etc
15
16 use Moose ();
17 use Moose::Object;
18 use Moose::Autobox;
19 use Class::MOP::Class;
20 use Catalyst::Request;
21 use Catalyst::Response;
22 use Catalyst::Utils;
23 use Gitalist::Model::CollectionOfRepos;
24 use File::Temp qw/tempdir tempfile/;
25
26 my $run_options = {};
27 my $mock_ctx_meta = Class::MOP::Class->create_anon_class( superclasses => ['Moose::Object'] );
28 $mock_ctx_meta->add_method('run_options' => sub { $run_options });
29 $mock_ctx_meta->add_attribute($_, accessor => $_, required => 1) for qw/request response/;
30 $mock_ctx_meta->add_method('debug' => sub {});
31 $mock_ctx_meta->add_attribute('stash', accessor => 'stash', required => 1, default => sub { {} });
32 $mock_ctx_meta->add_around_method_modifier( stash => sub { # Nicked straight from Catalyst.pm
33     my $orig = shift;
34     my $c = shift;
35     my $stash = $orig->($c);
36     if (@_) {
37         my $new_stash = @_ > 1 ? {@_} : $_[0];
38         croak('stash takes a hash or hashref') unless ref $new_stash;
39         foreach my $key ( keys %$new_stash ) {
40           $stash->{$key} = $new_stash->{$key};
41         }
42     }
43     return $stash;
44 });
45 my $mock_log = Moose::Meta::Class->create_anon_class( superclasses => ['Moose::Object'] );
46 $mock_log->add_method($_ => sub {}) for qw/ warn info debug /;
47 my $logger = $mock_log->name->new;
48 $mock_ctx_meta->add_method('log' => sub { $logger });
49
50 my $host = "git.shadowcat.co.uk";
51 $mock_ctx_meta->add_method('uri' => sub { URI->new("http://$host/") });
52 our $ctx_gen = sub {
53     my ($cb, %args) = @_;
54     my $ctx = $mock_ctx_meta->new_object(
55         response    => Catalyst::Response->new,
56         request     => Catalyst::Request->new(uri => URI->new("http://$host/")),
57         stash       => {},
58         %args
59     );
60     $ctx->response->_context($ctx);
61     $ctx->request->_context($ctx);
62     $cb->($ctx) if $cb;
63     return $ctx;
64 };
65
66 local %ENV = %ENV;
67 delete $ENV{GITALIST_CONFIG};
68 delete $ENV{GITALIST_REPO_DIR};
69
70 throws_ok { my $i = Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), {}); $i->{_application} = $mock_ctx_meta->name; }
71     qr/Don't know where to get repositores from/, 'Blows up nicely with no repos dir';
72
73 throws_ok { Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), { repo_dir => '/does/not/exist' }) }
74     qr|No such file or directory|, 'Blows up nicely with repos dir does not exist';
75
76 {
77     my $td = tempdir( CLEANUP => 1 );
78     test_with_config({ repo_dir => $td }, msg => 'repo_dir is tempdir');
79     # NOTE - This is cheating, there isn't a real git repository here, so things will explode (hopefully)
80     #        if we go much further..
81     test_with_config({ repos => $td }, msg => 'repos is tempdir (scalar)');
82     test_with_config({ repos => [$td] }, msg => 'repos is tempdir (array)');
83 }
84
85 # Note - we treat an empty list of repos as if it doesn't exist at all.
86 throws_ok { Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), { repos => [] } ) }
87     qr/Cannot find repository dir/, 'Blows up nicely with no repos list';
88
89 throws_ok { Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), { repos => [ '/does/not/exist' ] } ) }
90     qr/No such file or directory/, 'Blows up nicely with repos list - 1 unknown item (array)';
91 throws_ok { Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), { repos => '/does/not/exist' } ) }
92     qr/No such file or directory/, 'Blows up nicely with repos list - 1 unknown item (scalar))';
93
94 throws_ok { Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), { repos => [ '/does/not/exist', '/also/does/not/exist' ] } ) }
95     qr/No such file or directory/, 'Blows up nicely with repos list - 2 unknown items';
96
97 throws_ok { Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), { repos => [ tempdir( CLEANUP => 1), '/also/does/not/exist' ] } ) }
98     qr|No such file or directory|, 'Blows up nicely with repos list - 1 known, 1 unknown items';
99
100 {
101     my $td = tempdir( CLEANUP => 1 );
102     local %ENV = %ENV;
103     $ENV{GITALIST_REPO_DIR} = $td;
104     lives_ok { Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), {}) } 'GITALIST_REPO_DIR env variable works';
105 }
106
107 {
108     my $i = test_with_config({ repo_dir => "$FindBin::Bin/lib/repositories"});
109     is scalar($i->repositories->flatten), 3, 'Found 3 repos';
110     isa_ok $i, 'Gitalist::Git::CollectionOfRepositories::FromDirectory';
111 }
112
113 {
114     my $i = test_with_config({ repo_dir => "$FindBin::Bin/lib/repositories", search_recursively => 1 });
115     is scalar($i->repositories->flatten), 7, 'Found 7 repos recursively using config';
116     isa_ok $i, 'Gitalist::Git::CollectionOfRepositories::FromDirectoryRecursive';
117 }
118  {
119     my($tempfh, $wl) = tempfile(UNLINK => 1);
120     print {$tempfh} "repo1";
121     close $tempfh;
122     my $i = test_with_config({ repo_dir => "$FindBin::Bin/lib/repositories", whitelist => $wl });
123     is scalar($i->repositories->flatten), 1, 'Found 1 repos using whitelist';
124     isa_ok $i, 'Gitalist::Git::CollectionOfRepositories::FromDirectory::WhiteList';
125 }
126
127 {
128     my $i = test_with_config({ repos => [
129         "$FindBin::Bin/lib/repositories/bare.git",
130         "$FindBin::Bin/lib/repositories/repo1",
131         "$FindBin::Bin/lib/repositories/nodescription",
132     ]});
133     is scalar($i->repositories->flatten), 3, 'Found 3 repos';
134     isa_ok $i, 'Gitalist::Git::CollectionOfRepositories::FromListOfDirectories';
135 }
136
137 {
138     my $i = test_with_config({
139         repo_dir => "$FindBin::Bin/lib/repositories",
140         class    => 'TestModelSimple'
141     });
142     is scalar($i->repositories->flatten), 3, 'Found 3 repos';
143     isa_ok $i, 'TestModelSimple';
144 }
145
146 {
147     my $i = test_with_config({
148         repo_dir => "$FindBin::Bin/lib/repositories",
149         class    => 'TestModelFancy',
150         args     => { fanciness => 1 },
151     });
152     is scalar($i->repositories->flatten), 1, 'Found 1 repo';
153     isa_ok $i, 'TestModelFancy';
154     ok $i->fanciness, "The TestModelFancy is fancy (so --model-args worked)";
155 }
156
157 sub test_vhost_instance {
158     test_with_config({
159         class    => 'Gitalist::Git::CollectionOfRepositories::Vhost',
160         args     => {
161             vhost_dispatch => {
162                 "git.shadowcat.co.uk" => "default",
163                 "git.moose.perl.org" => "moose",
164                 "git.catalyst.perl.org" => "catgit",
165                 "_default_" => "default",
166             },
167             collections => {
168                 moose => { class => 'Gitalist::Git::CollectionOfRepositories::FromDirectory', repo_dir => "$FindBin::Bin/lib/repositories_sets/moose" },
169                 catgit => { class => 'Gitalist::Git::CollectionOfRepositories::FromDirectory', repo_dir => "$FindBin::Bin/lib/repositories_sets/catgit" },
170                 default => { class => 'Gitalist::Git::CollectionOfRepositories::FromDirectoryRecursive', repo_dir => "$FindBin::Bin/lib/repositories_sets"},
171             }
172         },
173     });
174 }
175
176 my $c_name = "$FindBin::Bin/lib/repositories_sets/catgit/Catalyst-Runtime";
177 my $m_name = "$FindBin::Bin/lib/repositories_sets/moose/Moose";
178 {
179     my $i = test_vhost_instance();
180     is scalar($i->repositories->flatten), 2, 'Found 2 repos on test vhost';
181     my @r = $i->repositories->flatten;
182     my @paths = sort map { $_->path . "" } $i->repositories->flatten;
183     is_deeply \@paths, [sort $c_name, $m_name];
184 }
185
186 {
187     $host = "git.moose.perl.org";
188     my $i = test_vhost_instance();
189     is scalar($i->repositories->flatten), 1, 'Found 1 repos on moose vhost';
190     is $i->repositories->[0]->path.'', $m_name;
191 }
192
193 {
194     $host = "git.catalyst.perl.org";
195     my $i = test_vhost_instance();
196     is scalar($i->repositories->flatten), 1, 'Found 1 repos on catalyst vhost';
197     is $i->repositories->[0]->path.'', $c_name;
198 }
199
200 {
201     $host = "git.shadowcat.co.uk";
202     my $i = test_vhost_instance();
203     is scalar($i->repositories->flatten), 2, 'Found 2 repos on git.shadowcat vhost';
204     my @paths = sort map { $_->path . "" } $i->repositories->flatten;
205     is_deeply \@paths, [sort $c_name, $m_name];
206 }
207
208 sub test_with_config {
209     my ($config, %opts) = @_;
210     my $msg = delete $opts{msg} || 'Built Model without exception';
211     my $ctx = $ctx_gen->(undef, %opts);
212     my $m;
213     lives_ok { $m = Gitalist::Model::CollectionOfRepos->COMPONENT($ctx, $config) } $msg;
214     ok $m, 'Has model';
215     my $i = $m->ACCEPT_CONTEXT($ctx);
216     ok $i, 'Has model instance from ACCEPT_CONTEXT';
217     return $i;
218 }
219
220 done_testing;