From b5d66ba6e274eed251da951bb943b9ff67765290 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 18 Jul 2012 16:22:08 -0500 Subject: import the Plack::Request test suite --- t/upload-large.t | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 t/upload-large.t (limited to 't/upload-large.t') diff --git a/t/upload-large.t b/t/upload-large.t new file mode 100644 index 0000000..39e14a7 --- /dev/null +++ b/t/upload-large.t @@ -0,0 +1,33 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use Test::More; +use Plack::Test; + +use HTTP::Request::Common; +use Web::Request; + +my $file = "t/data/baybridge.jpg"; + +my @backends = qw( Server MockHTTP ); +sub flip_backend { $Plack::Test::Impl = shift @backends } + +local $ENV{PLACK_SERVER} = "HTTP::Server::PSGI"; + +my $app = sub { + my $req = Web::Request->new_from_env(shift); + is $req->uploads->{image}->size, -s $file; + is $req->uploads->{image}->content_type, 'image/jpeg'; + is $req->uploads->{image}->basename, 'baybridge.jpg'; + $req->new_response(status => 200)->finalize; +}; + +test_psgi $app, sub { + my $cb = shift; + $cb->(POST "/", Content_Type => 'form-data', Content => [ + image => [ $file ], + ]); +} while flip_backend; + +done_testing; + -- cgit v1.2.3-54-g00ecf