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 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
|
package Test::BDD::Cucumber::Executor;
$Test::BDD::Cucumber::Executor::VERSION = '0.26';
=head1 NAME
Test::BDD::Cucumber::Executor - Run through Feature and Harness objects
=head1 VERSION
version 0.26
=head1 DESCRIPTION
The Executor runs through Features, matching up the Step Lines with Step
Definitions, and reporting on progress through the passed-in harness.
=cut
use Moose;
use FindBin::libs;
use Storable qw(dclone);
use List::Util qw/first/;
use List::MoreUtils qw/pairwise/;
use Test::Builder;
use Number::Range;
use Test::BDD::Cucumber::StepContext;
use Test::BDD::Cucumber::Util;
use Test::BDD::Cucumber::Model::Result;
use Test::BDD::Cucumber::Errors qw/parse_error_from_line/;
=head1 METHODS
=head2 steps
=head2 add_steps
The attributes C<steps> is a hashref of arrayrefs, storing steps by their Verb.
C<add_steps()> takes step definitions of the item list form:
(
[ Given => qr//, sub {} ],
),
and populates C<steps> with them.
=cut
has 'steps' => ( is => 'rw', isa => 'HashRef', default => sub {{}} );
sub add_steps {
my ( $self, @steps ) = @_;
# Map the steps to be lower case...
for ( @steps ) {
my ( $verb, $match, $code ) = @$_;
$verb = lc $verb;
if ( $verb =~ /^(before|after)$/ )
{
$code = $match;
$match = qr//;
}
else
{
unless (ref( $match )) {
$match =~ s/:\s*$//;
$match = quotemeta( $match );
$match = qr/^$match:?/i;
}
}
if ( $verb eq 'transform' or $verb eq 'after' )
{
# Most recently defined Transform takes precedence
# and After blocks need to be run in reverse order
unshift( @{ $self->{'steps'}->{$verb} }, [ $match, $code ] );
}
else
{
push( @{ $self->{'steps'}->{$verb} }, [ $match, $code ] );
}
}
}
=head2 execute
Execute accepts a feature object, a harness object, and an optional
L<Test::BDD::Cucumber::TagSpec> object and for each scenario in the
feature which meets the tag requirements (or all of them, if you
haven't specified one), runs C<execute_scenario>.
=cut
sub execute {
my ( $self, $feature, $harness, $tag_spec ) = @_;
my $feature_stash = {};
$harness->feature( $feature );
my @background = (
$feature->background ? ( background => $feature->background ) : () );
# Get all scenarios
my @scenarios = @{ $feature->scenarios() };
# Filter them by the tag spec, if we have one
if ( defined $tag_spec ) {
@scenarios = $tag_spec->filter( @scenarios );
}
for my $scenario ( @scenarios ) {
# Execute the scenario itself
$self->execute_scenario({
@background,
scenario => $scenario,
feature => $feature,
feature_stash => $feature_stash,
harness => $harness
});
}
$harness->feature_done( $feature );
}
=head2 execute_scenario
Accepts a hashref of options, and executes each step in a scenario. Options:
C<feature> - A L<Test::BDD::Cucumber::Model::Feature> object
C<feature_stash> - A hashref that should live the lifetime of feature execution
C<harness> - A L<Test::BDD::Cucumber::Harness> subclass object
C<scenario> - A L<Test::BDD::Cucumber::Model::Scenario> object
C<background_obj> - An optional L<Test::BDD::Cucumber::Model::Scenario> object
representing the Background
C<scenario_stash> - We'll create a new scenario stash unless you've posted one
in. This is used exclusively for giving Background sections access to the same
stash as the scenario they're running before.
For each step, a L<Test::BDD::Cucumber::StepContext> object is created, and
passed to C<dispatch()>. Nothing is returned - everything is played back through
the Harness interface.
=cut
sub execute_scenario {
my ( $self, $options ) = @_;
my (
$feature, $feature_stash, $harness, $outline, $background_obj,
$incoming_scenario_stash, $incoming_outline_stash
) = @$options{
qw/ feature feature_stash harness scenario background scenario_stash
outline_stash
/
};
my $is_background = $outline->background;
my $harness_start = $is_background ? 'background' : 'scenario';
my $harness_stop = $is_background ? 'background_done' : 'scenario_done';
my $outline_stash = $incoming_outline_stash || { short_circuit => 0 };
# Multiply out Scenario Outlines as appropriate
my @datasets = @{ $outline->data };
@datasets = ({}) unless @datasets;
my $scenario_stash = $incoming_scenario_stash || {};
my %context_defaults = (
# Data portion
data => '',
stash => {
feature => $feature_stash,
step => {},
},
# Step-specific info
feature => $feature,
scenario => $outline,
# Communicators
harness => $harness,
transformers => $self->{'steps'}->{'transform'} || [],
);
foreach my $dataset ( @datasets ) {
my $scenario_stash = $incoming_scenario_stash || {};
$context_defaults{stash}->{scenario} = $scenario_stash;
# OK, back to the normal execution
$harness->$harness_start( $outline, $dataset,
$scenario_stash->{'longest_step_line'} );
if ( not $is_background )
{
for my $before_step ( @{ $self->{'steps'}->{'before'} || [] } )
{
# Set up a context
my $context = Test::BDD::Cucumber::StepContext->new({
%context_defaults,
verb => 'before',
});
my $result = $self->dispatch( $context, $before_step,
$outline_stash->{'short_circuit'} );
# If it didn't pass, short-circuit the rest
unless ( $result->result eq 'passing' ) {
$outline_stash->{'short_circuit'}++;
}
}
}
# Run the background if we have one. This recurses back in to
# execute_scenario...
if ( $background_obj ) {
$self->execute_scenario({
is_background => 1,
scenario => $background_obj,
feature => $feature,
feature_stash => $feature_stash,
harness => $harness,
scenario_stash => $scenario_stash,
outline_stash => $outline_stash
});
}
foreach my $step (@{ $outline->steps }) {
# Multiply out any placeholders
my $text = $self->add_placeholders( $step->text, $dataset, $step->line );
# Set up a context
my $context = Test::BDD::Cucumber::StepContext->new({
%context_defaults,
# Data portion
columns => $step->columns || [],
data => ref($step->data) ? dclone($step->data) : $step->data || '',
# Step-specific info
step => $step,
verb => lc($step->verb),
text => $text,
});
my $result = $self->find_and_dispatch( $context,
$outline_stash->{'short_circuit'} );
# If it didn't pass, short-circuit the rest
unless ( $result->result eq 'passing' ) {
$outline_stash->{'short_circuit'}++;
}
}
if ( not $is_background )
{
for my $after_step ( @{ $self->{'steps'}->{'after'} || [] } )
{
# Set up a context
my $context = Test::BDD::Cucumber::StepContext->new({
%context_defaults,
verb => 'after',
});
# All After steps should happen, to ensure cleanup
my $result = $self->dispatch( $context, $after_step, 0 );
}
}
$harness->$harness_stop( $outline, $dataset );
}
return;
}
=head2 add_placeholders
Accepts a text string and a hashref, and replaces C< <placeholders> > with the
values in the hashref, returning a string.
=cut
sub add_placeholders {
my ( $self, $text, $dataset, $line ) = @_;
my $quoted_text = Test::BDD::Cucumber::Util::bs_quote( $text );
$quoted_text =~ s/(<([^>]+)>)/
exists $dataset->{$2} ? $dataset->{$2} :
die parse_error_from_line( "No mapping to placeholder $1", $line )
/eg;
return Test::BDD::Cucumber::Util::bs_unquote( $quoted_text );
}
=head2 find_and_dispatch
Accepts a L<Test::BDD::Cucumber::StepContext> object, and searches through
the steps that have been added to the executor object, executing against the
first matching one.
You can also pass in a boolean 'short-circuit' flag if the Scenario's remaining
steps should be skipped.
=cut
sub find_and_dispatch {
my ( $self, $context, $short_circuit ) = @_;
# Short-circuit if we need to
return $self->skip_step($context, 'pending', "Short-circuited from previous tests")
if $short_circuit;
# Try and find a matching step
my $step = first { $context->text =~ $_->[0] }
@{ $self->{'steps'}->{$context->verb} || [] },
@{ $self->{'steps'}->{'step'} || [] };
# Deal with the simple case of no-match first of all
return $self->skip_step( $context, 'undefined',
"No matching step definition for: " . $context->verb . ' ' . $context->text
) unless $step;
return $self->dispatch( $context, $step, 0 );
}
=head2 dispatch
Accepts a L<Test::BDD::Cucumber::StepContext> object, and a L<Test::BDD::Cucumber::Step>
object and executes it.
You can also pass in a boolean 'short-circuit' flag if the Scenario's remaining
steps should be skipped.
=cut
sub dispatch {
my ( $self, $context, $step, $short_circuit ) = @_;
return $self->skip_step($context, 'pending', "Short-circuited from previous tests")
if $short_circuit;
# Execute the step definition
my ( $regular_expression, $coderef ) = @$step;
# Setup what we'll pass to step_done, with out localized Test::Builder stuff
my $output = '';
my $tb_return = {
output => \$output,
builder => Test::Builder->create()
};
# Set its outputs to be self-referential
$tb_return->{'builder'}->output( \$output );
$tb_return->{'builder'}->failure_output( \$output );
$tb_return->{'builder'}->todo_output( \$output );
# Make a minumum pass
$tb_return->{'builder'}->ok(1, "Starting to execute step: " . $context->text );
# Say we're about to start it up
$context->harness->step( $context );
# Store the string position of matches for highlighting
my @match_locations;
# New scope for the localization
my $result;
{
# Localize test builder
local $Test::Builder::Test = $tb_return->{'builder'};
# Execute!
eval {
no warnings 'redefine';
# Set S and C to be step-specific values before executing the step
local *Test::BDD::Cucumber::StepFile::S = sub {
return $context->stash->{'scenario'}
};
local *Test::BDD::Cucumber::StepFile::C = sub {
return $context
};
# Take a copy of this. Turns out actually matching against it
# directly causes all sorts of weird-ass eisenbugs which mst has
# promised to investigate.
my $text = $context->text;
# Save the matches
$context->matches([ $text =~ $regular_expression ]);
# Save the location of matched subgroups for highlighting hijinks
my @starts = @-; my @ends = @+;
@match_locations = pairwise {[$a, $b]} @starts, @ends;
# OK, actually execute
$coderef->( $context )
};
if ( $@ ) {
$Test::Builder::Test->ok( 0, "Test compiled" );
$Test::Builder::Test->diag( $@ );
}
# Close up the Test::Builder object
$tb_return->{'builder'}->done_testing();
my $status = $self->_test_status($tb_return->{builder});
# Create the result object
$result = Test::BDD::Cucumber::Model::Result->new({
result => $status,
output => $output
});
}
my @clean_matches = $self->_extract_match_strings(
$context->text, \@match_locations
);
@clean_matches = [ 0, $context->text ] unless @clean_matches;
# Say the step is done, and return the result. Happens outside
# the above block so that we don't have the localized harness
# anymore...
$context->harness->add_result( $result );
$context->harness->step_done( $context, $result, \@clean_matches );
return $result;
}
sub _extract_match_strings {
my ($self, $text, $locations) = @_;
# Clean up the match locations
my @match_locations = grep {
( $_->[0] != $_->[1] ) && # No zero-length matches
# And nothing that matched the full string
(! (( $_->[0] == 0 ) && (( $_->[1] == length $text ) )))
} grep { defined $_ && ref $_ && defined $_->[0] && defined $_->[1] }
@$locations;
return unless @match_locations;
# Consolidate overlaps
my $range = Number::Range->new();
{
# Don't want a complain about numbers already in range, as that's
# expected for nested matches
no warnings;
$range->addrange($_->[0] . '..' . ($_->[1]-1) ) for @match_locations;
}
# Walk the string, splitting
my @parts = ([0,'']);
for ( 0 .. ((length $text) - 1) ) {
my $to_highlight = $range->inrange( $_ );
my $character = substr( $text, $_, 1 );
if ( $parts[-1]->[0] != $to_highlight ) {
push( @parts, [$to_highlight, ''] );
}
$parts[-1]->[1] .= $character;
}
return @parts;
}
sub _test_status {
my $self = shift;
my $builder = shift;
my $results = $builder->can("history") ? $self->_test_status_from_history($builder)
: $self->_test_status_from_details($builder);
# Turn that in to a Result status
return $results->{'fail'} ? 'failing' :
$results->{'todo'} ? 'pending' :
'passing' ;
}
sub _test_status_from_details {
my $self = shift;
my $builder = shift;
# Make a note of test status
my %results = map {
if ( $_->{'ok'} ) {
if ( $_->{'type'} eq 'todo' || $_->{'type'} eq 'todo_skip' ) {
( todo => 1)
} else {
( pass => 1 )
}
} else {
( fail => 1 )
}
} $builder->details;
return \%results;
}
sub _test_status_from_history {
my $self = shift;
my $builder = shift;
my $history = $builder->history;
my %results;
$results{todo} = $history->todo_count ? 1 : 0;
$results{fail} = !$history->test_was_successful;
$results{pass} = $history->pass_count ? 1 : 0;
return \%results;
}
=head2 skip_step
Accepts a step-context, a result-type, and a textual reason, exercises the
Harness's step start and step_done methods, and returns a skipped-test result.
=cut
sub skip_step {
my ( $self, $context, $type, $reason ) = @_;
# Pretend to start step execution
$context->harness->step( $context );
# Create a result object
my $result = Test::BDD::Cucumber::Model::Result->new({
result => $type,
output => '1..0 # SKIP ' . $reason
});
# Pretend we executed it
$context->harness->add_result( $result );
$context->harness->step_done( $context, $result );
return $result;
}
=head1 AUTHOR
Peter Sergeant C<pete@clueball.com>
=head1 LICENSE
Copyright 2011-2014, Peter Sergeant; Licensed under the same terms as Perl
=cut
1;
|