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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
|
NAME
Mock::Quick - Quickly mock objects and classes, even temporarily
replace them, side-effect free.
DESCRIPTION
Mock-Quick is here to solve the current problems with Mocking
libraries.
There are a couple Mocking libraries available on CPAN. The primary
problems with these libraries include verbose syntax, and most
importantly side-effects. Some Mocking libraries expect you to mock a
specific class, and will unload it then redefine it. This is
particularly a problem if you only want to override a class on a
lexical level.
Mock-Quick provides a declarative mocking interface that results in a
very concise, but clear syntax. There are separate facilities for
mocking object instances, and classes. You can quickly create an
instance of an object with custom attributes and methods. You can also
quickly create an anonymous class, optionally inheriting from another,
with whatever methods you desire.
Mock-Quick also provides a tool that provides an OO interface to
overriding methods in existing classes. This tool also allows for the
restoration of the original class methods. Best of all this is a
localized tool, when your control object falls out of scope the
original class is restored.
SYNOPSIS
MOCKING OBJECTS
use Mock::Quick;
my $obj = qobj(
foo => 'bar', # define attribute
do_it => qmeth { ... }, # define method
...
);
is( $obj->foo, 'bar' );
$obj->foo( 'baz' );
is( $obj->foo, 'baz' );
$obj->do_it();
# define the new attribute automatically
$obj->bar( 'xxx' );
# define a new method on the fly
$obj->baz( qmeth { ... });
# remove an attribute or method
$obj->baz( qclear() );
STRICTER MOCK
use Mock::Quick;
my $obj = qstrict(
foo => 'bar', # define attribute
do_it => qmeth { ... }, # define method
...
);
is( $obj->foo, 'bar' );
$obj->foo( 'baz' );
is( $obj->foo, 'baz' );
$obj->do_it();
# remove an attribute or method
$obj->baz( qclear() );
You can no longer auto-vivify accessors and methods in strict mode:
# Cannot define the new attribute automatically
dies_ok { $obj->bar( 'xxx' ) };
# Cannot define a new method on the fly
dies_ok { $obj->baz( qmeth { ... }) };
In order to add methods/accessors you need to create a control object.
CONTROL OBJECTS
Control objects are objects that let you interface a mocked object.
They let you add attributes and methods, or even clear them. This is
unnecessary unless you use strict mocking, or choose not to import
qmeth() and qclear().
Take Control
my $control = qcontrol( $obj );
Add Attributes
$control->set_attributes(
foo => 'bar',
...
);
Add Methods
$control->set_methods(
do_it => sub { ... }, # No need to use qmeth()
...
);
Clear Attributes/Methods
$control->clear( qw/foo do_it .../ );
Toggle strict
$control->strict( $BOOL );
Create With Control
my $obj = qobj ...;
my $obj = qstrict ...;
my ( $obj, $control ) = qobjc ...;
my ( $sobj, $scontrol ) = qstrictc ...;
MOCKING CLASSES
Note: the control object returned here is of type Mock::Quick::Class,
whereas control objects for qobj style objects are of
Mock::Quick::Object::Control.
IMPLEMENT A CLASS
This will implement a class at the namespace provided via the
-implement argument. The class must not already be loaded. Once
complete the real class will be prevented from loading until you call
undefine() on the control object.
use Mock::Quick;
my $control = qclass(
-implement => 'My::Package',
# Insert a generic new() method (blessed hash)
-with_new => 1,
# Inheritance
-subclass => 'Some::Class',
# Can also do
-subclass => [ 'Class::A', 'Class::B' ],
# generic get/set attribute methods.
-attributes => [ qw/a b c d/ ],
# Method that simply returns a value.
simple => 'value',
# Custom method.
method => sub { ... },
);
my $obj = $control->package->new;
# OR
my $obj = My::Package->new;
# Override a method
$control->override( foo => sub { ... });
# Restore it to the original
$control->restore( 'foo' );
# Remove the namespace we created, which would allow the real thing to load
# in a require or use statement.
$control->undefine();
You can also use the qimplement() method instead of qclass:
use Mock::Quick;
my $control = qimplement 'Some::Package' => ( %args );
ANONYMOUS MOCKED CLASS
This is if you just need to generate a class where the package name
does not matter. This is done when the -takeover and -implement
arguments are both omitted.
use Mock::Quick;
my $control = qclass(
# Insert a generic new() method (blessed hash)
-with_new => 1,
# Inheritance
-subclass => 'Some::Class',
# Can also do
-subclass => [ 'Class::A', 'Class::B' ],
# generic get/set attribute methods.
-attributes => [ qw/a b c d/ ],
# Method that simply returns a value.
simple => 'value',
# Custom method.
method => sub { ... },
);
my $obj = $control->package->new;
# Override a method
$control->override( foo => sub { ... });
# Restore it to the original
$control->restore( 'foo' );
# Remove the anonymous namespace we created.
$control->undefine();
TAKING OVER EXISTING/LOADED CLASSES
use Mock::Quick;
my $control = qtakeover 'Some::Package' => ( %overrides );
# Override a method
$control->override( foo => sub { ... });
# Restore it to the original
$control->restore( 'foo' );
# Destroy the control object and completely restore the original class
# Some::Package.
$control = undef;
You can also do this through qclass():
use Mock::Quick;
my $control = qclass(
-takeover => 'Some::Package',
%overrides
);
METRICS
All control objects have a 'metrics' method. The metrics method returns
a hash where keys are method names, and values are the number of times
the method has been called. When a method is altered or removed the key
is deleted.
Metrics only apply to mocked methods. When you takeover an already
loaded class metrics will only track overridden methods.
EXPORTS
Mock-Quick uses Exporter::Declare. This allows for exports to be
prefixed or renamed. See "RENAMING IMPORTED ITEMS" in Exporter::Declare
for more information.
$obj = qobj( attribute => value, ... )
( $obj, $control ) = qobjc( attribute => value, ... )
Create an object. Every possible attribute works fine as a get/set
accessor. You can define other methods using qmeth {...} and
assigning that to an attribute. You can clear a method using qclear()
as an argument.
See Mock::Quick::Object for more.
$obj = qstrict( attribute => value, ... )
( $obj, $control ) = qstrictc( attribute => value, ... )
Create a stricter object, get/set accessors will not autovivify into
existence for undefined attributes.
$control = qclass( -config => ..., name => $value || sub { ... }, ... )
Define an anonymous package with the desired methods and
specifications.
See Mock::Quick::Class for more.
$control = qclass( -takeover => $package, %overrides )
$control = qtakeover( $package, %overrides );
Take over an existing class.
See Mock::Quick::Class for more.
$control = qimplement( $package, -config => ..., name => $value || sub
{ ... }, ... )
$control = qclass( -implement => $package, ... )
Implement the given package to specifications, altering %INC so that
the real class will not load. Destroying the control object will once
again allow the original to load.
qclear()
Returns a special reference that when used as an argument, will cause
Mock::Quick::Object methods to be cleared.
qmeth { my $self = shift; ... }
Define a method for an Mock::Quick::Object instance.
default_export qcontrol => sub { Mock::Quick::Object::Control->new(
@_ ) };
AUTHORS
Chad Granum exodist7@gmail.com
Ben Hengst notbenh@cpan.org
CONTRIBUTORS
Contributors are listed as authors in modules they have touched.
Ben Hengst notbenh@cpan.org
Glen Hinkle glen@empireenterprises.com
COPYRIGHT
Copyright (C) 2011 Chad Granum
Mock-Quick is free software; Standard perl licence.
Mock-Quick is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the license
for more details.
|