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
|
=pod
=encoding utf-8
=head1 PURPOSE
Checks the C<Split> and C<Join> parameterized coercions from
L<Types::Standard>.
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2013-2014, 2017-2023 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
use strict;
use warnings;
use lib qw( . ./t ../inc ./inc );
use utf8;
use Test::More;
use Test::Requires { "Encode" => 0 };
use Test::TypeTiny;
use Encode;
use Types::Standard qw( Str ArrayRef HashRef Join Split );
use Type::Utils;
my $chars = "Café Paris|Garçon";
my $bytes_utf8 = Encode::encode("utf-8", $chars);
my $bytes_western = Encode::encode("iso-8859-1", $chars);
is(length($chars), 17, 'length $chars == 17');
is(length($bytes_utf8), 19, 'length $bytes_utf8 == 19');
is(length($bytes_western), 17, 'length $bytes_western == 17');
my $SplitSpace = (ArrayRef[Str])->plus_coercions(Split[qr/\s/]);
my $SplitPipe = (ArrayRef[Str])->plus_coercions(Split[qr/\|/]);
ok($SplitSpace->can_be_inlined, '$SplitSpace can be inlined');
ok($SplitPipe->can_be_inlined, '$SplitPipe can be inlined');
is_deeply(
$SplitSpace->coerce($chars),
[ "Café", "Paris|Garçon" ],
'$SplitSpace->coerce($chars)',
);
is_deeply(
$SplitSpace->coerce($bytes_utf8),
[ map Encode::encode("utf-8", $_), "Café", "Paris|Garçon" ],
'$SplitSpace->coerce($bytes_utf8)',
);
is_deeply(
$SplitSpace->coerce($bytes_western),
[ map Encode::encode("iso-8859-1", $_), "Café", "Paris|Garçon" ],
'$SplitSpace->coerce($bytes_western)',
);
should_pass($SplitSpace->coerce($chars), ArrayRef[Str]);
should_pass($SplitSpace->coerce($bytes_utf8), ArrayRef[Str]);
should_pass($SplitSpace->coerce($bytes_western), ArrayRef[Str]);
is_deeply(
my $arr_chars = $SplitPipe->coerce($chars),
[ "Café Paris", "Garçon" ],
'$SplitPipe->coerce($chars)',
);
is_deeply(
my $arr_bytes_utf8 = $SplitPipe->coerce($bytes_utf8),
[ map Encode::encode("utf-8", $_), "Café Paris", "Garçon" ],
'$SplitPipe->coerce($bytes_utf8)',
);
is_deeply(
my $arr_bytes_western = $SplitPipe->coerce($bytes_western),
[ map Encode::encode("iso-8859-1", $_), "Café Paris", "Garçon" ],
'$SplitPipe->coerce($bytes_western)',
);
my $JoinPipe = Str->plus_coercions(Join["|"]);
is(
$_ = $JoinPipe->coerce($arr_chars),
$chars,
'$JoinPipe->coerce($arr_chars)',
);
should_pass($_, Str);
is(
$_ = $JoinPipe->coerce($arr_bytes_utf8),
$bytes_utf8,
'$JoinPipe->coerce($arr_bytes_utf8)',
);
should_pass($_, Str);
is(
$_ = $JoinPipe->coerce($arr_bytes_western),
$bytes_western,
'$JoinPipe->coerce($arr_bytes_western)',
);
should_pass($_, Str);
# Re-parameterization stuff:
{
# A type constraint with a useless parameter...
#
my $Stringy = Str->create_child_type(
name => 'Stringy',
parent => Str,
constraint_generator => sub { sub {} },
);
ok($Stringy->is_parameterizable, '$Stringy->is_parameterizable');
# A parameterizable coercion...
my $Joiny = 'Type::Coercion'->new(
name => 'Joiny',
type_constraint => $Stringy,
type_coercion_map => [ HashRef, sub { 'hello' } ],
coercion_generator => sub {
my ($self, $type, $from, $to) = @_;
my $joinchar = ':';
if ($type->is_a_type_of($Stringy) and $type->is_parameterized) {
$joinchar = $type->type_parameter;
}
return (
@{ $self->type_coercion_map },
ArrayRef,
sub { my @arr = @$_; join($joinchar, @arr[$from..$to]) },
);
},
);
isa_ok(
$Joiny,
'Type::Coercion',
'parameterizable coercion',
);
is(
$Joiny->coerce({}),
'hello',
'... coercion included in base definition works'
);
is_deeply(
$Joiny->coerce(['a'..'z']),
['a'..'z'],
'... coercion generated by parameterization does not exist yet'
);
my $Joiny23 = $Joiny->parameterize(2, 3);
isa_ok(
$Joiny23,
'Type::Coercion',
'parameterized coercion which has not yet been combined with type constraint',
);
is(
$Joiny23->coerce({}),
'hello',
'... coercion included in base definition works'
);
is(
$Joiny23->coerce(['a'..'z']),
'c:d',
'... coercion generated by parameterization works'
);
my $StringyPipe = $Stringy->parameterize('|')->plus_coercions($Joiny23);
isa_ok(
$StringyPipe,
'Type::Tiny',
'type constraint consuming parameterized coercion',
);
is(
$StringyPipe->coerce({}),
'hello',
'... coercion included in base definition works'
);
is(
$StringyPipe->coerce(['a'..'z']),
'c|d',
'... coercion generated by parameterization works; must have been regenerated'
);
}
done_testing;
|