/usr/share/perl5/Test/Expect.pm is in libtest-expect-perl 0.31-2.
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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | package Test::Expect;
use strict;
use warnings;
use Class::Accessor::Chained::Fast;
use Expect::Simple;
use Exporter;
use Test::Builder;
use base qw(Class::Accessor::Chained::Fast Exporter);
__PACKAGE__->mk_accessors(qw(program));
our $VERSION = "0.31";
our @EXPORT = qw(
expect_run
expect_handle
expect_is
expect_like
expect_send
expect_quit
expect
END
);
my $Test = Test::Builder->new;
my $expect;
my $sent;
sub import {
my $self = shift;
if (@_) {
die @_;
my $package = caller;
$Test->exported_to($package);
$Test->plan(@_);
}
$Test->no_ending(0);
$self->export_to_level( 1, $self, $_ ) foreach @EXPORT;
}
sub expect_run {
my (%conf) = @_;
$expect = Expect::Simple->new(
{ Cmd => "PERL_RL=\"o=0\" " . $conf{command},
Prompt => $conf{prompt},
DisconnectCmd => $conf{quit},
Verbose => 0,
Debug => 0,
Timeout => 100
}
);
die $expect->error if $expect->error;
$Test->ok( 1, "expect_run" );
}
sub expect_handle { return $expect->expect_handle(); }
sub before {
my $before = $expect->before;
$before =~ s/\r//g;
$before =~ s/^$sent// if $sent;
$before =~ s/^\n+//;
$before =~ s/\n+$//;
return $before;
}
sub expect_like {
my ( $like, $comment ) = @_;
$Test->like( before(), $like, $comment );
}
sub expect_is {
my ( $is, $comment ) = @_;
$Test->is_eq( before(), $is, $comment );
}
sub expect_send {
my ( $send, $comment ) = @_;
$expect->send($send);
$sent = $send;
$Test->ok( 1, $comment );
}
sub expect {
my ( $send, $is, $label ) = @_;
expect_send( $send, $label );
expect_is( $is, $label );
}
sub expect_quit {
undef $expect;
}
sub END {
expect_quit;
}
1;
__END__
=head1 NAME
Test::Expect - Automated driving and testing of terminal-based programs
=head1 SYNOPSIS
# in a t/*.t file:
use Test::Expect;
use Test::More tests => 13;
expect_run(
command => "perl testme.pl",
prompt => 'testme: ',
quit => 'quit',
);
expect("ping", "pong", "expect");
expect_send("ping", "expect_send");
expect_is("* Hi there, to testme", "expect_is");
expect_like(qr/Hi there, to testme/, "expect_like");
=head1 DESCRIPTION
L<Test::Expect> is a module for automated driving and testing of
terminal-based programs. It is handy for testing interactive programs
which have a prompt, and is based on the same concepts as the Tcl
Expect tool. As in L<Expect::Simple>, the L<Expect> object is made
available for tweaking.
L<Test::Expect> is intended for use in a test script.
=head1 SUBROUTINES
=head2 expect_run
The expect_run subroutine sets up L<Test::Expect>. You must pass in
the interactive program to run, what the prompt of the program is, and
which command quits the program:
expect_run(
command => "perl testme.pl",
prompt => 'testme: ',
quit => 'quit',
);
=head2 expect
The expect subroutine is the catch all subroutine. You pass in the
command, the expected output of the subroutine and an optional
comment.
expect("ping", "pong", "expect");
=head2 expect_send
The expect_send subroutine sends a command to the program. You pass in
the command and an optional comment.
expect_send("ping", "expect_send");
=head2 expect_is
The expect_is subroutine tests the output of the program like
Test::More's is. It has an optional comment:
expect_is("* Hi there, to testme", "expect_is");
=head2 expect_like
The expect_like subroutine tests the output of the program like
Test::More's like. It has an optional comment:
expect_like(qr/Hi there, to testme/, "expect_like");
=head2 expect_handle
This returns the L<Expect> object.
=head1 expect_quit
Closes the L<Expect> handle.
=head1 SEE ALSO
L<Expect>, L<Expect::Simple>.
=head1 AUTHOR
Leon Brocard, C<< <acme@astray.com> >>
=head1 COPYRIGHT
Copyright (C) 2005, Leon Brocard
This module is free software; you can redistribute it or modify it
under the same terms as Perl itself.
|