/usr/share/perl5/Test/LWP/UserAgent.pm is in libtest-lwp-useragent-perl 0.033-1.
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 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 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 | use strict;
use warnings;
package Test::LWP::UserAgent; # git description: v0.032-3-g468b77d
# vim: set ts=8 sts=4 sw=4 tw=115 et :
# ABSTRACT: A LWP::UserAgent suitable for simulating and testing network calls
# KEYWORDS: testing useragent networking mock server client
our $VERSION = '0.033';
use parent 'LWP::UserAgent';
use Scalar::Util qw(blessed reftype);
use Storable 'freeze';
use HTTP::Request;
use HTTP::Response;
use URI;
use HTTP::Date;
use HTTP::Status qw(:constants status_message);
use Try::Tiny;
use Safe::Isa;
use Carp;
use namespace::clean 0.19 -also => [qw(__isa_coderef __is_regexp __isa_response)];
my @response_map;
my $network_fallback;
my $last_useragent;
sub new
{
my ($class, %options) = @_;
my $_network_fallback = delete $options{network_fallback};
my $self = $class->SUPER::new(%options);
$self->{__last_http_request_sent} = undef;
$self->{__last_http_response_received} = undef;
$self->{__response_map} = [];
$self->{__network_fallback} = $_network_fallback;
# strips default User-Agent header added by LWP::UserAgent, to make it
# easier to define literal HTTP::Requests to match against
$self->agent(undef) if defined $self->agent and $self->agent eq $self->_agent;
return $self;
}
sub map_response
{
my ($self, $request_specification, $response) = @_;
if (not defined $response and blessed $self)
{
# mask a global domain mapping
my $matched;
foreach my $mapping (@{$self->{__response_map}})
{
if ($mapping->[0] eq $request_specification)
{
$matched = 1;
undef $mapping->[1];
}
}
push @{$self->{__response_map}}, [ $request_specification, undef ]
if not $matched;
return;
}
my ($isa_response, $error_message) = __isa_response($response);
if (not $isa_response)
{
if (try { $response->can('request') })
{
my $oldres = $response;
$response = sub { $oldres->request($_[0]) };
}
else
{
carp 'map_response: ', $error_message;
}
}
if (blessed $self)
{
push @{$self->{__response_map}}, [ $request_specification, $response ];
}
else
{
push @response_map, [ $request_specification, $response ];
}
return $self;
}
sub map_network_response
{
my ($self, $request_specification) = @_;
push (
@{ blessed($self) ? $self->{__response_map} : \@response_map },
[ $request_specification, $self->_response_send_request ],
);
return $self;
}
sub unmap_all
{
my ($self, $instance_only) = @_;
if (blessed $self)
{
$self->{__response_map} = [];
@response_map = () unless $instance_only;
}
else
{
carp 'instance-only unmap requests make no sense when called globally'
if $instance_only;
@response_map = ();
}
return $self;
}
sub register_psgi
{
my ($self, $domain, $app) = @_;
return $self->map_response($domain, undef) if not defined $app;
carp 'register_psgi: app is not a coderef, it\'s a ', ref($app)
unless __isa_coderef($app);
return $self->map_response($domain, $self->_psgi_to_response($app));
}
sub unregister_psgi
{
my ($self, $domain, $instance_only) = @_;
if (blessed $self)
{
@{$self->{__response_map}} = grep { $_->[0] ne $domain } @{$self->{__response_map}};
@response_map = grep { $_->[0] ne $domain } @response_map
unless $instance_only;
}
else
{
@response_map = grep { $_->[0] ne $domain } @response_map;
}
return $self;
}
sub last_http_request_sent
{
my $self = shift;
return blessed($self)
? $self->{__last_http_request_sent}
: $last_useragent
? $last_useragent->last_http_request_sent
: undef;
}
sub last_http_response_received
{
my $self = shift;
return blessed($self)
? $self->{__last_http_response_received}
: $last_useragent
? $last_useragent->last_http_response_received
: undef;
}
sub last_useragent
{
return $last_useragent;
}
sub network_fallback
{
my ($self, $value) = @_;
if (@_ == 1)
{
return blessed $self
? $self->{__network_fallback}
: $network_fallback;
}
return $self->{__network_fallback} = $value if blessed $self;
$network_fallback = $value;
}
sub send_request
{
my ($self, $request, $arg, $size) = @_;
$self->progress('begin', $request);
my $matched_response = $self->run_handlers('request_send', $request);
my $uri = $request->uri;
foreach my $entry (@{$self->{__response_map}}, @response_map)
{
last if $matched_response;
next if not defined $entry;
my ($request_desc, $response) = @$entry;
if ($request_desc->$_isa('HTTP::Request'))
{
local $Storable::canonical = 1;
$matched_response = $response, last
if freeze($request) eq freeze($request_desc);
}
elsif (__is_regexp($request_desc))
{
$matched_response = $response, last
if $uri =~ $request_desc;
}
elsif (__isa_coderef($request_desc))
{
$matched_response = $response, last
if $request_desc->($request);
}
else
{
$uri = URI->new($uri) if not $uri->$_isa('URI');
$matched_response = $response, last
if $uri->host eq $request_desc;
}
}
$last_useragent = $self;
$self->{__last_http_request_sent} = $request;
if (not defined $matched_response and
($self->{__network_fallback} or $network_fallback))
{
my $response = $self->SUPER::send_request($request, $arg, $size);
$self->{__last_http_response_received} = $response;
return $response;
}
my $response = defined $matched_response
? $matched_response
: HTTP::Response->new('404');
if (__isa_coderef($response))
{
# emulates handling in LWP::UserAgent::send_request
if ($self->use_eval)
{
$response = try { $response->($request) }
catch {
my $exception = $_;
if ($exception->$_isa('HTTP::Response'))
{
$response = $exception;
}
else
{
my $full = $exception;
(my $status = $exception) =~ s/\n.*//s;
$status =~ s/ at .* line \d+.*//s; # remove file/line number
my $code = ($status =~ s/^(\d\d\d)\s+//) ? $1 : HTTP_INTERNAL_SERVER_ERROR;
# note that _new_response did not always take a fourth
# parameter - content used to always be "$code $message"
$response = LWP::UserAgent::_new_response($request, $code, $status, $full);
}
}
}
else
{
$response = $response->($request);
}
}
if (not $response->$_isa('HTTP::Response'))
{
carp 'response from coderef is not a HTTP::Response, it\'s a ',
(blessed($response) || ( ref($response) ? ('unblessed ' . ref($response)) : 'non-reference' ));
$response = LWP::UserAgent::_new_response($request, HTTP_INTERNAL_SERVER_ERROR, status_message(HTTP_INTERNAL_SERVER_ERROR));
}
else
{
$response->request($request); # record request for reference
$response->header('Client-Date' => HTTP::Date::time2str(time));
}
# handle any additional arguments that were provided, such as saving the
# content to a file. this also runs additional handlers for us.
my $protocol = LWP::Protocol->new('no-schemes-from-TLWPUA', $self);
my $complete;
$response = $protocol->collect($arg, $response, sub {
# remove content from $response and stream it back
return \'' if $complete;
my $content = $response->content;
$response->content('');
$complete++;
\$content;
});
$self->run_handlers('response_done', $response);
$self->progress('end', $response);
$self->{__last_http_response_received} = $response;
return $response;
}
# turns a PSGI app into a subref returning an HTTP::Response
sub _psgi_to_response
{
my ($self, $app) = @_;
carp 'register_psgi: did you forget to load HTTP::Message::PSGI?'
unless HTTP::Request->can('to_psgi') and HTTP::Response->can('from_psgi');
return sub { HTTP::Response->from_psgi($app->($_[0]->to_psgi)) };
}
# returns a subref that returns an HTTP::Response from a real network request
sub _response_send_request
{
my $self = shift;
# we cannot call ::request here, or we end up in an infinite loop
return sub { $self->SUPER::send_request($_[0]) } if blessed $self;
return sub { LWP::UserAgent->new->send_request($_[0]) };
}
sub __isa_coderef
{
ref $_[0] eq 'CODE'
or (reftype($_[0]) || '') eq 'CODE'
or overload::Method($_[0], '&{}')
}
sub __is_regexp
{
re->can('is_regexp') ? re::is_regexp($_[0]) : ref($_[0]) eq 'Regexp';
}
# returns true if is expected type for all response mappings,
# or (false, error message);
sub __isa_response
{
__isa_coderef($_[0]) || $_[0]->$_isa('HTTP::Response')
? (1)
: (0, 'response is not a coderef or an HTTP::Response, it\'s a '
. (blessed($_[0]) || ( ref($_[0]) ? 'unblessed ' . ref($_[0]) : 'non-reference' )));
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Test::LWP::UserAgent - A LWP::UserAgent suitable for simulating and testing network calls
=head1 VERSION
version 0.033
=head1 SYNOPSIS
In your application code:
use URI;
use HTTP::Request::Common;
use LWP::UserAgent;
my $useragent = $self->useragent || LWP::UserAgent->new;
my $uri = URI->new('http://example.com');
$uri->port('3000');
$uri->path('success');
my $request = POST($uri, a => 1);
my $response = $useragent->request($request);
Then, in your tests:
use Test::LWP::UserAgent;
use Test::More;
my $useragent = Test::LWP::UserAgent->new;
$useragent->map_response(
qr{example.com/success}, HTTP::Response->new('200', 'OK', ['Content-Type' => 'text/plain'], ''));
$useragent->map_response(
qr{example.com/fail}, HTTP::Response->new('500', 'ERROR', ['Content-Type' => 'text/plain'], ''));
# now, do something that sends a request, and test how your application
# responds to that response
=head1 DESCRIPTION
This module is a subclass of L<LWP::UserAgent> which overrides a few key
low-level methods that are concerned with actually sending your request over
the network, allowing an interception of that request and simulating a
particular response. This greatly facilitates testing of client networking
code where the server follows a known protocol.
The synopsis describes a typical case where you want to test how your
application reacts to various responses from the server. This module will let
you send back various responses depending on the request, without having to
set up a real server to test against. This can be invaluable when you need to
test edge cases or error conditions that are not normally returned from the
server.
There are a lot of different ways you can set up the response mappings, and
hook into this module; see the documentation for the individual interface
methods.
You can use a L<PSGI> app to handle the requests - see F<examples/call_psgi.t>
in this distribution, and also L</register_psgi> below.
OR, you can route some or all requests through the network as normal, but
still gain the hooks provided by this class to test what was sent and
received:
my $useragent = Test::LWP::UserAgent->new(network_fallback => 1);
or:
$useragent->map_network_response(qr/real.network.host/);
# ... generate a request...
# and then in your tests:
is(
$useragent->last_useragent->timeout,
180,
'timeout was overridden properly',
);
is(
$useragent->last_http_request_sent->uri,
'uri my code should have constructed',
);
is(
$useragent->last_http_response_received->code,
'200',
'I should have gotten an OK response',
);
=for stopwords useragent
=head2 Ensuring the right useragent is used
Note that L<LWP::UserAgent> itself is not monkey-patched - you must use
this module (or a subclass) to send your request, or it cannot be caught and
processed.
One common mechanism to swap out the useragent implementation is via a
lazily-built Moose attribute; if no override is provided at construction time,
default to C<< LWP::UserAgent->new(%options) >>.
Additionally, most methods can be called as class methods, which will store
the settings globally, so that any instance of L<Test::LWP::UserAgent> can use
them, which can simplify some of your application code.
=head1 METHODS
=head2 C<new>
Accepts all options as in L<LWP::UserAgent>, including C<use_eval>, an
undocumented boolean which is enabled by default. When set, sending the HTTP
request is wrapped in an C<< eval {} >>, allowing all exceptions to be caught
and an appropriate error response (usually HTTP 500) to be returned. You may
want to unset this if you really want to test extraordinary errors within your
networking code. Normally, you should leave it alone, as L<LWP::UserAgent> and
this module are capable of handling normal errors.
Plus, this option is added:
=over
=item * C<< network_fallback => <boolean> >>
If true, requests passing through this object that do not match a
previously-configured mapping or registration will be directed to the network.
(To only divert I<matched> requests rather than unmatched requests, use
C<map_network_response>, see below.)
This option is also available as a read/write accessor via
C<< $useragent->network_fallback(<value?>) >>.
=back
B<All other methods below may be called on a specific object instance, or as a class method.>
If the method invoked on a blessed object, the action performed or data returned is
limited to just that object; if it is called as a class method, the action or data is
global and affects all instances (although specific instances may have overrides; see below).
=head2 C<map_response($request_specification, $http_response)>
With this method, you set up what L<HTTP::Response> should be returned for each
request received.
The request match specification can be described in multiple ways:
=over
=item * string
The string is matched identically against the C<host> field of the L<URI> in the request.
$test_ua->map_response('example.com', HTTP::Response->new('500'));
=item * regexp
The regexp is matched against the URI in the request.
$test_ua->map_response(qr{foo/bar}, HTTP::Response->new('200'));
$test_ua->map_response(qr{baz/quux}, HTTP::Response->new('500'));
=item * code
The provided coderef is passed a single argument, the L<HTTP::Request>, and
returns a boolean indicating if there is a match.
# matches all GET and POST requests
$test_ua->map_response(sub {
my $request = shift;
return 1 if $request->method eq 'GET' || $request->method eq 'POST';
},
HTTP::Response->new('200'),
);
=item * L<HTTP::Request> object
The L<HTTP::Request> object is matched identically (including all query
parameters, headers etc) against the provided object.
=back
The response can be represented in multiple ways:
=over
=item *
a literal L<HTTP::Response> object:
HTTP::Response->new(...);
=item *
as a coderef that is run at the time of matching, with the request passed as
the single argument:
sub {
my $request = shift;
return HTTP::Response->new(...);
}
=item *
=for stopwords thusly
a blessed object that implements the C<request> method, which will be saved as
a coderef thusly (this allows you to use your own dispatcher implementation):
sub {
my $request = shift;
return $response->request($request);
}
=back
Instance mappings take priority over global (class method) mappings - if no
matches are found from mappings added to the instance, the global mappings are
then examined. When no matches have been found, a 404 response is returned.
This method returns the C<Test::LWP::UserAgent> object or class.
=head2 C<map_network_response($request_specification)>
Same as C<map_response> above, only requests that match this specification will
not use a response that you specify, but instead uses a real L<LWP::UserAgent>
to dispatch your request to the network.
If called on an instance, all options passed to the constructor (e.g. timeout)
are used for making the real network call. If called as a class method, a
pristine L<LWP::UserAgent> object with no customized options will be used
instead.
This method returns the C<Test::LWP::UserAgent> object or class.
=head2 C<unmap_all(instance_only?)>
When called as a class method, removes all mappings set up globally (across all
objects). Mappings set up on an individual object will still remain.
When called as an object method, removes I<all> mappings both globally and on
this instance, unless a true value is passed as an argument, in which only
mappings local to the object will be removed. (Any true value will do, so you
can pass a meaningful string.)
This method returns the C<Test::LWP::UserAgent> object or class.
=head2 C<register_psgi($domain, $app)>
Register a particular L<PSGI> app (code reference) to be used when requests
for a domain are received (matches are made exactly against
C<< $request->uri->host >>). The request is passed to the C<$app> for processing,
and the L<PSGI> response is converted back to an L<HTTP::Response> (you must
already have loaded L<HTTP::Message::PSGI> or equivalent, as this is not done
for you).
You can also use C<register_psgi> with a regular expression as the first
argument, or any of the other forms used by C<map_response>, if you wish, as
calling C<< $test_ua->register_psgi($domain, $app) >> is equivalent to:
$test_ua->map_response(
$domain,
sub { HTTP::Response->from_psgi($app->($_[0]->to_psgi)) },
);
This feature is useful for testing your PSGI applications, or for simulating
a server so as to test your client code.
You might find using L<Plack::Test> or L<Plack::Test::ExternalServer> easier
for your needs, so check those out as well.
This method returns the C<Test::LWP::UserAgent> object or class.
=head2 C<unregister_psgi($domain, instance_only?)>
When called as a class method, removes a domain->PSGI app entry that had been
registered globally. Some mappings set up on an individual object may still
remain.
When called as an object method, removes a domain registration that was made
both globally and locally, unless a true value was passed as the second
argument, in which case only the registration local to the object will be
removed. This allows a different mapping made globally to take over.
If you want to mask a global registration on just one particular instance,
then add C<undef> as a mapping on your instance:
$useragent->map_response($domain, undef);
This method returns the C<Test::LWP::UserAgent> object or class.
=head2 C<last_http_request_sent>
The last L<HTTP::Request> object that this object (if called on an object) or
module (if called as a class method) processed, whether or not it matched a
mapping you set up earlier.
Note that this is also available via C<< last_http_response_received->request >>.
=head2 C<last_http_response_received>
The last L<HTTP::Response> object that this module returned, as a result of a
mapping you set up earlier with C<map_response>. You shouldn't normally need to
use this, as you know what you responded with - you should instead be testing
how your code reacted to receiving this response.
=head2 C<last_useragent>
The last Test::LWP::UserAgent object that was used to send a request.
Obviously this only provides new information if called as a class method; you
can use this if you don't have direct control over the useragent itself, to
get the object that was used, to verify options such as the network timeout.
=head2 C<network_fallback>
=for stopwords ORed
Getter/setter method for the network_fallback preference that will be used on
this object (if called as an instance method), or globally, if called as a
class method. Note that the actual behaviour used on an object is the ORed
value of the instance setting and the global setting.
=head2 C<send_request($request)>
This is the only method from L<LWP::UserAgent> that has been overridden, which
processes the L<HTTP::Request>, sends to the network, then creates the
L<HTTP::Response> object from the reply received. Here, we loop through your
local and global domain registrations, and local and global mappings (in this
order) and returns the B<first match found>; otherwise, a simple 404 response is
returned (unless C<network_fallback> was specified as a constructor option,
in which case unmatched requests will be delivered to the network.)
All other methods from L<LWP::UserAgent> are available unchanged.
=head1 Usage with SOAP requests
=head2 L<SOAP::Lite>
To use this module when communicating via L<SOAP::Lite> with a SOAP server (either a real one,
with live network requests, L<see above|/network_fallback> or with one simulated
with mapped responses), simply do this:
use SOAP::Lite;
use SOAP::Transport::HTTP;
$SOAP::Transport::HTTP::Client::USERAGENT_CLASS = 'Test::LWP::UserAgent';
You must then make all your configuration changes and mappings globally.
See also L<SOAP::Transport/CHANGING THE DEFAULT USERAGENT CLASS>.
=head2 L<XML::Compile::SOAP>
=for stopwords WSDL
When using L<XML::Compile::SOAP> with a compiled WSDL, you can change the
useragent object via L<XML::Compile::Transport::SOAPHTTP>:
my $call = $wsdl->compileClient(
$interface_name,
transport => XML::Compile::Transport::SOAPHTTP->new(
user_agent => $useragent,
address => $wsdl->endPoint,
),
);
See also L<XML::Compile::SOAP::FAQ/Adding HTTP headers>.
=head1 MOTIVATION
Most mock libraries on the CPAN use L<Test::MockObject>, which is widely considered
not good practice (among other things, C<@ISA> is violated, it requires
knowing far too much about the module's internals, and is very clumsy to work
with). (L<This blog entry|hashbang.ca/2011/09/23/mocking-lwpuseragent>
is one of many that chronicles its issues.)
This module is a direct descendant of L<LWP::UserAgent>, exports nothing into
your namespace, and all access is via method calls, so it is fully inheritable
should you desire to add more features or override some bits of functionality.
(Aside from the constructor), it only overrides the one method in L<LWP::UserAgent> that issues calls to the
network, so real L<HTTP::Request> and L<HTTP::Headers> objects are used
throughout. It provides a method (C<last_http_request_sent>) to access the last
L<HTTP::Request>, for testing things like the URI and headers that your code
sent to L<LWP::UserAgent>.
=head1 ACKNOWLEDGEMENTS
=for stopwords AirG Yury Zavarin mst
L<AirG Inc.|http://corp.airg.com>, my former employer, and the first user of this distribution.
mst - Matt S. Trout <mst@shadowcat.co.uk>, for the better name of this
distribution, and for the PSGI registration concept.
Also Yury Zavarin, whose L<Test::Mock::LWP::Dispatch> inspired me to write this
module, and from where I borrowed some aspects of the API.
=head1 SEE ALSO
=over 4
=item *
L<Perl advent article, 2012|http://www.perladvent.org/2012/2012-12-12.html>
=item *
L<Test::Mock::LWP::Dispatch>
=item *
L<Test::Mock::LWP::UserAgent>
=item *
L<URI>, L<HTTP::Request>, L<HTTP::Response>
=item *
L<LWP::UserAgent>
=item *
L<PSGI>, L<HTTP::Message::PSGI>, L<LWP::Protocol::PSGI>,
=item *
L<Plack::Test>, L<Plack::Test::ExternalServer>
=back
=head1 SUPPORT
Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=Test-LWP-UserAgent>
(or L<bug-Test-LWP-UserAgent@rt.cpan.org|mailto:bug-Test-LWP-UserAgent@rt.cpan.org>).
There is also a mailing list available for users of this distribution, at
L<http://lists.perl.org/list/perl-qa.html>.
There is also an irc channel available for users of this distribution, at
L<C<#perl> on C<irc.perl.org>|irc://irc.perl.org/#perl-qa>.
I am also usually active on irc, as 'ether' at C<irc.perl.org>.
=head1 AUTHOR
Karen Etheridge <ether@cpan.org>
=head1 CONTRIBUTOR
=for stopwords Tom Hukins
Tom Hukins <tom@eborcom.com>
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2012 by Karen Etheridge.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|