Class-Enumeration
view release on metacpan or search on metacpan
t/TurnstileStateMachine.t view on Meta::CPAN
## no critic ( ProhibitMagicNumbers )
use strict;
use warnings;
use Test::Lib;
use Test::More import => [ qw( BAIL_OUT cmp_ok is_deeply isa_ok note plan subtest use_ok ) ], tests => 4;
use Test::Fatal qw( dies_ok );
my $class;
BEGIN {
$class = 'TurnstileStateMachine';
use_ok $class, ':all' or BAIL_OUT "Cannot load class '$class'!";
}
subtest 'Class method invocations' => sub {
plan tests => 10;
for my $self ( $class->values ) {
note my $name = $self->name;
cmp_ok "$self", 'eq', $name, 'Check default stringification';
isa_ok $self, $class;
isa_ok $self, 'Class::Enumeration';
cmp_ok $self, '==', $class->value_of( $self->name ), 'Get enum object reference by name'
}
is_deeply [ $class->names ], [ qw( Locked Unlocked ) ], 'Get names of enum objects';
dies_ok { $class->value_of( 'Initial' ) } 'No such enum object for the given name'
};
subtest 'Access enum attributes' => sub {
plan tests => 4;
my $self = $class->value_of( 'Locked' );
cmp_ok $self->name, 'eq', 'Locked', 'Get name';
cmp_ok $self->ordinal, '==', 0, 'Get ordinal';
$self = $class->value_of( 'Unlocked' );
cmp_ok $self->name, 'eq', 'Unlocked', 'Get name';
cmp_ok $self->ordinal, '==', 1, 'Get ordinal'
};
subtest 'Trigger state transitions' => sub {
plan tests => 7;
# Set initial state
isa_ok my $state = Locked, $class;
dies_ok { $state->do_something( 'foo' ) } 'Wrong input';
cmp_ok $state->do_something( 'push' ), '==', Locked, 'Still locked';
cmp_ok $state->do_something( 'coin' ), '==', Unlocked, 'Now unlocked';
dies_ok { $state->do_something( 'foo' ) } 'Wrong input';
cmp_ok $state->do_something( 'coin' ), '==', Unlocked, 'Still unlocked';
cmp_ok $state->do_something( 'push' ), '==', Locked, 'Locked again'
}
( run in 0.691 second using v1.01-cache-2.11-cpan-39bf76dae61 )