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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
#!/usr/bin/perl
use warnings;
use strict;
use utf8;
use open qw(:std :utf8);
use lib qw(lib ../lib);
use Test::More tests => 10;
use Encode qw(decode encode);
BEGIN {
use_ok 'DBIx::DR::Iterator';
use_ok 'Scalar::Util', 'blessed';
}
{
package TstI;
sub new {
my ($self, $o) = @_;
bless { %$o } => ref($self) || $self;
}
}
package main;
subtest 'normal bless ARRAYREF' => sub {
plan tests => 9;
my $aref = [ { id => 1 }, { id => 2 }, { id => 3 } ];
my $i = DBIx::DR::Iterator->new($aref, -item => 'tst_i');
for (0 .. $#$aref) {
ok !blessed($i->{fetch}[$_]), "item[$_] not blessed";
}
while (my $a = $i->next) {
isa_ok $a => TstI::, 'item fetched';
}
for (0 .. $#$aref) {
ok blessed($i->{fetch}[$_]), "item[$_] blessed";
}
};
subtest 'normal constructor ARRAYREF' => sub {
plan tests => 9;
my $aref = [ { id => 1 }, { id => 2 }, { id => 3 } ];
my $i = DBIx::DR::Iterator->new($aref, -item => 'tst_i#new');
for (0 .. $#$aref) {
ok !blessed($i->{fetch}[$_]), "item[$_] not blessed";
}
while (my $a = $i->next) {
isa_ok $a => TstI::, 'item fetched';
}
for (0 .. $#$aref) {
ok blessed($i->{fetch}[$_]), "item[$_] blessed";
}
};
subtest 'normal bless HASHREF' => sub {
plan tests => 9;
my $href = { a => { id => 1 }, b => { id => 2 }, c => { id => 3 } };
my $i = DBIx::DR::Iterator->new($href, -item => 'tst_i');
for (keys %$href) {
ok !blessed($i->{fetch}{$_}), "item{$_} not blessed";
}
while (my $a = $i->next) {
isa_ok $a => TstI::, 'item fetched';
}
for (keys %$href) {
ok blessed($i->{fetch}{$_}), "item{$_} blessed";
}
};
subtest 'normal constructor HASHREF' => sub {
plan tests => 9;
my $href = { a => { id => 1 }, b => { id => 2 }, c => { id => 3 } };
my $i = DBIx::DR::Iterator->new($href, -item => 'tst_i#new');
for (keys %$href) {
ok !blessed($i->{fetch}{$_}), "item{$_} not blessed";
}
while (my $a = $i->next) {
isa_ok $a => TstI::, 'item fetched';
}
for (keys %$href) {
ok blessed($i->{fetch}{$_}), "item{$_} blessed";
}
};
subtest 'normal bless ARRAYREF no keep_blessed' => sub {
plan tests => 9;
my $aref = [ { id => 1 }, { id => 2 }, { id => 3 } ];
my $i = DBIx::DR::Iterator->new($aref, -item => 'tst_i', -keep_blessed => 0);
for (0 .. $#$aref) {
ok !blessed($i->{fetch}[$_]), "item[$_] not blessed";
}
while (my $a = $i->next) {
isa_ok $a => TstI::, 'item fetched';
}
for (0 .. $#$aref) {
ok blessed($i->{fetch}[$_]), "item[$_] ALWAYS keep blessed";
}
};
subtest 'normal constructor ARRAYREF no keep_blessed' => sub {
plan tests => 9;
my $aref = [ { id => 1 }, { id => 2 }, { id => 3 } ];
my $i = DBIx::DR::Iterator->new($aref, -item => 'tst_i#new', -keep_blessed => 0);
for (0 .. $#$aref) {
ok !blessed($i->{fetch}[$_]), "item[$_] not blessed";
}
while (my $a = $i->next) {
isa_ok $a => TstI::, 'item fetched';
}
for (0 .. $#$aref) {
ok !blessed($i->{fetch}[$_]), "item[$_] NOT blessed";
}
};
subtest 'normal bless HASHREF no keep_blessed' => sub {
plan tests => 9;
my $href = { a => { id => 1 }, b => { id => 2 }, c => { id => 3 } };
my $i = DBIx::DR::Iterator->new($href, -item => 'tst_i', -keep_blessed => 0);
for (keys %$href) {
ok !blessed($i->{fetch}{$_}), "item{$_} not blessed";
}
while (my $a = $i->next) {
isa_ok $a => TstI::, 'item fetched';
}
for (keys %$href) {
ok blessed($i->{fetch}{$_}), "item{$_} ALWAYS keep blessed";
}
};
subtest 'normal constructor HASHREF no keep_blessed' => sub {
plan tests => 9;
my $href = { a => { id => 1 }, b => { id => 2 }, c => { id => 3 } };
my $i = DBIx::DR::Iterator->new($href, -item => 'tst_i#new', -keep_blessed => 0);
for (keys %$href) {
ok !blessed($i->{fetch}{$_}), "item{$_} not blessed";
}
while (my $a = $i->next) {
isa_ok $a => TstI::, 'item fetched';
}
for (keys %$href) {
ok !blessed($i->{fetch}{$_}), "item{$_} NOT blessed";
}
};
|