#!perl use strict; use warnings; use DBI; use File::Path; use FindBin; use Test::More; use lib "$FindBin::Bin/lib"; BEGIN { eval { require Test::WWW::Mechanize::Catalyst } or plan skip_all => "Test::WWW::Mechanize::Catalyst is required for this test"; eval { require DBD::SQLite } or plan skip_all => "DBD::SQLite is required for this test"; eval { require DBIx::Class } or plan skip_all => "DBIx::Class is required for this test"; eval { require Catalyst::Plugin::Session; die unless $Catalyst::Plugin::Session::VERSION >= 0.02 } or plan skip_all => "Catalyst::Plugin::Session >= 0.02 is required for this test"; eval { require Catalyst::Plugin::Session::PerUser; die unless $Catalyst::Plugin::Session::PerUser::VERSION >= 0.03 } or plan skip_all => "Catalyst::Plugin::Session::PerUser >= 0.03 is required for this test"; eval { require MIME::Base64 } or plan skip_all => "MIME::Base64 is required for this test"; plan tests => 14; $ENV{TESTAPP_DB_FILE} = "$FindBin::Bin/auth.db"; $ENV{TESTAPP_CONFIG} = { name => 'TestApp', authentication => { dbic => { user_class => 'DBICSchema::User', user_field => 'username', password_field => 'password', password_type => 'clear', session_data_field => 'session_data', }, }, }; $ENV{TESTAPP_PLUGINS} = [ qw/Authentication Authentication::Store::DBIC Authentication::Credential::Password Session Session::Store::Dummy Session::State::Cookie Session::PerUser / ]; } use SetupDB; use Test::WWW::Mechanize::Catalyst 'TestApp'; my $m = Test::WWW::Mechanize::Catalyst->new; # log a user in { $m->get_ok( 'http://localhost/user_login_session?username=andyg&password=hackme', undef, 'request ok' ); $m->content_is( 'andyg', 'user logged in ok' ); } # store a value in the user_session { $m->get_ok( 'http://localhost/set_usersession/bar', undef, 'request ok' ); $m->content_is( 'ok', 'store value in user_session ok' ); } # get the value back out { $m->get_ok( 'http://localhost/get_usersession', undef, 'request ok' ); $m->content_is( 'bar', 'retrieve value from user_session ok' ); } # store a different value in the user_session { $m->get_ok( 'http://localhost/set_usersession/gorch', undef, 'request ok' ); $m->content_is( 'ok', 'store value in user_session ok' ); } # get the value back out { $m->get_ok( 'http://localhost/get_usersession', undef, 'request ok' ); $m->content_is( 'gorch', 'modify value in user_session ok' ); } # log the user out { $m->get_ok( 'http://localhost/user_logout', undef, 'request ok' ); $m->content_is( 'logged out', 'user logged out ok' ); } # verify there is no user_session { $m->get_ok( 'http://localhost/get_usersession', undef, 'request ok' ); $m->content_is( '', 'user_session deleted' ); } # clean up unlink $ENV{TESTAPP_DB_FILE};