Commit changes that were in 1.002
[catagits/Catalyst-Authentication-Credential-HTTP.git] / t / live_app_digest.t
index c50bac2..79c46e1 100644 (file)
@@ -6,9 +6,12 @@ BEGIN {
     eval { require Test::WWW::Mechanize::Catalyst }
       or plan skip_all =>
       "Test::WWW::Mechanize::Catalyst is needed for this test";
-    eval { require Catalyst::Plugin::Cache::FileCache }
+    eval { require Catalyst::Plugin::Cache }
       or plan skip_all =>
-      "Catalyst::Plugin::Cache::FileCache is needed for this test";
+      "Catalyst::Plugin::Cache is needed for this test";
+    eval { require Cache::FileCache }
+      or plan skip_all =>
+      "Cache::FileCache is needed for this test";
     plan tests => 4;
 }
 use HTTP::Request;
@@ -16,21 +19,37 @@ use HTTP::Request;
     package AuthTestApp;
     use Catalyst qw/
       Authentication
-      Authentication::Store::Minimal
-      Authentication::Credential::HTTP
-      Cache::FileCache
+      Cache
       /;
     use Test::More;
-    our $users;
+    our %users;
     sub moose : Local {
         my ( $self, $c ) = @_;
-        $c->authorization_required( realm => 'testrealm@host.com' );
+        #$c->authenticate( { realm => 'testrealm@host.com' } );
+        $c->authenticate();
         $c->res->body( $c->user->id );
     }
-    __PACKAGE__->config->{authentication}{http}{type} = 'digest';
-    __PACKAGE__->config->{authentication}{users} = $users = {
-        Mufasa => { password         => "Circle Of Life", },
+    %users = ( Mufasa => { pass         => "Circle Of Life", }, );
+    __PACKAGE__->config->{cache}{backend} = {
+        class => 'Cache::FileCache',
     };
+    __PACKAGE__->config( authentication => {
+        default_realm => 'testrealm@host.com',
+        realms => {
+            'testrealm@host.com' => {
+                store => {
+                    class => 'Minimal',
+                    users => \%users,
+                },
+                credential => {
+                    class => 'HTTP',
+                    type  => 'digest',
+                    password_type => 'clear', 
+                    password_field => 'pass'
+                },
+            },
+        },
+    });
     __PACKAGE__->setup;
 }
 use Test::WWW::Mechanize::Catalyst qw/AuthTestApp/;
@@ -76,3 +95,4 @@ $r->headers->push_header( Authorization => $response );
 $mech->request($r);
 is( $mech->status, 200, "status is 200" );
 $mech->content_contains( "Mufasa", "Mufasa output" );
+