Add testing for the catalyst model behavior.
Tomas Doran [Sun, 27 Dec 2009 18:00:28 +0000 (18:00 +0000)]
This needs to go further with testing the object returned from test_with_config
does the right thing etc.

t/model_gitrepos.t [new file with mode: 0644]

diff --git a/t/model_gitrepos.t b/t/model_gitrepos.t
new file mode 100644 (file)
index 0000000..3b7cb34
--- /dev/null
@@ -0,0 +1,101 @@
+use strict;
+use warnings;
+
+use Test::More;
+use Test::Exception;
+
+use Moose ();
+use Moose::Object;
+use Class::MOP::Class;
+use Catalyst::Request;
+use Catalyst::Response;
+use Catalyst::Utils;
+use Gitalist::Model::GitRepos;
+use File::Temp qw/tempdir/;
+my $mock_ctx_meta = Class::MOP::Class->create_anon_class( superclasses => ['Moose::Object'] );
+$mock_ctx_meta->add_attribute($_, accessor => $_, required => 1) for qw/request response/;
+$mock_ctx_meta->add_attribute('stash', accessor => 'stash', required => 1, default => sub { {} });
+$mock_ctx_meta->add_around_method_modifier( stash => sub { # Nicked straight from Catalyst.pm
+    my $orig = shift;
+    my $c = shift;
+    my $stash = $orig->($c);
+    if (@_) {
+        my $new_stash = @_ > 1 ? {@_} : $_[0];
+        croak('stash takes a hash or hashref') unless ref $new_stash;
+        foreach my $key ( keys %$new_stash ) {
+          $stash->{$key} = $new_stash->{$key};
+        }
+    }
+    return $stash;
+});
+our $ctx_gen = sub {
+    my ($cb, $stash) = @_;
+    $stash ||= {};
+    my $ctx = $mock_ctx_meta->new_object(
+        response => Catalyst::Response->new,
+        request => Catalyst::Request->new,
+        stash => { %$stash }, # Shallow copy to try and help the user out. Should we clone?
+    );
+    $ctx->response->_context($ctx);
+    $ctx->request->_context($ctx);
+    $cb->($ctx) if $cb;
+    return $ctx;
+};
+
+local %ENV = %ENV;
+delete $ENV{GITALIST_REPO_DIR};
+
+throws_ok { Gitalist::Model::GitRepos->COMPONENT($ctx_gen->(), {}) }
+    qr/Cannot find repository dir/, 'Blows up nicely with no repos dir';
+
+throws_ok { Gitalist::Model::GitRepos->COMPONENT($ctx_gen->(), { repo_dir => '/does/not/exist' }) }
+    qr|Cannot find repository dir: "/does/not/exist"|, 'Blows up nicely with repos dir does not exist';
+
+{
+    my $td = tempdir( CLEANUP => 1 );
+    test_with_config({ repo_dir => $td }, 'repo_dir is tempdir');
+    # NOTE - This is cheating, there isn't a real git repository here, so things will explode (hopefully)
+    #        if we go much further..
+    test_with_config({ repos => $td }, 'repos is tempdir (scalar)');
+    test_with_config({ repos => [$td] }, 'repos is tempdir (array)');
+}
+
+# Note - we treat an empty list of repos as if it doesn't exist at all.
+throws_ok { Gitalist::Model::GitRepos->COMPONENT($ctx_gen->(), { repos => [] } ) }
+    qr/Cannot find repository dir/, 'Blows up nicely with no repos list';
+
+throws_ok { Gitalist::Model::GitRepos->COMPONENT($ctx_gen->(), { repos => [ '/does/not/exist' ] } ) }
+    qr/Cannot find repository directories/, 'Blows up nicely with repos list - 1 unknown item (array)';
+throws_ok { Gitalist::Model::GitRepos->COMPONENT($ctx_gen->(), { repos => '/does/not/exist' } ) }
+    qr/Cannot find repository directories/, 'Blows up nicely with repos list - 1 unknown item (scalar))';
+
+throws_ok { Gitalist::Model::GitRepos->COMPONENT($ctx_gen->(), { repos => [ '/does/not/exist', '/also/does/not/exist' ] } ) }
+    qr/Cannot find repository directories/, 'Blows up nicely with repos list - 2 unknown items';
+
+throws_ok { Gitalist::Model::GitRepos->COMPONENT($ctx_gen->(), { repos => [ tempdir( CLEANUP => 1), '/also/does/not/exist' ] } ) }
+    qr|Cannot find repository directories.*/also/does/not/exist|, 'Blows up nicely with repos list - 1 known, 1 unknown items';
+
+{
+    my $td = tempdir( CLEANUP => 1 );
+    local %ENV = %ENV;
+    $ENV{GITALIST_REPO_DIR} = $td;
+    lives_ok { Gitalist::Model::GitRepos->COMPONENT($ctx_gen->(), {}) } 'GITALIST_REPO_DIR env variable works';
+}
+
+sub test_with_config {
+    my ($config, $msg) = @_;
+    my $ctx = $ctx_gen->();
+        
+    my $m;
+    lives_ok { $m = Gitalist::Model::GitRepos->COMPONENT($ctx, $config) } $msg;
+    ok $m, 'Has model';
+    my $i = $m->ACCEPT_CONTEXT($ctx);
+    ok $i, 'Has model instance from ACCEPT_CONTEXT';
+    isnt $i, $m, 'Model instance returned from ACCEPT_CONTEXT not same as model';
+    is $i, $m->ACCEPT_CONTEXT($ctx), 'Same model instance for same context';
+    isnt $i, $m->ACCEPT_CONTEXT($ctx_gen->()), 'Different model instance for different context';
+    return $i;
+}
+
+done_testing;