DBIx-CouchLike
view release on metacpan or search on metacpan
t/12_reverse.t view on Meta::CPAN
# -*- mode:perl -*-
use strict;
use Test::More qw/ no_plan /;
use Test::Requires qw/ DBD::SQLite /;
BEGIN { use_ok 'DBIx::CouchLike' }
my $dbh = require 't/connect.pl';
ok $dbh;
my $couch = DBIx::CouchLike->new({ dbh => $dbh, table => "view" });
isa_ok $couch => "DBIx::CouchLike";
is $couch->dbh => $dbh;
ok $couch->dbh->ping;
ok $couch->create_table;
my $a_id = $couch->post( 1 => { tags => ['dog', 'cat'], name => 'animal' });
my $u_id = $couch->post( 2 => { tags => ['cat', 'more', 'less'], name => 'unix command' });
ok $couch->post("_design/tags" => {
language => 'perl',
views => {
name => {
map => q|
sub {
my ($obj, $emit) = @_;
for my $tag ( @{ $obj->{tags} } ) {
$emit->( $tag, $obj->{name} );
}
}
|,
}
}
});
my @res = $couch->view("tags/name", { key_reverse => 1 } );
is_deeply \@res => [
{ key => "more", value => "unix command", id => $u_id },
{ key => "less", value => "unix command", id => $u_id },
{ key => "dog", value => "animal", id => $a_id },
{ key => "cat", value => "animal", id => $a_id },
{ key => "cat", value => "unix command", id => $u_id },
];
@res = $couch->view("tags/name", { key_reverse => 1, value_reverse => 1, } );
is_deeply \@res => [
{ key => "more", value => "unix command", id => $u_id },
{ key => "less", value => "unix command", id => $u_id },
{ key => "dog", value => "animal", id => $a_id },
{ key => "cat", value => "unix command", id => $u_id },
{ key => "cat", value => "animal", id => $a_id },
];
@res = $couch->view("tags/name", { value_reverse => 1, } );
is_deeply \@res => [
{ key => "cat", value => "unix command", id => $u_id },
{ key => "cat", value => "animal", id => $a_id },
{ key => "dog", value => "animal", id => $a_id },
{ key => "less", value => "unix command", id => $u_id },
{ key => "more", value => "unix command", id => $u_id },
];
$dbh->commit unless $ENV{DSN};
$dbh->disconnect;
( run in 1.917 second using v1.01-cache-2.11-cpan-97f6503c9c8 )