Perl Language
Testy Perla
Szukaj…
Przykład testowania jednostki Perla
Poniżej znajduje się prosty przykładowy skrypt testowy Perla, który daje pewną strukturę umożliwiającą testowanie innych metod w testowanej klasie / pakiecie. Skrypt wytwarza standardowe dane wyjściowe z prostym tekstem „ok” / „nie ok”, który nazywa się TAP (Test Anything Protocol).
Zazwyczaj polecenie udowodnienia uruchamia skrypt (y) i podsumowuje wyniki testu.
#!/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:
Najlepsze praktyki
Skrypt testowy powinien testować tylko jeden pakiet / klasę, ale istnieje wiele skryptów do przetestowania pakietu / klasy.
Dalsza lektura
- Test :: Więcej - podstawowe operacje testowe.
- Test :: Wyjątek - testowanie zgłoszonych wyjątków.
- Test :: Różnice - Porównywanie wyników testów, które mają złożone struktury danych.
- Test :: Class - Testowanie oparte na klasach, a nie skrypt. Podobieństwa do JUnit.
- Samouczki dotyczące testowania Perla - dalsze czytanie.
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow