Ricerca…


Esempio di test dell'unità Perl

Quello che segue è un semplice esempio di script di test Perl, che fornisce alcune strutture per consentire il test di altri metodi nella classe / pacchetto sotto test. Lo script produce output standard con un semplice testo "ok" / "non ok", chiamato TAP (Test Anything Protocol).

In genere il comando dimostra esegue gli script e riepiloga i risultati del test.

#!/bin/env perl
# CPAN
use Modern::Perl;
use Carp;
use Test::More;
use Test::Exception;
use Const::Fast;

# Custom
BEGIN { use_ok('Local::MyPackage'); }

const my $PACKAGE_UNDER_TEST => 'Local::MyPackage';

# Example test of method 'file_type_build'
sub test_file_type_build {
    my %arg    = @_;
    my $label  = 'file_type_build';
    my $got_file_type;
    my $filename = '/etc/passwd';

    # Check the method call lives
    lives_ok(
        sub {
            $got_file_type = $PACKAGE_UNDER_TEST->file_type_build(
                filename => $filename
            );
        },
        "$label - lives"
    );

    # Check the result of the method call matches our expected result.
    like( $got_file_type, qr{ASCII[ ]text}ix, "$label - result" );
    return;
} ## end sub test_file_type_build

# More tests can be added here for method 'file_type_build', or other methods.


MAIN: {

   subtest 'file_type_build' => sub {
      test_file_type_build();
      # More tests of the method can be added here.
      done_testing();
   };

   # Tests of other methods can be added here, just like above.


   done_testing();
} ## end MAIN:

La migliore pratica

Uno script di test dovrebbe testare solo un pacchetto / classe, ma è possibile utilizzare molti script per testare un pacchetto / classe.

Ulteriori letture



Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow