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 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
|
use 5.008;
use strict;
use warnings;
use Test::More;
use Test::Fatal;
## skip Test::Tabs
{ package Local::Dummy1; use Test::Requires { 'Moo' => '1.006' } };
use constant { true => !!1, false => !!0 };
BEGIN {
package My::Class;
use Moo;
use Sub::HandlesVia;
use Types::Standard 'Str';
has attr => (
is => 'rwp',
isa => Str,
handles_via => 'String',
handles => {
'my_append' => 'append',
'my_chomp' => 'chomp',
'my_chop' => 'chop',
'my_clear' => 'clear',
'my_cmp' => 'cmp',
'my_cmpi' => 'cmpi',
'my_contains' => 'contains',
'my_contains_i' => 'contains_i',
'my_ends_with' => 'ends_with',
'my_ends_with_i' => 'ends_with_i',
'my_eq' => 'eq',
'my_eqi' => 'eqi',
'my_fc' => 'fc',
'my_ge' => 'ge',
'my_gei' => 'gei',
'my_get' => 'get',
'my_gt' => 'gt',
'my_gti' => 'gti',
'my_inc' => 'inc',
'my_lc' => 'lc',
'my_le' => 'le',
'my_lei' => 'lei',
'my_length' => 'length',
'my_lt' => 'lt',
'my_lti' => 'lti',
'my_match' => 'match',
'my_match_i' => 'match_i',
'my_ne' => 'ne',
'my_nei' => 'nei',
'my_prepend' => 'prepend',
'my_replace' => 'replace',
'my_replace_globally' => 'replace_globally',
'my_reset' => 'reset',
'my_set' => 'set',
'my_starts_with' => 'starts_with',
'my_starts_with_i' => 'starts_with_i',
'my_substr' => 'substr',
'my_uc' => 'uc',
},
default => sub { q[] },
);
};
## append
can_ok( 'My::Class', 'my_append' );
subtest 'Testing my_append' => sub {
my $e = exception {
my $object = My::Class->new( attr => 'foo' );
$object->my_append( 'bar' );
is( $object->attr, 'foobar', q{$object->attr is 'foobar'} );
};
is( $e, undef, 'no exception thrown running append example' );
};
## chomp
can_ok( 'My::Class', 'my_chomp' );
## chop
can_ok( 'My::Class', 'my_chop' );
## clear
can_ok( 'My::Class', 'my_clear' );
subtest 'Testing my_clear' => sub {
my $e = exception {
my $object = My::Class->new( attr => 'foo' );
$object->my_clear;
note $object->attr; ## nothing
};
is( $e, undef, 'no exception thrown running clear example' );
};
## cmp
can_ok( 'My::Class', 'my_cmp' );
## cmpi
can_ok( 'My::Class', 'my_cmpi' );
## contains
can_ok( 'My::Class', 'my_contains' );
## contains_i
can_ok( 'My::Class', 'my_contains_i' );
## ends_with
can_ok( 'My::Class', 'my_ends_with' );
## ends_with_i
can_ok( 'My::Class', 'my_ends_with_i' );
## eq
can_ok( 'My::Class', 'my_eq' );
## eqi
can_ok( 'My::Class', 'my_eqi' );
## fc
can_ok( 'My::Class', 'my_fc' );
## ge
can_ok( 'My::Class', 'my_ge' );
## gei
can_ok( 'My::Class', 'my_gei' );
## get
can_ok( 'My::Class', 'my_get' );
subtest 'Testing my_get' => sub {
my $e = exception {
my $object = My::Class->new( attr => 'foo' );
is( $object->my_get, 'foo', q{$object->my_get is 'foo'} );
};
is( $e, undef, 'no exception thrown running get example' );
};
## gt
can_ok( 'My::Class', 'my_gt' );
## gti
can_ok( 'My::Class', 'my_gti' );
## inc
can_ok( 'My::Class', 'my_inc' );
## lc
can_ok( 'My::Class', 'my_lc' );
## le
can_ok( 'My::Class', 'my_le' );
## lei
can_ok( 'My::Class', 'my_lei' );
## length
can_ok( 'My::Class', 'my_length' );
subtest 'Testing my_length' => sub {
my $e = exception {
my $object = My::Class->new( attr => 'foo' );
is( $object->my_length, 3, q{$object->my_length is 3} );
};
is( $e, undef, 'no exception thrown running length example' );
};
## lt
can_ok( 'My::Class', 'my_lt' );
## lti
can_ok( 'My::Class', 'my_lti' );
## match
can_ok( 'My::Class', 'my_match' );
subtest 'Testing my_match' => sub {
my $e = exception {
my $object = My::Class->new( attr => 'foo' );
if ( $object->my_match( '^f..$' ) ) {
note 'matched!';
}
};
is( $e, undef, 'no exception thrown running match example' );
};
## match_i
can_ok( 'My::Class', 'my_match_i' );
subtest 'Testing my_match_i' => sub {
my $e = exception {
my $object = My::Class->new( attr => 'foo' );
if ( $object->my_match_i( '^F..$' ) ) {
note 'matched!';
}
};
is( $e, undef, 'no exception thrown running match_i example' );
};
## ne
can_ok( 'My::Class', 'my_ne' );
## nei
can_ok( 'My::Class', 'my_nei' );
## prepend
can_ok( 'My::Class', 'my_prepend' );
subtest 'Testing my_prepend' => sub {
my $e = exception {
my $object = My::Class->new( attr => 'foo' );
$object->my_prepend( 'bar' );
is( $object->attr, 'barfoo', q{$object->attr is 'barfoo'} );
};
is( $e, undef, 'no exception thrown running prepend example' );
};
## replace
can_ok( 'My::Class', 'my_replace' );
subtest 'Testing my_replace' => sub {
my $e = exception {
my $object = My::Class->new( attr => 'foo' );
$object->my_replace( 'o' => 'a' );
is( $object->attr, 'fao', q{$object->attr is 'fao'} );
my $object2 = My::Class->new( attr => 'foo' );
$object2->my_replace( qr/O/i => sub { return 'e' } );
is( $object2->attr, 'feo', q{$object2->attr is 'feo'} );
};
is( $e, undef, 'no exception thrown running replace example' );
};
## replace_globally
can_ok( 'My::Class', 'my_replace_globally' );
subtest 'Testing my_replace_globally' => sub {
my $e = exception {
my $object = My::Class->new( attr => 'foo' );
$object->my_replace_globally( 'o' => 'a' );
is( $object->attr, 'faa', q{$object->attr is 'faa'} );
my $object2 = My::Class->new( attr => 'foo' );
$object2->my_replace_globally( qr/O/i => sub { return 'e' } );
is( $object2->attr, 'fee', q{$object2->attr is 'fee'} );
};
is( $e, undef, 'no exception thrown running replace_globally example' );
};
## reset
can_ok( 'My::Class', 'my_reset' );
## set
can_ok( 'My::Class', 'my_set' );
subtest 'Testing my_set' => sub {
my $e = exception {
my $object = My::Class->new( attr => 'foo' );
$object->my_set( 'bar' );
is( $object->attr, 'bar', q{$object->attr is 'bar'} );
};
is( $e, undef, 'no exception thrown running set example' );
};
## starts_with
can_ok( 'My::Class', 'my_starts_with' );
## starts_with_i
can_ok( 'My::Class', 'my_starts_with_i' );
## substr
can_ok( 'My::Class', 'my_substr' );
## uc
can_ok( 'My::Class', 'my_uc' );
## Using eq for Enum
subtest q{Using eq for Enum (extended example)} => sub {
my $e = exception {
use strict;
use warnings;
{
package My::Person;
use Moo;
use Sub::HandlesVia;
use Types::Standard qw( Str Enum );
has name => (
is => 'ro',
isa => Str,
required => 1,
);
has status => (
is => 'rwp',
isa => Enum[ 'alive', 'dead' ],
handles_via => 'String',
handles => {
is_alive => [ eq => 'alive' ],
is_dead => [ eq => 'dead' ],
kill => [ set => 'dead' ],
},
default => 'alive',
);
# Note: method modifiers work on delegated methods
#
before kill => sub {
my $self = shift;
warn "overkill" if $self->is_dead;
};
}
my $bob = My::Person->new( name => 'Robert' );
ok( $bob->is_alive, q{$bob->is_alive is true} );
ok( !($bob->is_dead), q{$bob->is_dead is false} );
$bob->kill;
ok( !($bob->is_alive), q{$bob->is_alive is false} );
ok( $bob->is_dead, q{$bob->is_dead is true} );
};
is( $e, undef, 'no exception thrown running example' );
};
## Match with curried regexp
subtest q{Match with curried regexp (extended example)} => sub {
my $e = exception {
use strict;
use warnings;
{
package My::Component;
use Moo;
use Sub::HandlesVia;
use Types::Standard qw( Str Int );
has id => (
is => 'ro',
isa => Int,
required => 1,
);
has name => (
is => 'ro',
isa => Str,
required => 1,
handles_via => 'String',
handles => {
name_is_safe_filename => [ match => qr/\A[A-Za-z0-9]+\z/ ],
_lc_name => 'lc',
},
);
sub config_filename {
my $self = shift;
if ( $self->name_is_safe_filename ) {
return sprintf( '%s.ini', $self->_lc_name );
}
return sprintf( 'component-%d.ini', $self->id );
}
}
my $foo = My::Component->new( id => 42, name => 'Foo' );
is( $foo->config_filename, 'foo.ini', q{$foo->config_filename is 'foo.ini'} );
my $bar4 = My::Component->new( id => 99, name => 'Bar #4' );
is( $bar4->config_filename, 'component-99.ini', q{$bar4->config_filename is 'component-99.ini'} );
};
is( $e, undef, 'no exception thrown running example' );
};
done_testing;
|