The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test::More tests => 4;

use lib 't/lib';
use Dancer qw(:syntax :tests);
use Dancer::Plugin::DBIC qw(rset schema);
use Test::Exception;

eval { require DBD::SQLite };
plan skip_all => 'DBD::SQLite required to run these tests' if $@;

set plugins => {
    DBIC => {
        default => {
            schema_class => 'Foo',
            dsn          =>  'dbi:SQLite:dbname=:memory:',
        },
        foo => {
            alias => 'default',
        },
        badalias => {
            alias => 'zzz',
        },
    }
};

schema->deploy;
ok rset('User')->create({ name => 'bob', age => 30 });

subtest 'default schema' => sub {
    ok my $user = rset('User')->find('bob'), 'found bob';
    is $user->age => '30', 'bob is getting old';
};

subtest 'schema alias' => sub {
    ok my $user = schema('foo')->resultset('User')->find('bob'), 'found bob';
    is $user->age => '30', 'bob is still old';
};

subtest 'bad alias' => sub {
    throws_ok { schema('badalias')->resultset('User')->find('bob') }
        qr/schema alias zzz does not exist in the config/,
        'got bad alias error';
};