badaiaqrandista has asked for the wisdom of the Perl Monks concerning the following question:
I am trying to write test for the application I am maintaining. It has a lot of OO modules. To start, I created a test like this for one of those modules (modified from the original code):
#!/usr/bin/perl use strict; use warnings; use Test::MockObject::Extends; my $mock_property = Test::MockObject::Extends->new('MyApp::Property'); $mock_property->mock('id', '1'); $mock_property->mock('su_pwd', 'password'); my $admin = MyApp::Admin->new(owner => $mock_property, id => 0); is_deeply( $admin, { admin_id => 0, domain_id => '1', firstname => 'Super', lastname => 'User', username => 'su', password => 'password', }, "new() with id eq '0' (superuser)" ); ----------------------------------- package MyApp::Admin; use strict; use warnings; use Params::Validate ':all'; sub new { my $class = shift; my %args = validate(@_, id => { type => SCALAR }, owner => { isa => 'MyApp::Property' }, ); my $self = bless { admin_id => $args{id}, domain_id => $args{owner}->id, firstname => 'Super', lastname => 'User', username => 'su', password => $args{owner}->su_pwd, }, $class; return $self; }
When I run the test, it breaks with Params::Validate error saying that 'owner' parameter is an object of 'T::MO::E::a', not 'MyApp::Property'. I guess this is because Params::Validate does not validate the 'owner' parameter by calling 'isa', but checking the perl's internal data structure to check 'isa'.
Is there anyway to go around this? Or do I have to create my own mock object library?
Thanks
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Params::Validate and Test::MockObject::Extends
by chromatic (Archbishop) on May 09, 2006 at 07:47 UTC | |
by diotalevi (Canon) on May 09, 2006 at 13:10 UTC | |
by badaiaqrandista (Pilgrim) on May 09, 2006 at 12:18 UTC | |
by autarch (Hermit) on May 09, 2006 at 21:38 UTC | |
by badaiaqrandista (Pilgrim) on Jun 02, 2006 at 07:03 UTC |