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
|
use strict;
use warnings;
use Test::More tests => 4;
use Test::Fatal;
use_ok('Dancer2::Core::Hook');
{
package Serializer::OK;
use Moo;
with 'Dancer2::Core::Role::Serializer';
has '+content_type' => ( default => sub {'plain/test'} );
sub serialize {'{'.$_[1].'}'}
sub deserialize {'['.$_[1].']'}
}
subtest 'Successful' => sub {
plan tests => 5;
my $srl = Serializer::OK->new;
isa_ok( $srl, 'Serializer::OK' );
$srl->add_hook(
Dancer2::Core::Hook->new(
name => 'engine.serializer.before',
code => sub {
my $content = shift;
::is( $content, 'foo', 'Correct content in before hook' );
},
)
);
$srl->add_hook(
Dancer2::Core::Hook->new(
name => 'engine.serializer.after',
code => sub {
my $content = shift;
::is( $content, '{foo}', 'Correct content in after hook' );
},
)
);
is( $srl->serialize('foo'), '{foo}', 'Serializing' );
is( $srl->deserialize('bar'), '[bar]', 'Deserializing' );
};
{
package Serializer::NotOK;
use Moo;
with 'Dancer2::Core::Role::Serializer';
has '+content_type' => ( default => sub {'plain/test'} );
sub serialize { die '+' . $_[1] . '+' }
sub deserialize { die '-' . $_[1] . '-' }
}
subtest 'Unsuccessful' => sub {
plan tests => 21;
use_ok('Dancer2::Logger::Capture');
{
my $logger = Dancer2::Logger::Capture->new;
isa_ok( $logger, 'Dancer2::Logger::Capture' );
my $srl = Serializer::NotOK->new(
log_cb => sub { $logger->log(@_) }
);
isa_ok( $srl, 'Serializer::NotOK' );
is( $srl->serialize('foo'), undef, 'Serialization result' );
my $trap = $logger->trapper;
isa_ok( $trap, 'Dancer2::Logger::Capture::Trap' );
my $errors = $trap->read;
isa_ok( $errors, 'ARRAY' );
is( scalar @{$errors}, 1, 'One error caught' );
my $msg = $errors->[0];
isa_ok( $msg, 'HASH' );
is( scalar keys %{$msg}, 3, 'Two items in the error' );
is( $msg->{'level'}, 'core', 'Correct level' );
like(
$msg->{'message'},
qr{^Failed to serialize content: \+foo\+},
'Correct error message',
);
}
{
my $logger = Dancer2::Logger::Capture->new;
isa_ok( $logger, 'Dancer2::Logger::Capture' );
my $srl = Serializer::NotOK->new(
log_cb => sub { $logger->log(@_) }
);
isa_ok( $srl, 'Serializer::NotOK' );
is( $srl->deserialize('bar'), undef, 'Deserialization result' );
my $trap = $logger->trapper;
isa_ok( $trap, 'Dancer2::Logger::Capture::Trap' );
my $errors = $trap->read;
isa_ok( $errors, 'ARRAY' );
is( scalar @{$errors}, 1, 'One error caught' );
my $msg = $errors->[0];
isa_ok( $msg, 'HASH' );
is( scalar keys %{$msg}, 3, 'Two items in the error' );
is( $msg->{'level'}, 'core', 'Correct level' );
like(
$msg->{'message'},
qr{^Failed to deserialize content: \-bar\-},
'Correct error message',
);
}
};
{
package Serializer::Empty;
use Moo;
with 'Dancer2::Core::Role::Serializer';
has '+content_type' => ( default => 'plain/test' );
sub serialize {'BAD SERIALIZE'}
sub deserialize {'BAD DESERIALIZE'}
}
subtest 'Called with empty content' => sub {
plan tests => 6;
my $srl = Serializer::Empty->new;
isa_ok( $srl, 'Serializer::Empty' );
can_ok( $srl, qw<serialize deserialize> );
is(
$srl->serialize(),
undef,
'Do not try to serialize without input',
);
is(
$srl->serialize(''),
'',
'Do not try to serialize with empty input',
);
is(
$srl->deserialize(),
undef,
'Do not try to deserialize without input',
);
is(
$srl->deserialize(''),
'',
'Do not try to deserialize with empty input',
);
}
|