1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use Plack::Request;
use Plack::Session::State;
use Plack::Session::Store::Cache;
use lib "t/lib";
use TestSessionHash;
{
package TestCache;
sub new {
bless {} => shift;
}
sub set {
my ($self, $key, $val ) = @_;
$self->{$key} = $val;
}
sub get {
my ($self, $key ) = @_;
$self->{$key};
}
sub remove {
my ($self, $key ) = @_;
delete $self->{$key};
}
}
TestSessionHash::run_all_tests(
store => Plack::Session::Store::Cache->new( cache => TestCache->new ),
state => Plack::Session::State->new,
env_cb => sub {
open my $in, '<', \do { my $d };
my $env = {
'psgi.version' => [ 1, 0 ],
'psgi.input' => $in,
'psgi.errors' => *STDERR,
'psgi.url_scheme' => 'http',
SERVER_PORT => 80,
REQUEST_METHOD => 'GET',
QUERY_STRING => join "&" => map { $_ . "=" . $_[0]->{ $_ } } keys %{$_[0] || +{}},
};
},
);
done_testing;
|