Skip to content

Instantly share code, notes, and snippets.

@memememomo
Created August 12, 2011 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save memememomo/1142366 to your computer and use it in GitHub Desktop.
Save memememomo/1142366 to your computer and use it in GitHub Desktop.
CGI Plack Test
use strict;
use warnings;
use Test::More;
use Plack::Test;
use HTTP::Request::Common;
use Plack::Loader;
use Plack::Util ();
my $app = Plack::Util::load_psgi('app.psgi');
test_psgi $app, sub {
my $cb = shift;
my $res;
$res = $cb->(GET "/index.cgi");
is $res->code, '200';
$res = $cb->(GET "/hello.cgi?name=memememomo");
is $res->content, "Hello, memememomo";
$res = $cb->(POST '/post.cgi', { name => 'memememomo' });
is $res->content, "Hello, memememomo";
$res = $cb->(GET '/redirect.cgi');
is $res->code, '301';
};
done_testing();
use strict;
use warnings;
use Plack::Test;
use Plack::Util;
use Test::More;
use Test::Requires 'Test::WWW::Mechanize::PSGI';
my $app = Plack::Util::load_psgi 'app.psgi';
my $mech = Test::WWW::Mechanize::PSGI->new(app => $app);
$mech->get_ok('/index.cgi');
$mech->get_ok('/hello.cgi?name=memememomo');
$mech->content_like(qr/Hello, memememomo/);
$mech->post_ok('/post.cgi', { name => 'memememomo' });
$mech->content_like(qr/Hello, memememomo/);
$mech->get_ok('/redirect.cgi');
done_testing;
#!/usr/bin/perl
use strict;
use warnings;
use File::Basename;
use Plack::Builder;
use Plack::App::CGIBin;
my $basedir = dirname(__FILE__);
builder {
mount "/" =>
Plack::App::CGIBin->new( root => $basedir, exec_cb => sub { 1 } )->to_app;
};
#!/usr/bin/perl
use strict;
use warnings;
use CGI;
my $q = CGI->new;
my $name = $q->param('name');
$q->header(-type => 'text/plain');
print "Hello, $name";
#!/usr/bin/perl
use strict;
use warnings;
use CGI;
my $q = CGI->new;
$q->header(-type => 'text/plain');
print "ok";
#!/usr/bin/perl
use strict;
use warnings;
use CGI;
my $q = CGI->new;
my $name = $q->param('name');
print $q->header(-type => 'text/plain');
print "Hello, $name";
#!/usr/bin/perl
use strict;
use warnings;
use CGI;
my $q = CGI->new;
print $q->redirect(
-status => 301,
-uri => '/index.cgi'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment