This file is indexed.

/usr/share/perl5/Test/Workflow/Block.pm is in libfennec-perl 2.017-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
package Test::Workflow::Block;
use strict;
use warnings;

use Fennec::Util qw/accessors/;
use Carp qw/croak/;
use B ();
use Scalar::Util qw/blessed/;
require Time::HiRes;

our @CARP_NOT = qw{
    Test::Workflow
    Test::Workflow::Meta
    Test::Workflow::Block
    Test::Workflow::Layer
};

accessors qw{
    name start_line end_line code verbose package diag skip todo should_fail subtype
};

sub new {
    my $class = shift;
    my ( $caller, $name, @args ) = @_;
    my $code;

    croak "You must provide a caller (got: $caller)"
        unless $caller && ref $caller && ref $caller eq 'ARRAY' && @$caller;
    croak "You must provide a name"
        unless $name and !ref $name;

    # If code is first, grab it
    $code = shift(@args)
        if ref $args[0]
        && ref $args[0] eq 'CODE';

    # If code is last, grab it
    my $ref = ref $args[-1] || '';
    if ( !$code && $ref eq 'CODE' ) {
        $code = pop(@args);

        # if code was last, and in key => code form, pop the key
        pop(@args) if $args[-1] =~ m/^(code|method|sub)$/;
    }

    # Code must be a param
    my %proto = @args;
    $code ||= $proto{code} || $proto{method} || $proto{sub};

    croak "You must provide a codeblock"
        unless $code
        && ref $code eq 'CODE';

    my $start_line = B::svref_2object($code)->START->line;
    my $end_line   = $caller->[2];
    $start_line-- unless $start_line == $end_line;

    %proto = (
        %proto,
        code       => $code,
        name       => $name,
        package    => $caller->[0],
        start_line => $start_line,
        end_line   => $end_line,
        diag       => ( $start_line == $end_line )
        ? "line $start_line"
        : "lines $start_line -> $end_line",
    );

    return bless( \%proto, $class );
}

sub clone_with {
    my $self   = shift;
    my %params = @_;
    bless( {%$self, %params}, blessed($self) );
}

sub run {
    my $self = shift;
    my ( $instance, $layer ) = @_;
    my $meta = $instance->TEST_WORKFLOW;
    my $name = "Group: " . $self->name;
    my $debug = $instance->can('FENNEC') && $instance->FENNEC->debug;

    return $meta->skip->( $name, $self->skip )
        if $self->skip;

    my $ref = ref $self;
    $ref =~ s/^.*:://;
    if ($debug) {
        my $collector = Fennec::Runner->new->collector;
        my ($sec, $ms) = Time::HiRes::gettimeofday();
        my $msg = sprintf(
            "FENNEC_DEBUG_BLOCK:PID:%d\0START_LINE:%d\0END_LINE:%d\0TYPE:%s\0NAME:%s\0SEC:%d\0MSEC:%d\0STATE:START\n",
            $$,
            $self->start_line,
            $self->end_line,
            $self->subtype,
            $self->name,
            $sec,
            $ms,
        );
        $collector->diag($msg);
    }

    $meta->todo_start->( $self->todo )
        if $self->todo;

    my $success = eval { $self->code->(@_); 1 } || $self->should_fail || 0;
    my $error = $@ || "Error masked!";
    chomp($error);

    $meta->todo_end->()
        if $self->todo;

    if ($debug) {
        my $collector = Fennec::Runner->new->collector;
        my ($sec, $ms) = Time::HiRes::gettimeofday();
        my $msg = sprintf(
            "FENNEC_DEBUG_BLOCK:PID:%d\0START_LINE:%d\0END_LINE:%d\0TYPE:%s\0NAME:%s\0SEC:%d\0MSEC:%d\0STATE:END\n",
            $$,
            $self->start_line,
            $self->end_line,
            $self->subtype,
            $self->name,
            $sec,
            $ms,
        );
        $collector->diag($msg);
    }

    return if $success && !$self->verbose;

    $meta->ok->( $success || 0, $name );
    $meta->diag->( "  ================================" . "\n  Error: " . $error . "\n  Package: " . $self->package . "\n  Block: '" . $self->name . "' on " . $self->diag . "\n\n" ) unless $success;
}

1;

__END__

=head1 NAME

Test::Workflow::Block - Track information about test blocks.

=head1 DESCRIPTION

Test::Workflow blocks such as tests and describes are all instances of this
class.

=head1 AUTHORS

Chad Granum L<exodist7@gmail.com>

=head1 COPYRIGHT

Copyright (C) 2013 Chad Granum

Test-Workflow is free software; Standard perl license.

Test-Workflow is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the license for more details.