Catalyst-Runtime
view release on metacpan or search on metacpan
t/utf_incoming.t view on Meta::CPAN
# Test to make sure redirect can now take an object (sorry don't have a better place for it
# but wanted test coverage.
my $location = $c->res->redirect( $c->uri_for($c->controller('Root')->action_for('uri_for')) );
Test::More::ok !ref $location;
}
sub stream_write :Local {
my ($self, $c) = @_;
$c->response->content_type('text/html');
$c->response->write("<p>This is stream_write action â¥</p>");
}
sub stream_write_fh :Local {
my ($self, $c) = @_;
$c->response->content_type('text/html');
my $writer = $c->res->write_fh;
$writer->write_encoded('<p>This is stream_write_fh action â¥</p>');
$writer->close;
}
# Stream a file with utf8 chars directly, you don't need to decode
sub stream_body_fh :Local {
my ($self, $c) = @_;
my $path = File::Spec->catfile('t', 'utf8.txt');
open(my $fh, '<', $path) || die "trouble: $!";
$c->response->content_type('text/html');
$c->response->body($fh);
}
# If you pull the file contents into a var, NOW you need to specify the
# IO encoding on the FH. Ultimately Plack at the end wants bytes...
sub stream_body_fh2 :Local {
my ($self, $c) = @_;
my $path = File::Spec->catfile('t', 'utf8.txt');
open(my $fh, '<:encoding(UTF-8)', $path) || die "trouble: $!";
my $contents = do { local $/; <$fh> };
$c->response->content_type('text/html');
$c->response->body($contents);
}
sub write_then_body :Local {
my ($self, $c) = @_;
$c->res->content_type('text/html');
$c->res->write("<p>This is early_write action â¥</p>");
$c->res->body("<p>This is body_write action â¥</p>");
}
sub file_upload :POST Consumes(Multipart) Local {
my ($self, $c) = @_;
Test::More::is $c->req->body_parameters->{'â¥'}, 'â¥â¥';
Test::More::ok my $upload = $c->req->uploads->{file};
Test::More::is $upload->charset, 'UTF-8';
my $text = $upload->slurp;
Test::More::is Encode::decode_utf8($text), "<p>This is stream_body_fh action â¥</p>\n";
my $decoded_text = $upload->decoded_slurp;
Test::More::is $decoded_text, "<p>This is stream_body_fh action â¥</p>\n";
Test::More::is $upload->filename, 'â¥ttachment.txt';
Test::More::is $upload->raw_basename, 'â¥ttachment.txt';
$c->response->content_type('text/html');
$c->response->body($decoded_text);
}
sub file_upload_utf8_param :POST Consumes(Multipart) Local {
my ($self, $c) = @_;
Test::More::is $c->req->body_parameters->{'â¥'}, 'â¥â¥';
Test::More::ok my $upload = $c->req->uploads->{'â¥'};
Test::More::is $upload->charset, 'UTF-8';
my $text = $upload->slurp;
Test::More::is Encode::decode_utf8($text), "<p>This is stream_body_fh action â¥</p>\n";
my $decoded_text = $upload->decoded_slurp;
Test::More::is $decoded_text, "<p>This is stream_body_fh action â¥</p>\n";
Test::More::is $upload->filename, 'â¥ttachment.txt';
Test::More::is $upload->raw_basename, 'â¥ttachment.txt';
$c->response->content_type('text/html');
$c->response->body($decoded_text);
}
sub json :POST Consumes(JSON) Local {
my ($self, $c) = @_;
my $post = $c->req->body_data;
Test::More::is $post->{'â¥'}, 'â¥â¥';
Test::More::is length($post->{'â¥'}), 2;
$c->response->content_type('application/json');
# Encode JSON also encodes to a UTF-8 encoded, binary string. This is why we don't
# have application/json as one of the things we match, otherwise we get double
# encoding.
$c->response->body(JSON::MaybeXS::encode_json($post));
}
## If someone clears encoding, they can do as they wish
sub manual_1 :Local {
my ($self, $c) = @_;
$c->clear_encoding;
$c->res->content_type('text/plain');
$c->res->content_type_charset('UTF-8');
$c->response->body( Encode::encode_utf8("manual_1 â¥"));
}
## If you do like gzip, well handle that yourself! Basically if you do some sort
## of content encoding like gzip, you must do on top of the encoding. We will fix
## the encoding plugins (Catalyst::Plugin::Compress) to do this properly for you.
#
sub gzipped :Local {
require Compress::Zlib;
my ($self, $c) = @_;
$c->res->content_type('text/plain');
$c->res->content_type_charset('UTF-8');
$c->res->content_encoding('gzip');
$c->response->body(Compress::Zlib::memGzip(Encode::encode_utf8("manual_1 â¥")));
}
sub override_encoding :Local {
my ($self, $c) = @_;
$c->res->content_type('text/plain');
$c->encoding(Encode::find_encoding('UTF-8'));
$c->encoding(Encode::find_encoding('Shift_JIS'));
$c->response->body("ãã¹ã");
}
sub stream_write_error :Local {
my ($self, $c) = @_;
$c->response->content_type('text/html');
$c->response->write("<p>This is stream_write action â¥</p>");
$c->encoding(Encode::find_encoding('Shift_JIS'));
$c->response->write("<p>This is stream_write action â¥</p>");
}
sub from_external_psgi :Local {
my ($self, $c) = @_;
my $env = HTTP::Message::PSGI::req_to_psgi( HTTP::Request::Common::GET '/root/â¥');
$c->res->from_psgi_response( ref($c)->to_app->($env));
}
t/utf_incoming.t view on Meta::CPAN
is $res->code, 200, 'OK';
is decode_utf8($res->content), "<p>This is stream_body_fh action â¥</p>\n", 'correct body';
is $res->content_charset, 'UTF-8';
# Not sure why there is a trailing newline above... its not in catalyst code I can see. Not sure
# if is a problem or just an artifact of the why the test stuff works - JNAP
}
{
my $res = request "/root/stream_write_fh";
is $res->code, 200, 'OK';
is decode_utf8($res->content), '<p>This is stream_write_fh action â¥</p>', 'correct body';
#is $res->content_length, 41, 'correct length';
is $res->content_charset, 'UTF-8';
}
{
my $res = request "/root/stream_body_fh2";
is $res->code, 200, 'OK';
is decode_utf8($res->content), "<p>This is stream_body_fh action â¥</p>\n", 'correct body';
is $res->content_length, 41, 'correct length';
is $res->content_charset, 'UTF-8';
}
{
my $res = request "/root/write_then_body";
is $res->code, 200, 'OK';
is decode_utf8($res->content), "<p>This is early_write action â¥</p><p>This is body_write action â¥</p>";
is $res->content_charset, 'UTF-8';
}
{
ok my $path = File::Spec->catfile('t', 'utf8.txt');
ok my $req = POST '/root/file_upload',
Content_Type => 'form-data',
Content => [encode_utf8('â¥')=>encode_utf8('â¥â¥'), file=>["$path", encode_utf8('â¥ttachment.txt'), 'Content-Type' =>'text/html; charset=UTF-8', ]];
ok my $res = request $req;
is decode_utf8($res->content), "<p>This is stream_body_fh action â¥</p>\n";
}
{
ok my $path = File::Spec->catfile('t', 'utf8.txt');
ok my $req = POST '/root/file_upload_utf8_param',
Content_Type => 'form-data',
Content => [encode_utf8('â¥')=>encode_utf8('â¥â¥'), encode_utf8('â¥')=>["$path", encode_utf8('â¥ttachment.txt'), 'Content-Type' =>'text/html; charset=UTF-8', ]];
ok my $res = request $req;
is decode_utf8($res->content), "<p>This is stream_body_fh action â¥</p>\n";
}
{
ok my $req = POST '/root/json',
Content_Type => 'application/json',
Content => encode_json +{'â¥'=>'â¥â¥'}; # Note: JSON does the UTF* encoding for us
ok my $res = request $req;
## decode_json expect the binary utf8 string and does the decoded bit for us.
is_deeply decode_json(($res->content)), +{'â¥'=>'â¥â¥'}, 'JSON was decoded correctly';
}
{
ok my $res = request "/root/override_encoding";
ok my $enc = Encode::find_encoding('SHIFT_JIS');
is $res->code, 200, 'OK';
is $enc->decode($res->content), "ãã¹ã", 'correct body';
is $res->content_length, 6, 'correct length'; # Bytes over the wire
is length($enc->decode($res->content)), 3;
is $res->content_charset, 'SHIFT_JIS', 'content charset is SHIFT_JIS as expected';
}
{
my $res = request "/root/manual_1";
is $res->code, 200, 'OK';
is decode_utf8($res->content), "manual_1 â¥", 'correct body';
is $res->content_length, 12, 'correct length';
is $res->content_charset, 'UTF-8';
}
SKIP: {
eval { require Compress::Zlib; 1} || do {
skip "Compress::Zlib needed to test gzip encoding", 5 };
my $res = request "/root/gzipped";
ok my $raw_content = $res->content;
ok my $content = Compress::Zlib::memGunzip($raw_content), 'no gunzip error';
is $res->code, 200, 'OK';
is decode_utf8($content), "manual_1 â¥", 'correct body';
is $res->content_charset, 'UTF-8', 'zlib charset is set correctly';
}
{
my $res = request "/root/stream_write_error";
is $res->code, 200, 'OK';
like decode_utf8($res->content), qr[<p>This is stream_write action â¥</p><!DOCTYPE html], 'correct body';
}
{
my $res = request "/root/from_external_psgi";
is $res->code, 200, 'OK';
is decode_utf8($res->content), '<p>This is path-heart action â¥</p>', 'correct body';
is $res->content_length, 36, 'correct length';
is $res->content_charset, 'UTF-8', 'external PSGI app has expected charset';
}
{
my $utf8 = 'test â¥';
my $shiftjs = 'test ãã¹ã';
ok my $req = POST '/root/echo_arg',
Content_Type => 'form-data',
Content => [
arg0 => 'helloworld',
Encode::encode('UTF-8','â¥') => Encode::encode('UTF-8','â¥â¥'), # Long form POST simple does not auto encode...
Encode::encode('UTF-8','â¥â¥â¥') => [
undef, '',
'Content-Type' =>'text/plain; charset=SHIFT_JIS',
'Content' => Encode::encode('SHIFT_JIS', $shiftjs)],
arg1 => [
undef, '',
'Content-Type' =>'text/plain; charset=UTF-8',
'Content' => Encode::encode('UTF-8', $utf8)],
arg2 => [
undef, '',
'Content-Type' =>'text/plain; charset=SHIFT_JIS',
'Content' => Encode::encode('SHIFT_JIS', $shiftjs)],
arg2 => [
undef, '',
'Content-Type' =>'text/plain; charset=SHIFT_JIS',
'Content' => Encode::encode('SHIFT_JIS', $shiftjs)],
];
my ($res, $c) = ctx_request $req;
is $c->req->body_parameters->{'arg0'}, 'helloworld', 'got helloworld value';
is $c->req->body_parameters->{'â¥'}, 'â¥â¥';
is $c->req->body_parameters->{'arg1'}, $utf8, 'decoded utf8 param';
is $c->req->body_parameters->{'arg2'}[0], $shiftjs, 'decoded shiftjs param';
is $c->req->body_parameters->{'arg2'}[1], $shiftjs, 'decoded shiftjs param';
is $c->req->body_parameters->{'â¥â¥â¥'}, $shiftjs, 'decoded shiftjs param';
}
{
my $shiftjs = 'test ãã¹ã';
my $encoded = Encode::encode('UTF-8', $shiftjs);
ok my $req = GET "/root/echo_arg?a=$encoded";
my ($res, $c) = ctx_request $req;
is $c->req->query_parameters->{'a'}, $shiftjs, 'got expected value';
}
{
my $invalid = '%e2';
# in url
{
my $req = GET "/$invalid";
my $res = request $req;
is ($res->code, '400', "Invalid url param is 400");
}
# in body
{
my $req = POST "/root/echo_arg", Content => "arg0=$invalid";
my $res = request $req;
is ($res->code, '400', "Invalid post param is 400");
}
# in query
{
# failing since 5.90080
my $req = GET "/root/echo_param?arg=$invalid";
my $res = request $req;
is ($res->code, '400', "Invalid get param is 400") or diag Dumper($res->decoded_content);
}
}
## should we use binmode on filehandles to force the encoding...?
## Not sure what else to do with multipart here, if docs are enough...
done_testing;
( run in 1.123 second using v1.01-cache-2.11-cpan-e1769b4cff6 )