| Test-MockModule documentation | Contained in the Test-MockModule distribution. |
Test::MockModule - Override subroutines in a module for unit testing
use Module::Name;
use Test::MockModule;
{
my $module = new Test::MockModule('Module::Name');
$module->mock('subroutine', sub { ... });
Module::Name::subroutine(@args); # mocked
}
Module::Name::subroutine(@args); # original subroutine
Test::MockModule lets you temporarily redefine subroutines in other packages
for the purposes of unit testing.
A Test::MockModule object is set up to mock subroutines for a given
module. The object remembers the original subroutine so it can be easily
restored. This happens automatically when all MockModule objects for the given
module go out of scope, or when you unmock() the subroutine.
Returns an object that will mock subroutines in the specified $package.
If there is no $VERSION defined in $package, the module will be
automatically loaded. You can override this behaviour by setting the no_auto
option:
my $mock = new Test::MockModule('Module::Name', no_auto => 1);
Returns the target package name for the mocked subroutines
Returns a boolean value indicating whether or not the subroutine is currently mocked
Temporarily replaces one or more subroutines in the mocked module. A subroutine can be mocked with a code reference or a scalar. A scalar will be recast as a subroutine that returns the scalar.
The following statements are equivalent:
$module->mock(purge => 'purged');
$module->mock(purge => sub { return 'purged'});
$module->mock(updated => [localtime()]);
$module->mock(updated => sub { return [localtime()]});
However, undef is a special case. If you mock a subroutine with undef it
will install an empty subroutine
$module->mock(purge => undef);
$module->mock(purge => sub { });
rather than a subroutine that returns undef:
$module->mock(purge => sub { undef });
You can call mock() for the same subroutine many times, but when you call
unmock(), the original subroutine is restored (not the last mocked
instance).
Returns the original (unmocked) subroutine
Restores the original $subroutine. You can specify a list of subroutines to
unmock() in one go.
Restores all the subroutines in the package that were mocked. This is
automatically called when all Test::MockObject objects for the given package
go out of scope.
Simon Flack <simonflk _AT_ cpan.org>
Copyright 2004 Simon Flack <simonflk _AT_ cpan.org>. All rights reserved
You may distribute under the terms of either the GNU General Public License or the Artistic License, as specified in the Perl README file.
| Test-MockModule documentation | Contained in the Test-MockModule distribution. |
# $Id: MockModule.pm,v 1.7 2005/03/24 22:23:38 simonflack Exp $ package Test::MockModule; use strict qw/subs vars/; use vars qw/$VERSION/; use Scalar::Util qw/reftype weaken/; use Carp; $VERSION = '0.05';#sprintf'%d.%02d', q$Revision: 1.7 $ =~ /: (\d+)\.(\d+)/; my %mocked; sub new { my $class = shift; my ($package, %args) = @_; if ($package && (my $existing = $mocked{$package})) { return $existing; } croak "Cannot mock $package" if $package && $package eq $class; unless (_valid_package($package)) { $package = 'undef' unless defined $package; croak "Invalid package name $package"; } unless ($args{no_auto} || ${"$package\::VERSION"}) { (my $load_package = "$package.pm") =~ s{::}{/}g; TRACE("$package is empty, loading $load_package"); require $load_package; } TRACE("Creating MockModule object for $package"); my $self = bless { _package => $package, _mocked => {}, }, $class; $mocked{$package} = $self; weaken $mocked{$package}; return $self; } sub DESTROY { my $self = shift; $self->unmock_all; } sub get_package { my $self = shift; return $self->{_package}; } sub mock { my $self = shift; while (my ($name, $value) = splice @_, 0, 2) { my $code = sub { }; if (ref $value && reftype $value eq 'CODE') { $code = $value; } elsif (defined $value) { $code = sub {$value}; } TRACE("$name: $code"); croak "Invalid subroutine name: $name" unless _valid_subname($name); my $sub_name = _full_name($self, $name); if (!$self->{_mocked}{$name}) { TRACE("Storing existing $sub_name"); $self->{_mocked}{$name} = 1; $self->{_orig}{$name} = defined &{$sub_name} ? \&$sub_name : $self->{_package}->can($name); } TRACE("Installing mocked $sub_name"); _replace_sub($sub_name, $code); } } sub original { my $self = shift; my ($name) = @_; return carp _full_name($self, $name) . " is not mocked" unless $self->{_mocked}{$name}; return $self->{_orig}{$name}; } sub unmock { my $self = shift; for my $name (@_) { croak "Invalid subroutine name: $name" unless _valid_subname($name); my $sub_name = _full_name($self, $name); unless ($self->{_mocked}{$name}) { carp $sub_name . " was not mocked"; next; } TRACE("Restoring original $sub_name"); _replace_sub($sub_name, $self->{_orig}{$name}); delete $self->{_mocked}{$name}; delete $self->{_orig}{$name}; } return $self; } sub unmock_all { my $self = shift; foreach (keys %{$self->{_mocked}}) { $self->unmock($_); } } sub is_mocked { my $self = shift; my ($name) = shift; return $self->{_mocked}{$name}; } sub _full_name { my ($self, $sub_name) = @_; sprintf "%s::%s", $self->{_package}, $sub_name; } sub _valid_package { defined($_[0]) && $_[0] =~ /^[a-z_]\w*(?:::\w+)*$/i; } sub _valid_subname { $_[0] =~ /^[a-z_]\w*$/i; } sub _replace_sub { my ($sub_name, $coderef) = @_; # from Test::MockObject local $SIG{__WARN__} = sub { warn $_[0] unless $_[0] =~ /redefined/ }; if (defined $coderef) { *{$sub_name} = $coderef; } else { TRACE("removing subroutine: $sub_name"); my ($package, $sub) = $sub_name =~ /(.*::)(.*)/; my %symbols = %{$package}; # save a copy of all non-code slots my %slot; foreach (qw(ARRAY FORMAT HASH IO SCALAR)) { next unless defined(my $elem = *{$symbols{$sub}}{$_}); $slot{$_} = $elem; } # clear the symbol table entry for the subroutine undef *$sub_name; # restore everything except the code slot return unless keys %slot; foreach (keys %slot) { *$sub_name = $slot{$_}; } } } # Log::Trace stubs sub TRACE {} sub DUMP {} 1;