GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Plack::Middleware::Test::StashWarnings(3) User Contributed Perl Documentation Plack::Middleware::Test::StashWarnings(3)

Plack::Middleware::Test::StashWarnings - Test your application's warnings

  # for your PSGI application:
  enable "Test::StashWarnings";


  # for your Test::WWW::Mechanize subclass:
  use Storable 'thaw';
  sub get_warnings {
      local $Test::Builder::Level = $Test::Builder::Level + 1;
      my $self = shift;
  
      my $clone = $self->clone;
      return unless $clone->get_ok('/__test_warnings');
  
      my @warnings = @{ thaw $clone->content };
      return @warnings;
  }

Plack::Middleware::Test::StashWarnings is a Plack middleware component to record warnings generated by your application so that you can test them to make sure your application complains about the right things.

The warnings generated by your application are available at a special URL ("/__test_warnings"), encoded with "nfreeze" in Storable. So using Test::WWW::Mechanize you can just "get" that URL and "thaw" in Storable its content.

Plack::Middleware::Test::StashWarnings takes one optional argument, "verbose", which defaults to $ENV{TEST_VERBOSE}. If set to true, it will bubble warnings up to any pre-existing "__WARN__" handler. Turning this explicitly off may be useful if your tests load Test::NoWarnings and also use Test::WWW::Mechanize::PSGI for non-forking testing -- failure to do so would result in test failures even for caught warnings.

Warnings are an important part of any application. Your web application should warn its operators when something is amiss.

Almost as importantly, your web application should gracefully cope with bad input, the back button, and all other aspects of the user experience.

Unfortunately, tests seldom cover what happens when things go poorly. Are you sure that your application correctly denies that action and logs the failure? Are you sure it will tomorrow?

This module lets you retrieve the warnings that your forked server issues. That way you can test that your application continues to issue warnings when it makes sense. Catching the warnings also keeps your test output tidy. Finally, you'll be able to see (and be notified via failing tests) when your application issues new, unexpected warnings so you can fix them immediately.

Shawn M Moore "sartak@bestpractical.com"

Tatsuhiko Miyagawa wrote Plack::Middleware::Test::Recorder which served as a model for this module.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

Test::HTTP::Server::Simple::StashWarnings
2014-05-16 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.