NAME
UserAgent::Any::Fake – Fake implementation of UserAgent::Any to be used in tests of derived classes.
SYNOPSIS
sub fake_handler ($req, $res) {
if ($req->method eq 'GET' && $req->header('X-test') eq 'Foo') {
$res->status_code(404);
$res->header(Foo => 'bar');
$res->header(Baz => [qw(abc def)]);
}
}
my $fake_ua = UserAgent::Any::Fake->new(\&handler);
ok(call_that_expect_a_useragent_any($fake_ua));
DESCRIPTION
See the synopsis for now.
BUGS AND LIMITATIONS
This fake implementation does not handle asynchronous calls. In general, if you are testing a library deriving from UserAgent::Any this is not an issue because you should use the UserAgent::Any::Wrapper helper to generate the asynchronous calls and, as such, you don’t need to test them.
AUTHOR
Mathias Kende <mathias@cpan.org>
COPYRIGHT AND LICENSE
Copyright 2024 Mathias Kende
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.