Factor test applications out to separate files due to change in Catalyst::Test in...
[catagits/Catalyst-Plugin-Authentication.git] / t / lib / AuthSessionTestApp.pm
CommitLineData
a3bf437a 1package User::SessionRestoring;
2use base qw/Catalyst::Plugin::Authentication::User::Hash/;
3
4sub for_session { $_[0]->id }
5sub store { $_[0]->{store} }
6
7package AuthSessionTestApp;
8use Catalyst qw/
9 Session
10 Session::Store::Dummy
11 Session::State::Cookie
12
13 Authentication
14 Authentication::Store::Minimal
15 Authentication::Credential::Password
16/;
17
18use Test::More;
19use Test::Exception;
20
21use Digest::MD5 qw/md5/;
22
23our $users;
24
25sub moose : Local {
26 my ( $self, $c ) = @_;
27
28 ok(!$c->sessionid, "no session id yet");
29 ok(!$c->user_exists, "no user exists");
30 ok(!$c->user, "no user yet");
31 ok($c->login( "foo", "s3cr3t" ), "can login with clear");
32 is( $c->user, $users->{foo}, "user object is in proper place");
33}
34
35sub elk : Local {
36 my ( $self, $c ) = @_;
37
38 ok( $c->sessionid, "session ID was restored" );
39 ok( $c->user_exists, "user exists" );
40 ok( $c->user, "a user was also restored");
41 is_deeply( $c->user, $users->{foo}, "restored user is the right one (deep test - store might change identity)" );
42
43 $c->delete_session("bah");
44}
45
46sub fluffy_bunny : Local {
47 my ( $self, $c ) = @_;
48
49 ok( !$c->sessionid, "no session ID was restored");
50 ok( !$c->user, "no user was restored");
51}
52
53__PACKAGE__->config->{authentication}{users} = $users = {
54 foo => User::SessionRestoring->new(
55 id => 'foo',
56 password => "s3cr3t",
57 ),
58};
59
60__PACKAGE__->setup;
61
62$users->{foo}{store} = __PACKAGE__->default_auth_store;