package Test::MockObject::Extends; $Test::MockObject::Extends::VERSION = '1.20180705'; use strict; use warnings; use Test::MockObject; # Alias our 'import' to T:MO::import to handle this: # use Test::MockObject::Extends '-debug'; *import = \&Test::MockObject::import; use Devel::Peek 'CvGV'; use Scalar::Util 'blessed'; use constant PERL_5_9 => $^V gt v5.9.0; sub new { my ($class, $fake_class) = @_; return Test::MockObject->new() unless defined $fake_class; my $parent_class = $class->get_class( $fake_class ); $class->check_class_loaded( $parent_class ); my $self = blessed( $fake_class ) ? $fake_class : {}; # Fields now locks the hash as of 5.9.0 - #84535 if (PERL_5_9 && blessed( $fake_class ) && do { no strict 'refs'; exists ${$parent_class . '::'}{FIELDS} # uses fields }) { # bypass prototypes &Hash::Util::unlock_hash(\%$fake_class); bless $self, $class->gen_package( $parent_class ); &Hash::Util::lock_keys(\%$fake_class, fields::_accessible_keys($parent_class)); } else { bless $self, $class->gen_package( $parent_class ); } return $self; } sub check_class_loaded { my ($self, $parent_class) = @_; my $result = Test::MockObject->check_class_loaded( $parent_class ); return $result if $result; (my $load_class = $parent_class) =~ s/::/\//g; require $load_class . '.pm'; } sub get_class { my ($self, $invocant) = @_; return $invocant unless blessed $invocant; return ref $invocant; } my $packname = 'a'; sub gen_package { my ($class, $parent) = @_; my $package = 'T::MO::E::' . $packname++; no strict 'refs'; *{ $package . '::mock' } = \&mock; *{ $package . '::unmock' } = \&unmock; @{ $package . '::ISA' } = ( $parent ); *{ $package . '::can' } = $class->gen_can( $parent ); *{ $package . '::isa' } = $class->gen_isa( $parent ); *{ $package . '::AUTOLOAD' } = $class->gen_autoload( $parent ); *{ $package . '::__get_parents' } = $class->gen_get_parents( $parent ); *{ $package . '::DESTROY' } = $class->gen_destroy( $parent ); return $package; } sub gen_get_parents { my ($self, $parent) = @_; return sub { no strict 'refs'; return @{ $parent . '::ISA' }; }; } sub gen_isa { my ($class, $parent) = @_; sub { local *__ANON__ = 'isa'; my ($self, $class) = @_; return 1 if $class eq $parent; my $isa = $parent->can( 'isa' ); return $isa->( $self, $class ); }; } sub gen_can { my ($class, $parent) = @_; sub { local *__ANON__ = 'can'; my ($self, $method) = @_; my $parent_method = $self->SUPER::can( $method ); return $parent_method if $parent_method; return Test::MockObject->can( $method ); }; } sub gen_destroy { my ($class, $parent) = @_; my $destroy; $destroy = sub { my $self = shift; my $parent_destroy = $parent->can( 'DESTROY' ); $self->$parent_destroy if $parent_destroy && $parent_destroy != $destroy; $self->Test::MockObject::DESTROY; } } sub gen_autoload { my ($class, $parent) = @_; sub { our $AUTOLOAD; my $method = substr( $AUTOLOAD, rindex( $AUTOLOAD, ':' ) +1 ); my $self = shift; if (my $parent_method = $parent->can( $method )) { return $self->$parent_method( @_ ); } elsif (my $mock_method = Test::MockObject->can( $method )) { return $self->$mock_method( @_ ); } elsif (my $parent_al = $parent->can( 'AUTOLOAD' )) { my ($parent_pack) = CvGV( $parent_al ) =~ /\*(.*)::AUTOLOAD/; { no strict 'refs'; ${ "${parent_pack}::AUTOLOAD" } = "${parent}::${method}"; } unshift @_, $self; goto &$parent_al; } else { die "Undefined method $method at ", join( ' ', caller() ), "\n"; } }; } sub mock { my ($self, $name, $sub) = @_; Test::MockObject::_set_log( $self, $name, ( $name =~ s/^-// ? 0 : 1 ) ); my $mock_sub = sub { my ($self) = @_; $self->log_call( $name, @_ ); $sub->( @_ ); }; { no strict 'refs'; no warnings 'redefine'; *{ ref( $self ) . '::' . $name } = $mock_sub; } return $self; } sub unmock { my ($self, $name) = @_; Test::MockObject::_set_log( $self, $name, 0 ); no strict 'refs'; my $glob = *{ ref( $self ) . '::' }; delete $glob->{ $name }; return $self; } 1; __END__ =head1 NAME Test::MockObject::Extends - mock part of an object or class =head1 SYNOPSIS use Some::Class; use Test::MockObject::Extends; # create an object to mock my $object = Some::Class->new(); # wrap that same object with a mocking wrapper $object = Test::MockObject::Extends->new( $object ); # now chain mock and control calls $object->set_true( 'parent_method' ) ->set_always( -grandparent_method => 1 ) ->clear(); =head1 DESCRIPTION Test::MockObject::Extends lets you mock one or more methods of an existing object or class. This can be very handy when you're testing a well-factored module that does almost exactly what you want. Wouldn't it be handy to take control of a method or two to make sure you receive testable results? Now you can. =head1 METHODS =over 4 =item C C takes one optional argument, the object or class to mock. If you're mocking a method for an object that holds internal state, create an appropriate object, then pass it to this constructor. B this will modify the object in place. If you're mocking an object that does not need state, as in the cases where there's no internal data or you'll only be calling class methods, or where you'll be mocking all of the access to internal data, you can pass in the name of the class to mock partially. If you've not yet loaded the class, this method will try to load it for you. This may fail, so beware. If you pass no arguments, it will assume you really meant to create a normal C object and will oblige you. Note that if you pass a class, the object returned will appear to be an instance of that class; I. =item C See the documentation for Test::MockObject for all of the ways to mock methods and to retrieve method logging information. These methods return the invocant, so you can chain them. =item C Removes any active mocking of the named method. This means any calls to that method will hit the method of that name in the class being mocked, if it exists. This method returns the invocant, you can chain it. =item C As you'd expect from a mocked object, this will return true for the class it's mocking. =back =head1 INTERNAL METHODS To do its magic, this module uses several internal methods: =over 4 =item * C This verifies that you have the mockee defined. If not, it attempts to load the corresponding module for you. =item * C Returns an AUTOLOAD subroutine for the mock object that checks that the extended object (or class) can perform the requested method, that L can perform it, or that the parent has an appropriate AUTOLOAD of its own. (It should have its own C in that case too though.) =item * C Returns a C method for the mock object that respects the same execution order as C. =item * C Returns an C method for the mock object that claims to be the C<$extended> object appropriately. =item * C Returns a C<__get_parents()> method for the mock object that claims to be the C<$extended> object appropriately. =item * C Creates a new unique package for the mock object with the appropriate methods already installed. =item * C Returns the class name of the invocant, whether it's an object or a class name. =back =head1 CAVEATS There may be some weird corner cases with dynamically generated methods in the mocked class. You really should use subroutine declarations though, or at least set C appropriately. There are also potential name collisions with methods in this module or C, though this should be rare. =head1 AUTHOR chromatic, Echromatic at wgz dot orgE Documentation bug fixed by Stevan Little. Additional AUTOLOAD approach suggested by Adam Kennedy. Field-based objects supported by Gavin Mogan. Other bugs reported by Paul the Nomad and Praveen Ray. Thank you all! =head1 BUGS No known bugs. =head1 COPYRIGHT Copyright (c) 2004 - 2014, chromatic. All rights reserved. You may use, modify, and distribute this module under the same terms as Perl 5.10