SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 

perl-Test-LWP-UserAgent rpm build for : OpenSuSE. For other distributions click perl-Test-LWP-UserAgent.

Name : perl-Test-LWP-UserAgent
Version : 0.036 Vendor : obs://build_opensuse_org/devel:languages:perl
Release : lp154.1.1 Date : 2023-01-27 17:40:24
Group : Unspecified Source RPM : perl-Test-LWP-UserAgent-0.036-lp154.1.1.src.rpm
Size : 0.07 MB
Packager : https://www_suse_com/
Summary : LWP::UserAgent suitable for simulating and testing network calls
Description :
This module is a subclass of 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 networking client
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 PSGI app to handle the requests - see _examples/call_psgi.t_
in this distribution, and also 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/);




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\',
);

RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/devel:/languages:/perl:/CPAN-T/15.4/noarch

Content of RPM  Provides Requires

Download
ftp.icm.edu.pl  perl-Test-LWP-UserAgent-0.036-lp154.1.1.noarch.rpm
     

Provides :
perl(Test::LWP::UserAgent)
perl-Test-LWP-UserAgent

Requires :
perl(:MODULE_COMPAT_5.26.1)
perl(HTTP::Date)
perl(HTTP::Request)
perl(HTTP::Response)
perl(HTTP::Status)
perl(IO::Socket::IP) >= 0.31
perl(LWP::UserAgent)
perl(Safe::Isa)
perl(Try::Tiny)
perl(URI) >= 1.62
perl(namespace::clean) >= 0.19
perl(parent)
rpmlib(CompressedFileNames) <= 3.0.4-1
rpmlib(FileDigests) <= 4.6.0-1
rpmlib(PayloadFilesHavePrefix) <= 4.0-1
rpmlib(PayloadIsXz) <= 5.2-1


Content of RPM :
/usr/lib/perl5/vendor_perl/5.26.1/Test
/usr/lib/perl5/vendor_perl/5.26.1/Test/LWP
/usr/lib/perl5/vendor_perl/5.26.1/Test/LWP/UserAgent.pm
/usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi
/usr/share/doc/packages/perl-Test-LWP-UserAgent
/usr/share/doc/packages/perl-Test-LWP-UserAgent/CONTRIBUTING
/usr/share/doc/packages/perl-Test-LWP-UserAgent/Changes
/usr/share/doc/packages/perl-Test-LWP-UserAgent/README
/usr/share/doc/packages/perl-Test-LWP-UserAgent/docs
/usr/share/doc/packages/perl-Test-LWP-UserAgent/docs/advent_2012.pod
/usr/share/doc/packages/perl-Test-LWP-UserAgent/examples
/usr/share/doc/packages/perl-Test-LWP-UserAgent/examples/MyApp
/usr/share/doc/packages/perl-Test-LWP-UserAgent/examples/MyApp/Client.pm
/usr/share/doc/packages/perl-Test-LWP-UserAgent/examples/advent_2012_1.pl
/usr/share/doc/packages/perl-Test-LWP-UserAgent/examples/advent_2012_2.pl
/usr/share/doc/packages/perl-Test-LWP-UserAgent/examples/advent_2012_3.pl
/usr/share/doc/packages/perl-Test-LWP-UserAgent/examples/application_client_test.t
/usr/share/doc/packages/perl-Test-LWP-UserAgent/examples/call_psgi.t
/usr/share/doc/packages/perl-Test-LWP-UserAgent/examples/myapp.psgi
/usr/share/licenses/perl-Test-LWP-UserAgent
/usr/share/licenses/perl-Test-LWP-UserAgent/LICENCE
/usr/share/man/man3/Test::LWP::UserAgent.3pm.gz

 
ICM