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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
use strict;
use warnings;
use Test::More tests => 5;
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::Generic;
use Moo;
with 'Dancer2::Core::Role::Serializer';
has '+content_type' => ( default => 'plain/test' );
sub serialize {1}
sub deserialize {1}
}
subtest 'support_content_type' => sub {
plan tests => 7;
my $srl = Serializer::Generic->new;
isa_ok( $srl, 'Serializer::Generic' );
can_ok( $srl, 'support_content_type' );
is( $srl->support_content_type(), undef, 'Empty returns undef' );
is(
$srl->support_content_type('plain/foo;plain/bar'),
'',
'Content type not supported',
);
is(
$srl->support_content_type('plain/foo;plain/test'),
'',
'Content type not supported (because not first)',
);
is(
$srl->support_content_type('plain/test'),
1,
'Content type supported when single',
);
is(
$srl->support_content_type('plain/test;plain/foo'),
1,
'Content type supported when first',
);
};
{
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',
);
}
|