The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

#!/usr/bin/perl
use strict;
use Test::More tests => 5;
use lib 't/lib';
my $app = ReplaceQueryObject->new();
{
package TestServer;
use base qw/
CGI::Application::Server
/;
}
my $port = $ENV{CGI_APP_SERVER_TEST_PORT} || 40000 + int(rand(10000));
my $server = TestServer->new($port);
$server->entry_points({
'/one.cgi' => $app,
'/two.cgi' => 'ReplaceQueryObject',
});
my $url_root = $server->started_ok("start up my web server");
my $mech = Test::WWW::Mechanize->new();
$mech->get($url_root . '/one.cgi?text=foo');
$mech->title_is('foo', '... got foo with CGI::Application object');
$mech->get($url_root . '/one.cgi?text=bar');
$mech->title_is('bar', '... got bar with CGI::Application object');
$mech->get($url_root . '/two.cgi?text=foo');
$mech->title_is('foo', '... got foo with CGI::Application class');
$mech->get($url_root . '/two.cgi?text=bar');
$mech->title_is('bar', '... got bar with CGI::Application class');