Correct example link and FCGI script.
[catagits/Gitalist.git] / t / model_collectionofrepos.t
CommitLineData
329ac3b2 1use strict;
2use warnings;
3
4use Test::More;
5use Test::Exception;
20f9a2d4 6use FindBin;
329ac3b2 7
8use Moose ();
9use Moose::Object;
20f9a2d4 10use Moose::Autobox;
329ac3b2 11use Class::MOP::Class;
12use Catalyst::Request;
13use Catalyst::Response;
14use Catalyst::Utils;
7bf1a6f5 15use Gitalist::Model::CollectionOfRepos;
329ac3b2 16use File::Temp qw/tempdir/;
7bf1a6f5 17
329ac3b2 18my $mock_ctx_meta = Class::MOP::Class->create_anon_class( superclasses => ['Moose::Object'] );
19$mock_ctx_meta->add_attribute($_, accessor => $_, required => 1) for qw/request response/;
20$mock_ctx_meta->add_attribute('stash', accessor => 'stash', required => 1, default => sub { {} });
21$mock_ctx_meta->add_around_method_modifier( stash => sub { # Nicked straight from Catalyst.pm
22 my $orig = shift;
23 my $c = shift;
24 my $stash = $orig->($c);
25 if (@_) {
26 my $new_stash = @_ > 1 ? {@_} : $_[0];
27 croak('stash takes a hash or hashref') unless ref $new_stash;
28 foreach my $key ( keys %$new_stash ) {
29 $stash->{$key} = $new_stash->{$key};
30 }
31 }
32 return $stash;
33});
34our $ctx_gen = sub {
35 my ($cb, $stash) = @_;
36 $stash ||= {};
37 my $ctx = $mock_ctx_meta->new_object(
38 response => Catalyst::Response->new,
39 request => Catalyst::Request->new,
40 stash => { %$stash }, # Shallow copy to try and help the user out. Should we clone?
41 );
42 $ctx->response->_context($ctx);
43 $ctx->request->_context($ctx);
44 $cb->($ctx) if $cb;
45 return $ctx;
46};
47
48local %ENV = %ENV;
49delete $ENV{GITALIST_REPO_DIR};
50
7bf1a6f5 51throws_ok { Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), {}) }
329ac3b2 52 qr/Cannot find repository dir/, 'Blows up nicely with no repos dir';
53
7bf1a6f5 54throws_ok { Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), { repo_dir => '/does/not/exist' }) }
329ac3b2 55 qr|Cannot find repository dir: "/does/not/exist"|, 'Blows up nicely with repos dir does not exist';
56
57{
58 my $td = tempdir( CLEANUP => 1 );
59 test_with_config({ repo_dir => $td }, 'repo_dir is tempdir');
60 # NOTE - This is cheating, there isn't a real git repository here, so things will explode (hopefully)
61 # if we go much further..
62 test_with_config({ repos => $td }, 'repos is tempdir (scalar)');
63 test_with_config({ repos => [$td] }, 'repos is tempdir (array)');
64}
65
66# Note - we treat an empty list of repos as if it doesn't exist at all.
7bf1a6f5 67throws_ok { Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), { repos => [] } ) }
329ac3b2 68 qr/Cannot find repository dir/, 'Blows up nicely with no repos list';
69
7bf1a6f5 70throws_ok { Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), { repos => [ '/does/not/exist' ] } ) }
329ac3b2 71 qr/Cannot find repository directories/, 'Blows up nicely with repos list - 1 unknown item (array)';
7bf1a6f5 72throws_ok { Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), { repos => '/does/not/exist' } ) }
329ac3b2 73 qr/Cannot find repository directories/, 'Blows up nicely with repos list - 1 unknown item (scalar))';
74
7bf1a6f5 75throws_ok { Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), { repos => [ '/does/not/exist', '/also/does/not/exist' ] } ) }
329ac3b2 76 qr/Cannot find repository directories/, 'Blows up nicely with repos list - 2 unknown items';
77
7bf1a6f5 78throws_ok { Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), { repos => [ tempdir( CLEANUP => 1), '/also/does/not/exist' ] } ) }
329ac3b2 79 qr|Cannot find repository directories.*/also/does/not/exist|, 'Blows up nicely with repos list - 1 known, 1 unknown items';
80
81{
82 my $td = tempdir( CLEANUP => 1 );
83 local %ENV = %ENV;
84 $ENV{GITALIST_REPO_DIR} = $td;
7bf1a6f5 85 lives_ok { Gitalist::Model::CollectionOfRepos->COMPONENT($ctx_gen->(), {}) } 'GITALIST_REPO_DIR env variable works';
329ac3b2 86}
87
20f9a2d4 88{
89 my $i = test_with_config({ repo_dir => "$FindBin::Bin/lib/repositories"});
90 is scalar($i->repositories->flatten), 3, 'Found 3 repos';
91}
92
93{
94 my $i = test_with_config({ repos => [
95 "$FindBin::Bin/lib/repositories/bare.git",
96 "$FindBin::Bin/lib/repositories/repo1",
97 "$FindBin::Bin/lib/repositories/nodescription",
98 ]});
99 is scalar($i->repositories->flatten), 3, 'Found 3 repos';
100}
101
329ac3b2 102sub test_with_config {
103 my ($config, $msg) = @_;
104 my $ctx = $ctx_gen->();
105
106 my $m;
7bf1a6f5 107 lives_ok { $m = Gitalist::Model::CollectionOfRepos->COMPONENT($ctx, $config) } $msg;
329ac3b2 108 ok $m, 'Has model';
109 my $i = $m->ACCEPT_CONTEXT($ctx);
110 ok $i, 'Has model instance from ACCEPT_CONTEXT';
111 isnt $i, $m, 'Model instance returned from ACCEPT_CONTEXT not same as model';
112 is $i, $m->ACCEPT_CONTEXT($ctx), 'Same model instance for same context';
113 isnt $i, $m->ACCEPT_CONTEXT($ctx_gen->()), 'Different model instance for different context';
114 return $i;
115}
116
117done_testing;