misc minor fixes for C::P::Cache
[catagits/Catalyst-Plugin-Cache.git] / t / key_regexes.t
CommitLineData
c28ee69c 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use Test::More 'no_plan';
7
8use ok "Catalyst::Plugin::Cache";
9use ok "Catalyst::Plugin::Cache::Choose::KeyRegexes";
10
33002c69 11use Catalyst::Plugin::Cache::Backend::Memory;
12
c28ee69c 13{
14 package MockApp;
15 use base qw/Catalyst::Plugin::Cache Catalyst::Plugin::Cache::Choose::KeyRegexes/;
16
17 our %config = (
18 cache => {
19 key_regexes => [
20 qr/^foo/ => "foo_store",
21 qr/^bar/ => "bar_store",
22 ],
23 },
24 );
25 sub config { \%config }
c28ee69c 26}
27
28
29MockApp->setup;
30my $c = bless {}, "MockApp";
31
33002c69 32MockApp->register_cache_backend( default => Catalyst::Plugin::Cache::Backend::Memory->new );
33MockApp->register_cache_backend( foo_store => Catalyst::Plugin::Cache::Backend::Memory->new );
34MockApp->register_cache_backend( bar_store => Catalyst::Plugin::Cache::Backend::Memory->new );
c28ee69c 35
2e4bde89 36is( $c->choose_cache_backend_wrapper( key => "baz" ), $c->default_cache_backend, "chose default" );
37is( $c->choose_cache_backend_wrapper( key => "foo" ), $c->get_cache_backend("foo_store"), "chose foo" );
38is( $c->choose_cache_backend_wrapper( key => "bar" ), $c->get_cache_backend("bar_store"), "chose bar" );
c28ee69c 39
40$c->cache_set( foo_laa => "laa" );
41$c->cache_set( bar_laa => "laa" );
42$c->cache_set( baz_laa => "laa" );
43
2e4bde89 44is( $c->default_cache_backend->get("baz_laa"), "laa", "non match stored in default" );
45is( $c->default_cache_backend->get("foo_laa"), undef, "no foo key" );
46is( $c->default_cache_backend->get("bar_laa"), undef, "no bar key" );
c28ee69c 47
48
2e4bde89 49is( $c->get_cache_backend("foo_store")->get("baz_laa"), undef, "no non match in foo store" );
50is( $c->get_cache_backend("foo_store")->get("foo_laa"), "laa", "has foo key" );
51is( $c->get_cache_backend("foo_store")->get("bar_laa"), undef, "no bar key" );
c28ee69c 52
53
2e4bde89 54is( $c->get_cache_backend("bar_store")->get("baz_laa"), undef, "no non match in bar store" );
55is( $c->get_cache_backend("bar_store")->get("foo_laa"), undef, "no foo key" );
56is( $c->get_cache_backend("bar_store")->get("bar_laa"), "laa", "has bar key" );
c28ee69c 57
58