Modules

  • ABCDE
  • FGHIL
  • MNOPS
  • TUX

Tools

TAP::Parser::Result

Perl 5 version 10.1 documentation
Recently read

TAP::Parser::Result

NAME

TAP::Parser::Result - Base class for TAP::Parser output objects

VERSION

Version 3.17

SYNOPSIS

  1. # abstract class - not meany to be used directly
  2. # see TAP::Parser::ResultFactory for preferred usage
  3. # directly:
  4. use TAP::Parser::Result;
  5. my $token = {...};
  6. my $result = TAP::Parser::Result->new( $token );

DESCRIPTION

This is a simple base class used by TAP::Parser to store objects that represent the current bit of test output data from TAP (usually a single line). Unless you're subclassing, you probably won't need to use this module directly.

METHODS

new

  1. # see TAP::Parser::ResultFactory for preferred usage
  2. # to use directly:
  3. my $result = TAP::Parser::Result->new($token);

Returns an instance the appropriate class for the test token passed in.

Boolean methods

The following methods all return a boolean value and are to be overridden in the appropriate subclass.

  • is_plan

    Indicates whether or not this is the test plan line.

    1. 1..3
  • is_pragma

    Indicates whether or not this is a pragma line.

    1. pragma +strict
  • is_test

    Indicates whether or not this is a test line.

    1. ok 1 Is OK!
  • is_comment

    Indicates whether or not this is a comment.

    1. # this is a comment
  • is_bailout

    Indicates whether or not this is bailout line.

    1. Bail out! We're out of dilithium crystals.
  • is_version

    Indicates whether or not this is a TAP version line.

    1. TAP version 4
  • is_unknown

    Indicates whether or not the current line could be parsed.

    1. ... this line is junk ...
  • is_yaml

    Indicates whether or not this is a YAML chunk.

raw

  1. print $result->raw;

Returns the original line of text which was parsed.

type

  1. my $type = $result->type;

Returns the "type" of a token, such as comment or test .

as_string

  1. print $result->as_string;

Prints a string representation of the token. This might not be the exact output, however. Tests will have test numbers added if not present, TODO and SKIP directives will be capitalized and, in general, things will be cleaned up. If you need the original text for the token, see the raw method.

is_ok

  1. if ( $result->is_ok ) { ... }

Reports whether or not a given result has passed. Anything which is not a test result returns true. This is merely provided as a convenient shortcut.

passed

Deprecated. Please use is_ok instead.

has_directive

  1. if ( $result->has_directive ) {
  2. ...
  3. }

Indicates whether or not the given result has a TODO or SKIP directive.

has_todo

  1. if ( $result->has_todo ) {
  2. ...
  3. }

Indicates whether or not the given result has a TODO directive.

has_skip

  1. if ( $result->has_skip ) {
  2. ...
  3. }

Indicates whether or not the given result has a SKIP directive.

set_directive

Set the directive associated with this token. Used internally to fake TODO tests.

SUBCLASSING

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

Remember: if you want your subclass to be automatically used by the parser, you'll have to register it with register_type in TAP::Parser::ResultFactory.

If you're creating a completely new result type, you'll probably need to subclass TAP::Parser::Grammar too, or else it'll never get used.

Example

  1. package MyResult;
  2. use strict;
  3. use vars '@ISA';
  4. @ISA = 'TAP::Parser::Result';
  5. # register with the factory:
  6. TAP::Parser::ResultFactory->register_type( 'my_type' => __PACKAGE__ );
  7. sub as_string { 'My results all look the same' }

SEE ALSO

TAP::Object, TAP::Parser, TAP::Parser::ResultFactory, TAP::Parser::Result::Bailout, TAP::Parser::Result::Comment, TAP::Parser::Result::Plan, TAP::Parser::Result::Pragma, TAP::Parser::Result::Test, TAP::Parser::Result::Unknown, TAP::Parser::Result::Version, TAP::Parser::Result::YAML,