SEE ALSO for C::P::Cache
[catagits/Catalyst-Plugin-Cache.git] / t / currying_conf.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More 'no_plan';
7 use Test::Deep qw/superhashof cmp_deeply/;
8
9 use Scalar::Util qw/refaddr/;
10
11 use ok "Catalyst::Plugin::Cache";
12
13 {
14     package MockApp;
15     use base qw/Catalyst::Plugin::Cache/;
16
17     my %config = (
18         cache => {
19             profiles => {
20                 foo => {
21                     bah => "foo",
22                 },
23                 bar => bless( {}, "SomeClass" ),
24             },
25         },
26     );
27     sub config { \%config };
28
29     package SomeClass;
30     sub get {}
31     sub set {}
32     sub remove {}
33 }
34
35 MockApp->setup;
36 my $c = bless {}, "MockApp";
37
38 MockApp->register_cache_backend( default => bless({}, "SomeClass") );
39
40 can_ok( $c, "curry_cache" );
41 can_ok( $c, "get_preset_curried" );
42
43 isa_ok( $c->cache, "Catalyst::Plugin::Cache::Curried" );
44
45 is( refaddr($c->cache), refaddr($c->cache), "default cache is memoized, so it is ==");
46
47 isa_ok( $c->cache("foo"), "Catalyst::Plugin::Cache::Curried", "cache('foo')" );
48
49 cmp_deeply( { @{ $c->cache("foo")->meta } }, superhashof({ bah => "foo" }), "meta is in place" ); 
50
51 is( refaddr( $c->cache("bar") ), refaddr( $c->cache("bar") ), "since bar is hard coded as an object it's always the same" );
52