TAP::Parser::SourceHandler::Perl



TAP::Parser::SourceHandler::Perl

NAME
VERSION
SYNOPSIS
DESCRIPTION
METHODS
SUBCLASSING
SEE ALSO

NAME

TAP::Parser::SourceHandler::Perl − Stream TAP from a Perl executable

VERSION

Version 3.23

SYNOPSIS

  use TAP::Parser::Source;
  use TAP::Parser::SourceHandler::Perl;
  my $source = TAP::Parser::Source−>new−>raw( \'script.pl' );
  $source−>assemble_meta;
  my $class = 'TAP::Parser::SourceHandler::Perl';
  my $vote  = $class−>can_handle( $source );
  my $iter  = $class−>make_iterator( $source );

DESCRIPTION

This is a Perl TAP::Parser::SourceHandler − it has 2 jobs:

1. Figure out if the TAP::Parser::Source it’s given is actually a Perl script ("can_handle").

2. Creates an iterator for Perl sources ("make_iterator").

Unless you’re writing a plugin or subclassing TAP::Parser, you probably won’t need to use this module directly.

METHODS

Class Methods
"can_handle"

  my $vote = $class−>can_handle( $source );

Only votes if $source looks like a file. Casts the following votes:

  0.9  if it has a shebang ala "#!...perl"
  0.75 if it has any shebang
  0.8  if it's a .t file
  0.9  if it's a .pl file
  0.75 if it's in a 't' directory
  0.25 by default (backwards compat)

"make_iterator"

  my $iterator = $class−>make_iterator( $source );

Constructs & returns a new TAP::Parser::Iterator::Process for the source. Assumes "$source−>raw" contains a reference to the perl script. "croak"s if the file could not be found.

The command to run is built as follows:

  $perl @switches $perl_script @test_args

The perl command to use is determined by "get_perl". The command generated is guaranteed to preserve:

  PERL5LIB
  PERL5OPT
  Taint Mode, if set in the script's shebang

Note: the command generated will not respect any shebang line defined in your Perl script. This is only a problem if you have compiled a custom version of Perl or if you want to use a specific version of Perl for one test and a different version for another, for example:

  #!/path/to/a/custom_perl −−some −−args
  #!/usr/local/perl−5.6/bin/perl −w

Currently you need to write a plugin to get around this.

"get_taint"

Decode any taint switches from a Perl shebang line.

  # $taint will be 't'
  my $taint = TAP::Parser::SourceHandler::Perl−>get_taint( '#!/usr/bin/perl −t' );
  # $untaint will be undefined
  my $untaint = TAP::Parser::SourceHandler::Perl−>get_taint( '#!/usr/bin/perl' );

"get_perl"

Gets the version of Perl currently running the test suite.

SUBCLASSING

Please see " SUBCLASSING " in TAP::Parser for a subclassing overview.

Example

  package MyPerlSourceHandler;
  use strict;
  use vars '@ISA';
  use TAP::Parser::SourceHandler::Perl;
  @ISA = qw( TAP::Parser::SourceHandler::Perl );
  # use the version of perl from the shebang line in the test file
  sub get_perl {
      my $self = shift;
      if (my $shebang = $self−>shebang( $self−>{file} )) {
          $shebang =~ /^#!(.* perl.*?)(?:(?:\s)|(?:$))/;
          return $1 if $1;
      }
      return $self−>SUPER::get_perl(@_);
  }

SEE ALSO

TAP::Object, TAP::Parser, TAP::Parser::IteratorFactory, TAP::Parser::SourceHandler, TAP::Parser::SourceHandler::Executable, TAP::Parser::SourceHandler::File, TAP::Parser::SourceHandler::Handle, TAP::Parser::SourceHandler::RawTAP






Opportunity


Personal Opportunity - Free software gives you access to billions of dollars of software at no cost. Use this software for your business, personal use or to develop a profitable skill. Access to source code provides access to a level of capabilities/information that companies protect though copyrights. Open source is a core component of the Internet and it is available to you. Leverage the billions of dollars in resources and capabilities to build a career, establish a business or change the world. The potential is endless for those who understand the opportunity.

Business Opportunity - Goldman Sachs, IBM and countless large corporations are leveraging open source to reduce costs, develop products and increase their bottom lines. Learn what these companies know about open source and how open source can give you the advantage.





Free Software


Free Software provides computer programs and capabilities at no cost but more importantly, it provides the freedom to run, edit, contribute to, and share the software. The importance of free software is a matter of access, not price. Software at no cost is a benefit but ownership rights to the software and source code is far more significant.


Free Office Software - The Libre Office suite provides top desktop productivity tools for free. This includes, a word processor, spreadsheet, presentation engine, drawing and flowcharting, database and math applications. Libre Office is available for Linux or Windows.





Free Books


The Free Books Library is a collection of thousands of the most popular public domain books in an online readable format. The collection includes great classical literature and more recent works where the U.S. copyright has expired. These books are yours to read and use without restrictions.


Source Code - Want to change a program or know how it works? Open Source provides the source code for its programs so that anyone can use, modify or learn how to write those programs themselves. Visit the GNU source code repositories to download the source.





Education


Study at Harvard, Stanford or MIT - Open edX provides free online courses from Harvard, MIT, Columbia, UC Berkeley and other top Universities. Hundreds of courses for almost all major subjects and course levels. Open edx also offers some paid courses and selected certifications.


Linux Manual Pages - A man or manual page is a form of software documentation found on Linux/Unix operating systems. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.