Files
perl-Test-WWW-Mechanize-PSGI/perl-Test-WWW-Mechanize-PSGI.spec
2025-08-12 18:17:59 +02:00

93 lines
3.2 KiB
RPMSpec

#
# spec file for package perl-Test-WWW-Mechanize-PSGI
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define cpan_name Test-WWW-Mechanize-PSGI
Name: perl-Test-WWW-Mechanize-PSGI
Version: 0.390.0
Release: 0
# 0.39 -> normalize -> 0.390.0
%define cpan_version 0.39
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Test PSGI programs using WWW::Mechanize
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/O/OA/OALDERS/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(CGI::Cookie)
BuildRequires: perl(HTTP::Message::PSGI)
BuildRequires: perl(Test::WWW::Mechanize)
BuildRequires: perl(Try::Tiny)
Requires: perl(HTTP::Message::PSGI)
Requires: perl(Test::WWW::Mechanize)
Requires: perl(Try::Tiny)
Provides: perl(Test::WWW::Mechanize::PSGI) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
PSGI is a specification to decouple web server environments from web
application framework code. Test::WWW::Mechanize is a subclass of
WWW::Mechanize that incorporates features for web application testing. The
Test::WWW::Mechanize::PSGI module meshes the two to allow easy testing of
PSGI applications.
Testing web applications has always been a bit tricky, normally requiring
starting a web server for your application and making real HTTP requests to
it. This module allows you to test PSGI web applications but does not
require a server or issue HTTP requests. Instead, it passes the HTTP
request object directly to PSGI. Thus you do not need to use a real
hostname: "http://localhost/" will do. However, this is optional. The
following two lines of code do exactly the same thing:
$mech->get_ok('/action');
$mech->get_ok('http://localhost/action');
This makes testing fast and easy. Test::WWW::Mechanize provides functions
for common web testing scenarios. For example:
$mech->get_ok( $page );
$mech->title_is( "Invoice Status", "Make sure we're on the invoice page" );
$mech->content_contains( "Andy Lester", "My name somewhere" );
$mech->content_like( qr/(cpan|perl)\.org/, "Link to perl.org or CPAN" );
An alternative to this module is Plack::Test.
%prep
%autosetup -n %{cpan_name}-%{cpan_version}
%build
perl Makefile.PL INSTALLDIRS=vendor
%make_build
%check
make test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%doc Changes CONTRIBUTORS README.md
%license LICENSE
%changelog