File Coverage

inc/Test/Base.pm
Criterion Covered Total %
statement 247 378 65.3
branch 64 186 34.4
condition 22 77 28.5
subroutine 45 63 71.4
pod 0 29 0.0
total 378 733 51.5


line stmt bran cond sub pod time code
1             #line 1
2             # TODO:
3             #
4 21     21   49594 package Test::Base;
  21         73  
  21         1047  
5 21     21   16450 use 5.006001;
  21         769  
  21         182  
6 21     21   231 use Spiffy 0.30 -Base;
  21     21   44  
  21     21   931  
  21         193  
  21         39  
  21         805  
  21         364  
  21         42  
  21         122  
7             use Spiffy ':XXX';
8             our $VERSION = '0.56';
9              
10             my @test_more_exports;
11 21     21   671 BEGIN {
12             @test_more_exports = qw(
13             ok isnt like unlike is_deeply cmp_ok
14             skip todo_skip pass fail
15             eq_array eq_hash eq_set
16             plan can_ok isa_ok diag
17             use_ok
18             $TODO
19             );
20             }
21 21     21   19708  
  21         260  
  21         236  
22 21     21   147 use Test::More import => \@test_more_exports;
  21         39  
  21         14738  
23             use Carp;
24              
25             our @EXPORT = (@test_more_exports, qw(
26             is no_diff
27              
28             blocks next_block first_block
29             delimiters spec_file spec_string
30             filters filters_delay filter_arguments
31             run run_compare run_is run_is_deeply run_like run_unlike
32             skip_all_unless_require is_deep run_is_deep
33             WWW XXX YYY ZZZ
34             tie_output no_diag_on_only
35              
36             find_my_self default_object
37              
38             croak carp cluck confess
39             ));
40              
41             field '_spec_file';
42             field '_spec_string';
43             field _filters => [qw(norm trim)];
44             field _filters_map => {};
45             field spec =>
46             -init => '$self->_spec_init';
47             field block_list =>
48             -init => '$self->_block_list_init';
49             field _next_list => [];
50             field block_delim =>
51             -init => '$self->block_delim_default';
52             field data_delim =>
53             -init => '$self->data_delim_default';
54             field _filters_delay => 0;
55             field _no_diag_on_only => 0;
56              
57             field block_delim_default => '===';
58             field data_delim_default => '---';
59              
60             my $default_class;
61             my $default_object;
62             my $reserved_section_names = {};
63 132     132 0 253  
64 132   66     1049 sub default_object {
65 132         294 $default_object ||= $default_class->new;
66             return $default_object;
67             }
68              
69             my $import_called = 0;
70 42     42   762 sub import() {
71 42 100       382 $import_called = 1;
72             my $class = (grep /^-base$/i, @_)
73             ? scalar(caller)
74 42 100       162 : $_[0];
75 21         1468 if (not defined $default_class) {
76             $default_class = $class;
77             }
78             # else {
79             # croak "Can't use $class after using $default_class"
80             # unless $default_class->isa($class);
81             # }
82 42 100       299  
83 21         38 unless (grep /^-base$/i, @_) {
84 21         121 my @args;
85 18 50       101 for (my $ii = 1; $ii <= $#_; ++$ii) {
86 0         0 if ($_[$ii] eq '-package') {
87             ++$ii;
88 18         64 } else {
89             push @args, $_[$ii];
90             }
91 21 100       277 }
92             Test::More->import(import => \@test_more_exports, @args)
93             if @args;
94             }
95 42         160
96 42         841 _strict_warnings();
97             goto &Spiffy::import;
98             }
99              
100             # Wrap Test::Builder::plan
101             my $plan_code = \&Test::Builder::plan;
102             my $Have_Plan = 0;
103 21     21   205 {
  21         37  
  21         108442  
104             no warnings 'redefine';
105 21     21   58 *Test::Builder::plan = sub {
106 21         149 $Have_Plan = 1;
107             goto &$plan_code;
108             };
109             }
110              
111             my $DIED = 0;
112             $SIG{__DIE__} = sub { $DIED = 1; die @_ };
113 153     153 0 198  
  153         317  
114 486     486 0 640 sub block_class { $self->find_class('Block') }
  486         1000  
115             sub filter_class { $self->find_class('Filter') }
116 639     639 0 785  
117 639         793 sub find_class {
118 639         1459 my $suffix = shift;
119 639 100       2796 my $class = ref($self) . "::$suffix";
120 153         240 return $class if $class->can('new');
121 153 50       492 $class = __PACKAGE__ . "::$suffix";
122 0         0 return $class if $class->can('new');
123 0 0       0 eval "require $class";
124 0         0 return $class if $class->can('new');
125             die "Can't find a class for $suffix";
126             }
127 29     29 0 67  
128 29 50       135 sub check_late {
129 0         0 if ($self->{block_list}) {
130 0         0 my $caller = (caller(1))[3];
131 0         0 $caller =~ s/.*:://;
132             croak "Too late to call $caller()"
133             }
134             }
135              
136 132 50   132 0 846 sub find_my_self() {
137             my $self = ref($_[0]) eq $default_class
138             ? splice(@_, 0, 1)
139 132         676 : default_object();
140             return $self, @_;
141             }
142              
143 0     0 0 0 sub blocks() {
144             (my ($self), @_) = find_my_self(@_);
145 0 0       0  
146             croak "Invalid arguments passed to 'blocks'"
147 0 0 0     0 if @_ > 1;
148             croak sprintf("'%s' is invalid argument to blocks()", shift(@_))
149             if @_ && $_[0] !~ /^[a-zA-Z]\w*$/;
150 0         0  
151             my $blocks = $self->block_list;
152 0   0     0
153 0         0 my $section_name = shift || '';
154 0 0       0 my @blocks = $section_name
155             ? (grep { exists $_->{$section_name} } @$blocks)
156             : (@$blocks);
157 0 0       0  
158             return scalar(@blocks) unless wantarray;
159 0 0       0
160             return (@blocks) if $self->_filters_delay;
161 0         0  
162 0 0       0 for my $block (@blocks) {
163             $block->run_filters
164             unless $block->is_filtered;
165             }
166 0         0  
167             return (@blocks);
168             }
169              
170 0     0 0 0 sub next_block() {
171 0         0 (my ($self), @_) = find_my_self(@_);
172 0 0       0 my $list = $self->_next_list;
173 0         0 if (@$list == 0) {
  0         0  
174 0         0 $list = [@{$self->block_list}, undef];
175             $self->_next_list($list);
176 0         0 }
177 0 0 0     0 my $block = shift @$list;
178 0         0 if (defined $block and not $block->is_filtered) {
179             $block->run_filters;
180 0         0 }
181             return $block;
182             }
183              
184 0     0 0 0 sub first_block() {
185 0         0 (my ($self), @_) = find_my_self(@_);
186 0         0 $self->_next_list([]);
187             $self->next_block;
188             }
189              
190 0     0 0 0 sub filters_delay() {
191 0 0       0 (my ($self), @_) = find_my_self(@_);
192             $self->_filters_delay(defined $_[0] ? shift : 1);
193             }
194              
195 0     0 0 0 sub no_diag_on_only() {
196 0 0       0 (my ($self), @_) = find_my_self(@_);
197             $self->_no_diag_on_only(defined $_[0] ? shift : 1);
198             }
199              
200 21     21 0 556 sub delimiters() {
201 21         221 (my ($self), @_) = find_my_self(@_);
202 21         44 $self->check_late;
203 21   33     122 my ($block_delimiter, $data_delimiter) = @_;
204 21   33     74 $block_delimiter ||= $self->block_delim_default;
205 21         835 $data_delimiter ||= $self->data_delim_default;
206 21         1123 $self->block_delim($block_delimiter);
207 21         69 $self->data_delim($data_delimiter);
208             return $self;
209             }
210              
211 8     8 0 89 sub spec_file() {
212 8         86 (my ($self), @_) = find_my_self(@_);
213 8         389 $self->check_late;
214 8         25 $self->_spec_file(shift);
215             return $self;
216             }
217              
218 0     0 0 0 sub spec_string() {
219 0         0 (my ($self), @_) = find_my_self(@_);
220 0         0 $self->check_late;
221 0         0 $self->_spec_string(shift);
222             return $self;
223             }
224              
225 9     9 0 106 sub filters() {
226 9 50       62 (my ($self), @_) = find_my_self(@_);
227 9         309 if (ref($_[0]) eq 'HASH') {
228             $self->_filters_map(shift);
229             }
230 0         0 else {
231 0         0 my $filters = $self->_filters;
232             push @$filters, @_;
233 9         35 }
234             return $self;
235             }
236              
237 0     0 0 0 sub filter_arguments() {
238             $Test::Base::Filter::arguments;
239             }
240 0     0 0 0  
241 0 0 0     0 sub have_text_diff {
  0         0  
  0         0  
242             eval { require Text::Diff; 1 } &&
243             $Text::Diff::VERSION >= 0.35 &&
244             $Algorithm::Diff::VERSION >= 1.15;
245             }
246              
247 82     82 0 408 sub is($$;$) {
248 82         220 (my ($self), @_) = find_my_self(@_);
249 82         190 my ($actual, $expected, $name) = @_;
250 82 50 33     487 local $Test::Builder::Level = $Test::Builder::Level + 1;
      33        
      0        
      0        
      0        
251             if ($ENV{TEST_SHOW_NO_DIFFS} or
252             not defined $actual or
253             not defined $expected or
254             $actual eq $expected or
255             not($self->have_text_diff) or
256             $expected !~ /\n./s
257 82         377 ) {
258             Test::More::is($actual, $expected, $name);
259             }
260 0 0       0 else {
261 0         0 $name = '' unless defined $name;
262             ok $actual eq $expected,
263             $name . "\n" . Text::Diff::diff(\$expected, \$actual);
264             }
265             }
266              
267 0     0 0 0 sub run(&;$) {
268 0         0 (my ($self), @_) = find_my_self(@_);
269 0         0 my $callback = shift;
  0         0  
270 0 0       0 for my $block (@{$self->block_list}) {
271 0         0 $block->run_filters unless $block->is_filtered;
  0         0  
272             &{$callback}($block);
273             }
274             }
275              
276 9     9   31 my $name_error = "Can't determine section names";
277 9 50       83 sub _section_names {
278 0 0       0 return @_ if @_ == 2;
279             my $block = $self->first_block
280 0         0 or croak $name_error;
281 0 0       0 my @names = grep {
282 0         0 $_ !~ /^(ONLY|LAST|SKIP)$/;
283 0 0       0 } @{$block->{_section_order}[0] || []};
284             croak "$name_error. Need two sections in first block"
285 0         0 unless @names == 2;
286             return @names;
287             }
288 9     9   23  
289 9 50       87 sub _assert_plan {
290             plan('no_plan') unless $Have_Plan;
291             }
292 21     21   407  
293 21 0 33     431 sub END {
      33        
294             run_compare() unless $Have_Plan or $DIED or not $import_called;
295             }
296              
297 0     0 0 0 sub run_compare() {
298 0         0 (my ($self), @_) = find_my_self(@_);
299 0         0 $self->_assert_plan;
300 0         0 my ($x, $y) = $self->_section_names(@_);
301 0         0 local $Test::Builder::Level = $Test::Builder::Level + 1;
  0         0  
302 0 0 0     0 for my $block (@{$self->block_list}) {
303 0 0       0 next unless exists($block->{$x}) and exists($block->{$y});
304 0 0       0 $block->run_filters unless $block->is_filtered;
    0          
305 0 0       0 if (ref $block->$x) {
306             is_deeply($block->$x, $block->$y,
307             $block->name ? $block->name : ());
308             }
309 0 0       0 elsif (ref $block->$y eq 'Regexp') {
310 0 0       0 my $regexp = ref $y ? $y : $block->$y;
311             like($block->$x, $regexp, $block->name ? $block->name : ());
312             }
313 0 0       0 else {
314             is($block->$x, $block->$y, $block->name ? $block->name : ());
315             }
316             }
317             }
318              
319 7     7 0 50 sub run_is() {
320 7         81 (my ($self), @_) = find_my_self(@_);
321 7         64 $self->_assert_plan;
322 7         20 my ($x, $y) = $self->_section_names(@_);
323 7         16 local $Test::Builder::Level = $Test::Builder::Level + 1;
  7         241  
324 115 100 100     1461 for my $block (@{$self->block_list}) {
325 36 50       1841 next unless exists($block->{$x}) and exists($block->{$y});
326 36 50       205 $block->run_filters unless $block->is_filtered;
327             is($block->$x, $block->$y,
328             $block->name ? $block->name : ()
329             );
330             }
331             }
332              
333 2     2 0 16 sub run_is_deeply() {
334 2         18 (my ($self), @_) = find_my_self(@_);
335 2         16 $self->_assert_plan;
336 2         7 my ($x, $y) = $self->_section_names(@_);
  2         71  
337 38 100 100     935 for my $block (@{$self->block_list}) {
338 18 50       539 next unless exists($block->{$x}) and exists($block->{$y});
339 18 50       73 $block->run_filters unless $block->is_filtered;
340             is_deeply($block->$x, $block->$y,
341             $block->name ? $block->name : ()
342             );
343             }
344             }
345              
346 0     0 0 0 sub run_like() {
347 0         0 (my ($self), @_) = find_my_self(@_);
348 0         0 $self->_assert_plan;
349 0         0 my ($x, $y) = $self->_section_names(@_);
  0         0  
350 0 0 0     0 for my $block (@{$self->block_list}) {
351 0 0       0 next unless exists($block->{$x}) and defined($y);
352 0 0       0 $block->run_filters unless $block->is_filtered;
353 0 0       0 my $regexp = ref $y ? $y : $block->$y;
354             like($block->$x, $regexp,
355             $block->name ? $block->name : ()
356             );
357             }
358             }
359              
360 0     0 0 0 sub run_unlike() {
361 0         0 (my ($self), @_) = find_my_self(@_);
362 0         0 $self->_assert_plan;
363 0         0 my ($x, $y) = $self->_section_names(@_);
  0         0  
364 0 0 0     0 for my $block (@{$self->block_list}) {
365 0 0       0 next unless exists($block->{$x}) and defined($y);
366 0 0       0 $block->run_filters unless $block->is_filtered;
367 0 0       0 my $regexp = ref $y ? $y : $block->$y;
368             unlike($block->$x, $regexp,
369             $block->name ? $block->name : ()
370             );
371             }
372             }
373              
374 3     3 0 36 sub skip_all_unless_require() {
375 3         11 (my ($self), @_) = find_my_self(@_);
376 3 50       255 my $module = shift;
377             eval "require $module; 1"
378             or Test::More::plan(
379             skip_all => "$module failed to load"
380             );
381             }
382              
383 0     0 0 0 sub is_deep() {
384 0         0 (my ($self), @_) = find_my_self(@_);
385 0         0 require Test::Deep;
386             Test::Deep::cmp_deeply(@_);
387             }
388              
389 0     0 0 0 sub run_is_deep() {
390 0         0 (my ($self), @_) = find_my_self(@_);
391 0         0 $self->_assert_plan;
392 0         0 my ($x, $y) = $self->_section_names(@_);
  0         0  
393 0 0 0     0 for my $block (@{$self->block_list}) {
394 0 0       0 next unless exists($block->{$x}) and exists($block->{$y});
395 0 0       0 $block->run_filters unless $block->is_filtered;
396             is_deep($block->$x, $block->$y,
397             $block->name ? $block->name : ()
398             );
399             }
400             }
401 9     9   22  
402 9         24 sub _pre_eval {
403 9 50       131 my $spec = shift;
404             return $spec unless $spec =~
405 0         0 s/\A\s*<<<(.*?)>>>\s*$//sm;
406 0         0 my $eval_code = $1;
407 0 0       0 eval "package main; $eval_code";
408 0         0 croak $@ if $@;
409             return $spec;
410             }
411 9     9   22  
412 9         288 sub _block_list_init {
413 9         91 my $spec = $self->spec;
414 9         286 $spec = $self->_pre_eval($spec);
415 9         12064 my $cd = $self->block_delim;
416 9         272 my @hunks = ($spec =~ /^(\Q${cd}\E.*?(?=^\Q${cd}\E|\z))/msg);
417 9         294 my $blocks = $self->_choose_blocks(@hunks);
418 9         21 $self->block_list($blocks); # Need to set early for possible filter use
419 9         23 my $seq = 1;
420 153         3371 for my $block (@$blocks) {
421 153         3354 $block->blocks_object($self);
422             $block->seq_num($seq++);
423 9         113 }
424             return $blocks;
425             }
426 9     9   39  
427 9         30 sub _choose_blocks {
428 9         47 my $blocks = [];
429 153         353 for my $hunk (@_) {
430 153 50       551 my $block = $self->_make_block($hunk);
431 0 0       0 if (exists $block->{ONLY}) {
432             diag "I found ONLY: maybe you're debugging?"
433 0         0 unless $self->_no_diag_on_only;
434             return [$block];
435 153 50       313 }
436 153         269 next if exists $block->{SKIP};
437 153 50       400 push @$blocks, $block;
438 0         0 if (exists $block->{LAST}) {
439             return $blocks;
440             }
441 9         31 }
442             return $blocks;
443             }
444 458     458   591  
445 458         525 sub _check_reserved {
446 458 50 33     2376 my $id = shift;
447             croak "'$id' is a reserved name. Use something else.\n"
448             if $reserved_section_names->{$id} or
449             $id =~ /^_/;
450             }
451 153     153   172  
452 153         229 sub _make_block {
453 153         4062 my $hunk = shift;
454 153         3722 my $cd = $self->block_delim;
455 153         395 my $dd = $self->data_delim;
456 153 50       3003 my $block = $self->block_class->new;
457 153         321 $hunk =~ s/\A\Q${cd}\E[ \t]*(.*)\s+// or die;
458 153         2517 my $name = $1;
459 153         294 my @parts = split /^\Q${dd}\E +\(?(\w+)\)? *(.*)?\n/m, $hunk;
460 153   50     635 my $description = shift @parts;
461 153 50       421 $description ||= '';
462 153         234 unless ($description =~ /\S/) {
463             $description = $name;
464 153         8879 }
465 153         378 $description =~ s/\s*\z//;
466             $block->set_value(description => $description);
467 153         241
468 153         253 my $section_map = {};
469 153         339 my $section_order = [];
470 458         950 while (@parts) {
471 458         971 my ($type, $filters, $value) = splice(@parts, 0, 3);
472 458 50       809 $self->_check_reserved($type);
473 458 50       974 $value = '' unless defined $value;
474 458 50       791 $filters = '' unless defined $filters;
475 0 0       0 if ($filters =~ /:(\s|\z)/) {
476             croak "Extra lines not allowed in '$type' section"
477 0         0 if $value =~ /\S/;
478 0 0       0 ($filters, $value) = split /\s*:(?:\s+|\z)/, $filters, 2;
479 0         0 $value = '' unless defined $value;
480             $value =~ s/^\s*(.*?)\s*$/$1/;
481 458         1650 }
482             $section_map->{$type} = {
483             filters => $filters,
484 458         755 };
485 458         921 push @$section_order, $type;
486             $block->set_value($type, $value);
487 153         322 }
488 153         333 $block->set_value(name => $name);
489 153         297 $block->set_value(_section_map => $section_map);
490 153         712 $block->set_value(_section_order => $section_order);
491             return $block;
492             }
493 9     9   26  
494 9 50       338 sub _spec_init {
495             return $self->_spec_string
496 9         46 if $self->_spec_string;
497 9         22 local $/;
498 9 100       234 my $spec;
499 8 50       650 if (my $spec_file = $self->_spec_file) {
500 8         526 open FILE, $spec_file or die $!;
501 8         100 $spec = ;
502             close FILE;
503             }
504 1         2 else {
505             $spec = do {
506 21     21   606 package main;
  21         45  
  21         11911  
507 1         34 no warnings 'once';
508             ;
509             };
510 9         71 }
511             return $spec;
512             }
513              
514 42     42   270 sub _strict_warnings() {
515 42         91 require Filter::Util::Call;
516             my $done = 0;
517             Filter::Util::Call::filter_add(
518 83 100   83   39700 sub {
519 42         106 return 0 if $done;
520 42         533 my ($data, $end) = ('', '');
521 1012 50       2117 while (my $status = Filter::Util::Call::filter_read()) {
522 1012 100       2272 return $status if $status < 0;
523 1         2 if (/^__(?:END|DATA)__\r?$/) {
524 1         1 $end = $_;
525             last;
526 1011         5450 }
527 1011         5743 $data .= $_;
528             $_ = '';
529 42         259 }
530 42         946 $_ = "use strict;use warnings;$data$end";
531             $done = 1;
532 42         416 }
533             );
534             }
535              
536 0     0 0 0 sub tie_output() {
537 0 0       0 my $handle = shift;
538 0         0 die "No buffer to tie" unless @_;
539             tie $handle, 'Test::Base::Handle', $_[0];
540             }
541 22     22 0 106  
542 22         264 sub no_diff {
543             $ENV{TEST_SHOW_NO_DIFFS} = 1;
544             }
545              
546             package Test::Base::Handle;
547              
548 0     0   0 sub TIEHANDLE() {
549 0         0 my $class = shift;
550             bless \ $_[0], $class;
551             }
552 0     0   0  
553 0         0 sub PRINT {
554             $$self .= $_ for @_;
555             }
556              
557             #===============================================================================
558             # Test::Base::Block
559             #
560             # This is the default class for accessing a Test::Base block object.
561             #===============================================================================
562             package Test::Base::Block;
563             our @ISA = qw(Spiffy);
564              
565             our @EXPORT = qw(block_accessor);
566 0     0   0  
567 0         0 sub AUTOLOAD {
568             return;
569             }
570              
571 142     142   230 sub block_accessor() {
572 21     21   157 my $accessor = shift;
  21         70  
  21         6824  
573 142 50       552 no strict 'refs';
574             return if defined &$accessor;
575 526     526   701 *$accessor = sub {
576 526 50       1385 my $self = shift;
577 0         0 if (@_) {
578             Carp::croak "Not allowed to set values for '$accessor'";
579 526 50       585 }
  526         2274  
580             my @list = @{$self->{$accessor} || []};
581 526 100       2073 return wantarray
582             ? (@list)
583 142         3162 : $list[0];
584             };
585             }
586              
587             block_accessor 'name';
588             block_accessor 'description';
589             Spiffy::field 'seq_num';
590             Spiffy::field 'is_filtered';
591             Spiffy::field 'blocks_object';
592             Spiffy::field 'original_values' => {};
593 1627     1627   2454  
594 21     21   209 sub set_value {
  21         54  
  21         4892  
595 1627         2141 no strict 'refs';
596 1627 100       4436 my $accessor = shift;
597             block_accessor $accessor
598 1627         9687 unless defined &$accessor;
599             $self->{$accessor} = [@_];
600             }
601 54     54   316  
602 54         202 sub run_filters {
603 54         183 my $map = $self->_section_map;
604 54 50       1338 my $order = $self->_section_order;
605             Carp::croak "Attempt to filter a block twice"
606 54         132 if $self->is_filtered;
607 202         662 for my $type (@$order) {
608 202         849 my $filters = $map->{$type}{filters};
609 202         5000 my @value = $self->$type;
610 202         686 $self->original_values->{$type} = $value[0];
611 557 50       1339 for my $filter ($self->_get_filters($type, $filters)) {
612             $Test::Base::Filter::arguments =
613 557         920 $filter =~ s/=(.*)$// ? $1 : undef;
614 21     21   131 my $function = "main::$filter";
  21         51  
  21         14950  
615 557 100       2710 no strict 'refs';
616 71         400 if (defined &$function) {
617 71         128 local $_ = join '', @value;
618 71         338 my $old = $_;
619 71 50 66     1985 @value = &$function(@value);
      33        
620             if (not(@value) or
621             @value == 1 and $value[0] =~ /\A(\d+|)\z/
622 0 0 0     0 ) {
623 0         0 if ($value[0] && $_ eq $old) {
624             Test::Base::diag("Filters returning numbers are supposed to do munging \$_: your filter '$function' apparently doesn't.");
625 0         0 }
626             @value = ($_);
627             }
628             }
629 486         10990 else {
630 486 50       1526 my $filter_object = $self->blocks_object->filter_class->new;
631             die "Can't find a function or method for '$filter' filter\n"
632 486         13694 unless $filter_object->can($filter);
633 486         1807 $filter_object->current_block($self);
634             @value = $filter_object->$filter(@value);
635             }
636             # Set the value after each filter since other filters may be
637 557         2244 # introspecting.
638             $self->set_value($type, @value);
639             }
640 54         1474 }
641             $self->is_filtered(1);
642             }
643 202     202   282  
644 202         303 sub _get_filters {
645 202   50     921 my $type = shift;
646 202         928 my $string = shift || '';
647 202         377 $string =~ s/\s*(.*?)\s*/$1/;
648 202   100     8797 my @filters = ();
649 202 100       606 my $map_filters = $self->blocks_object->_filters_map->{$type} || [];
650 202         330 $map_filters = [ $map_filters ] unless ref $map_filters;
651 202         286 my @append = ();
652 202         4351 for (
653             @{$self->blocks_object->_filters},
654             @$map_filters,
655             split(/\s+/, $string),
656 557         693 ) {
657 557 50       1134 my $filter = $_;
658 557 50       1458 last unless length $filter;
    50          
659 0         0 if ($filter =~ s/^-//) {
  0         0  
660             @filters = grep { $_ ne $filter } @filters;
661             }
662 0         0 elsif ($filter =~ s/^\+//) {
663             push @append, $filter;
664             }
665 557         1213 else {
666             push @filters, $filter;
667             }
668 202         920 }
669             return @filters, @append;
670             }
671              
672             {
673             %$reserved_section_names = map {
674             ($_, 1);
675             } keys(%Test::Base::Block::), qw( new DESTROY );
676             }
677              
678             __DATA__