File Coverage

inc/Test/Base.pm
Criterion Covered Total %
statement 219 381 57.4
branch 60 192 31.2
condition 16 83 19.2
subroutine 38 64 59.3
pod 0 29 0.0
total 333 749 44.4


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