when a POST supplies content encoding, dont assume UTF8
[catagits/Catalyst-Runtime.git] / t / utf_incoming.t
CommitLineData
0ca510f0 1use utf8;
2use warnings;
3use strict;
4use Test::More;
b9d96e27 5use HTTP::Request::Common;
d2000928 6use HTTP::Message::PSGI ();
be634ffb 7use Encode 2.21 'decode_utf8', 'encode_utf8', 'encode';
59e11cd7 8use File::Spec;
12982f86 9use JSON::MaybeXS;
0d94e986 10use Scalar::Util ();
0ca510f0 11
12# Test cases for incoming utf8
13
14{
15 package MyApp::Controller::Root;
16 $INC{'MyApp/Controller/Root.pm'} = __FILE__;
17
18 use base 'Catalyst::Controller';
19
20 sub heart :Path('♥') {
21 my ($self, $c) = @_;
22 $c->response->content_type('text/html');
23 $c->response->body("<p>This is path-heart action ♥</p>");
24 # We let the content length middleware find the length...
25 }
26
27 sub hat :Path('^') {
28 my ($self, $c) = @_;
29 $c->response->content_type('text/html');
30 $c->response->body("<p>This is path-hat action ^</p>");
31 }
32
e5a5e80b 33 sub uri_for :Path('uri_for') {
34 my ($self, $c) = @_;
35 $c->response->content_type('text/html');
36 $c->response->body("${\$c->uri_for($c->controller('Root')->action_for('argend'), ['♥'], '♥', {'♥'=>'♥♥'})}");
37 }
38
39 sub heart_with_arg :Path('a♥') Args(1) {
40 my ($self, $c, $arg) = @_;
41 $c->response->content_type('text/html');
42 $c->response->body("<p>This is path-heart-arg action $arg</p>");
43 Test::More::is $c->req->args->[0], '♥';
44 }
45
0ca510f0 46 sub base :Chained('/') CaptureArgs(0) { }
47 sub link :Chained('base') PathPart('♥') Args(0) {
48 my ($self, $c) = @_;
49 $c->response->content_type('text/html');
50 $c->response->body("<p>This is base-link action ♥</p>");
51 }
e5a5e80b 52 sub arg :Chained('base') PathPart('♥') Args(1) {
53 my ($self, $c, $arg) = @_;
54 $c->response->content_type('text/html');
55 $c->response->body("<p>This is base-link action ♥ $arg</p>");
56 }
57 sub capture :Chained('base') PathPart('♥') CaptureArgs(1) {
58 my ($self, $c, $arg) = @_;
59 $c->stash(capture=>$arg);
60 }
61 sub argend :Chained('capture') PathPart('♥') Args(1) {
62 my ($self, $c, $arg) = @_;
63 $c->response->content_type('text/html');
64
65 Test::More::is $c->req->args->[0], '♥';
66 Test::More::is $c->req->captures->[0], '♥';
69fa672d 67 Test::More::is $arg, '♥';
68 Test::More::is length($arg), 1, "got length of one";
e5a5e80b 69
70 $c->response->body("<p>This is base-link action ♥ ${\$c->req->args->[0]}</p>");
dd096a3a 71
72 # Test to make sure redirect can now take an object (sorry don't have a better place for it
73 # but wanted test coverage.
74 my $location = $c->res->redirect( $c->uri_for($c->controller('Root')->action_for('uri_for')) );
75 Test::More::ok !ref $location;
e5a5e80b 76 }
0ca510f0 77
dd096a3a 78 sub stream_write :Local {
79 my ($self, $c) = @_;
80 $c->response->content_type('text/html');
81 $c->response->write("<p>This is stream_write action ♥</p>");
82 }
83
fe1dfeaf 84 sub stream_write_fh :Local {
85 my ($self, $c) = @_;
86 $c->response->content_type('text/html');
87
88 my $writer = $c->res->write_fh;
e8361cf8 89 $writer->write_encoded('<p>This is stream_write_fh action ♥</p>');
59e11cd7 90 $writer->close;
91 }
92
e8361cf8 93 # Stream a file with utf8 chars directly, you don't need to decode
59e11cd7 94 sub stream_body_fh :Local {
95 my ($self, $c) = @_;
59e11cd7 96 my $path = File::Spec->catfile('t', 'utf8.txt');
97 open(my $fh, '<', $path) || die "trouble: $!";
98 $c->response->content_type('text/html');
99 $c->response->body($fh);
fe1dfeaf 100 }
101
e8361cf8 102 # If you pull the file contents into a var, NOW you need to specify the
103 # IO encoding on the FH. Ultimately Plack at the end wants bytes...
104 sub stream_body_fh2 :Local {
105 my ($self, $c) = @_;
106 my $path = File::Spec->catfile('t', 'utf8.txt');
107 open(my $fh, '<:encoding(UTF-8)', $path) || die "trouble: $!";
108 my $contents = do { local $/; <$fh> };
109
110 $c->response->content_type('text/html');
111 $c->response->body($contents);
112 }
113
12982f86 114 sub file_upload :POST Consumes(Multipart) Local {
115 my ($self, $c) = @_;
116 Test::More::is $c->req->body_parameters->{'♥'}, '♥♥';
117 Test::More::ok my $upload = $c->req->uploads->{file};
6adc45cf 118 Test::More::is $upload->charset, 'UTF-8';
12982f86 119
120 my $text = $upload->slurp;
121 Test::More::is Encode::decode_utf8($text), "<p>This is stream_body_fh action ♥</p>\n";
122
6adc45cf 123 my $decoded_text = $upload->decoded_slurp;
124 Test::More::is $decoded_text, "<p>This is stream_body_fh action ♥</p>\n";
125
126 Test::More::is $upload->filename, '♥ttachment.txt';
127 Test::More::is $upload->raw_basename, '♥ttachment.txt';
128
12982f86 129 $c->response->content_type('text/html');
6adc45cf 130 $c->response->body($decoded_text);
12982f86 131 }
132
133 sub json :POST Consumes(JSON) Local {
134 my ($self, $c) = @_;
135 my $post = $c->req->body_data;
136
137 Test::More::is $post->{'♥'}, '♥♥';
69fa672d 138 Test::More::is length($post->{'♥'}), 2;
12982f86 139 $c->response->content_type('application/json');
140
141 # Encode JSON also encodes to a UTF-8 encoded, binary string. This is why we don't
142 # have application/json as one of the things we match, otherwise we get double
143 # encoding.
144 $c->response->body(JSON::MaybeXS::encode_json($post));
145 }
e8361cf8 146
6adc45cf 147 ## If someone clears encoding, they can do as they wish
148 sub manual_1 :Local {
149 my ($self, $c) = @_;
c5661910 150 $c->clear_encoding;
6adc45cf 151 $c->res->content_type('text/plain');
152 $c->res->content_type_charset('UTF-8');
153 $c->response->body( Encode::encode_utf8("manual_1 ♥"));
154 }
155
156 ## If you do like gzip, well handle that yourself! Basically if you do some sort
157 ## of content encoding like gzip, you must do on top of the encoding. We will fix
158 ## the encoding plugins (Catalyst::Plugin::Compress) to do this properly for you.
159 #
160 sub gzipped :Local {
161 require Compress::Zlib;
162 my ($self, $c) = @_;
163 $c->res->content_type('text/plain');
164 $c->res->content_type_charset('UTF-8');
165 $c->res->content_encoding('gzip');
166 $c->response->body(Compress::Zlib::memGzip(Encode::encode_utf8("manual_1 ♥")));
167 }
168
69fa672d 169 sub override_encoding :Local {
170 my ($self, $c) = @_;
171 $c->res->content_type('text/plain');
70005e98 172 $c->encoding(Encode::find_encoding('UTF-8'));
69fa672d 173 $c->encoding(Encode::find_encoding('Shift_JIS'));
174 $c->response->body("テスト");
175 }
176
70005e98 177 sub stream_write_error :Local {
178 my ($self, $c) = @_;
179 $c->response->content_type('text/html');
180 $c->response->write("<p>This is stream_write action ♥</p>");
181 $c->encoding(Encode::find_encoding('Shift_JIS'));
182 $c->response->write("<p>This is stream_write action ♥</p>");
183 }
184
d2000928 185 sub from_external_psgi :Local {
186 my ($self, $c) = @_;
187 my $env = HTTP::Message::PSGI::req_to_psgi( HTTP::Request::Common::GET '/root/♥');
188 $c->res->from_psgi_response( ref($c)->to_app->($env));
189 }
190
be634ffb 191 sub echo_arg :Local {
192 my ($self, $c) = @_;
193 $c->response->content_type('text/plain');
194 $c->response->body($c->req->body_parameters->{arg});
195 }
196
0ca510f0 197 package MyApp;
198 use Catalyst;
199
0ca510f0 200 Test::More::ok(MyApp->setup, 'setup app');
201}
202
203ok my $psgi = MyApp->psgi_app, 'build psgi app';
204
205use Catalyst::Test 'MyApp';
0ca510f0 206
207{
208 my $res = request "/root/♥";
209
210 is $res->code, 200, 'OK';
211 is decode_utf8($res->content), '<p>This is path-heart action ♥</p>', 'correct body';
212 is $res->content_length, 36, 'correct length';
4a64c27b 213 is $res->content_charset, 'UTF-8';
0ca510f0 214}
215
216{
e5a5e80b 217 my $res = request "/root/a♥/♥";
218
219 is $res->code, 200, 'OK';
220 is decode_utf8($res->content), '<p>This is path-heart-arg action ♥</p>', 'correct body';
221 is $res->content_length, 40, 'correct length';
4a64c27b 222 is $res->content_charset, 'UTF-8';
e5a5e80b 223}
224
225{
0ca510f0 226 my $res = request "/root/^";
227
228 is $res->code, 200, 'OK';
229 is decode_utf8($res->content), '<p>This is path-hat action ^</p>', 'correct body';
230 is $res->content_length, 32, 'correct length';
4a64c27b 231 is $res->content_charset, 'UTF-8';
0ca510f0 232}
233
234{
235 my $res = request "/base/♥";
236
237 is $res->code, 200, 'OK';
238 is decode_utf8($res->content), '<p>This is base-link action ♥</p>', 'correct body';
239 is $res->content_length, 35, 'correct length';
4a64c27b 240 is $res->content_charset, 'UTF-8';
0ca510f0 241}
242
243{
b9d96e27 244 my ($res, $c) = ctx_request POST "/base/♥?♥=♥&♥=♥♥", [a=>1, b=>'', '♥'=>'♥', '♥'=>'♥♥'];
0ca510f0 245
246 is $res->code, 200, 'OK';
247 is decode_utf8($res->content), '<p>This is base-link action ♥</p>', 'correct body';
248 is $res->content_length, 35, 'correct length';
b9d96e27 249 is $c->req->parameters->{'♥'}[0], '♥';
250 is $c->req->query_parameters->{'♥'}[0], '♥';
251 is $c->req->body_parameters->{'♥'}[0], '♥';
252 is $c->req->parameters->{'♥'}[0], '♥';
4a62800d 253 is $c->req->parameters->{a}, 1;
254 is $c->req->body_parameters->{a}, 1;
4a64c27b 255 is $res->content_charset, 'UTF-8';
e5a5e80b 256}
4a62800d 257
e5a5e80b 258{
259 my ($res, $c) = ctx_request GET "/base/♥?♥♥♥";
4a62800d 260
e5a5e80b 261 is $res->code, 200, 'OK';
262 is decode_utf8($res->content), '<p>This is base-link action ♥</p>', 'correct body';
263 is $res->content_length, 35, 'correct length';
264 is $c->req->query_keywords, '♥♥♥';
4a64c27b 265 is $res->content_charset, 'UTF-8';
0ca510f0 266}
267
e5a5e80b 268{
269 my $res = request "/base/♥/♥";
270
271 is $res->code, 200, 'OK';
272 is decode_utf8($res->content), '<p>This is base-link action ♥ ♥</p>', 'correct body';
273 is $res->content_length, 39, 'correct length';
4a64c27b 274 is $res->content_charset, 'UTF-8';
e5a5e80b 275}
b9d96e27 276
e5a5e80b 277{
278 my $res = request "/base/♥/♥/♥/♥";
279
e5a5e80b 280 is decode_utf8($res->content), '<p>This is base-link action ♥ ♥</p>', 'correct body';
281 is $res->content_length, 39, 'correct length';
4a64c27b 282 is $res->content_charset, 'UTF-8';
e5a5e80b 283}
284
285{
286 my ($res, $c) = ctx_request POST "/base/♥/♥/♥/♥?♥=♥♥", [a=>1, b=>'2', '♥'=>'♥♥'];
287
288 ## Make sure that the urls we generate work the same
b063a165 289 my $uri_for1 = $c->uri_for($c->controller('Root')->action_for('argend'), ['♥'], '♥', {'♥'=>'♥♥'});
290 my $uri_for2 = $c->uri_for($c->controller('Root')->action_for('argend'), ['♥', '♥'], {'♥'=>'♥♥'});
e5a5e80b 291 my $uri = $c->req->uri;
292
b063a165 293 is "$uri_for1", "$uri_for2";
294 is "$uri", "$uri_for1";
e5a5e80b 295
296 {
b063a165 297 my ($res, $c) = ctx_request POST "$uri_for1", [a=>1, b=>'2', '♥'=>'♥♥'];
e5a5e80b 298 is $c->req->query_parameters->{'♥'}, '♥♥';
299 is $c->req->body_parameters->{'♥'}, '♥♥';
300 is $c->req->parameters->{'♥'}[0], '♥♥'; #combined with query and body
69fa672d 301 is $c->req->args->[0], '♥';
302 is length($c->req->parameters->{'♥'}[0]), 2;
303 is length($c->req->query_parameters->{'♥'}), 2;
304 is length($c->req->body_parameters->{'♥'}), 2;
305 is length($c->req->args->[0]), 1;
4a64c27b 306 is $res->content_charset, 'UTF-8';
e5a5e80b 307 }
308}
309
310{
311 my ($res, $c) = ctx_request "/root/uri_for";
312 my $url = $c->uri_for($c->controller('Root')->action_for('argend'), ['♥'], '♥', {'♥'=>'♥♥'});
313
314 is $res->code, 200, 'OK';
315 is decode_utf8($res->content), "$url", 'correct body'; #should do nothing
316 is $res->content, "$url", 'correct body';
317 is $res->content_length, 90, 'correct length';
4a64c27b 318 is $res->content_charset, 'UTF-8';
b063a165 319
320 {
321 my $url = $c->uri_for($c->controller->action_for('heart_with_arg'), '♥');
6adc45cf 322 is "$url", 'http://localhost/root/a%E2%99%A5/%E2%99%A5', "correct $url";
b063a165 323 }
324
325 {
326 my $url = $c->uri_for($c->controller->action_for('heart_with_arg'), ['♥']);
6adc45cf 327 is "$url", 'http://localhost/root/a%E2%99%A5/%E2%99%A5', "correct $url";
b063a165 328 }
dd096a3a 329}
330
331{
332 my $res = request "/root/stream_write";
00038a21 333
6adc45cf 334 is $res->code, 200, 'OK GET /root/stream_write';
dd096a3a 335 is decode_utf8($res->content), '<p>This is stream_write action ♥</p>', 'correct body';
4a64c27b 336 is $res->content_charset, 'UTF-8';
e5a5e80b 337}
0ca510f0 338
fe1dfeaf 339{
59e11cd7 340 my $res = request "/root/stream_body_fh";
341
342 is $res->code, 200, 'OK';
343 is decode_utf8($res->content), "<p>This is stream_body_fh action ♥</p>\n", 'correct body';
4a64c27b 344 is $res->content_charset, 'UTF-8';
59e11cd7 345 # Not sure why there is a trailing newline above... its not in catalyst code I can see. Not sure
346 # if is a problem or just an artifact of the why the test stuff works - JNAP
347}
348
349{
7b39dea1 350 my $res = request "/root/stream_write_fh";
fe1dfeaf 351
352 is $res->code, 200, 'OK';
353 is decode_utf8($res->content), '<p>This is stream_write_fh action ♥</p>', 'correct body';
8a79126d 354 #is $res->content_length, 41, 'correct length';
4a64c27b 355 is $res->content_charset, 'UTF-8';
fe1dfeaf 356}
dd096a3a 357
e8361cf8 358{
359 my $res = request "/root/stream_body_fh2";
360
361 is $res->code, 200, 'OK';
362 is decode_utf8($res->content), "<p>This is stream_body_fh action ♥</p>\n", 'correct body';
363 is $res->content_length, 41, 'correct length';
364 is $res->content_charset, 'UTF-8';
365}
366
12982f86 367{
368 ok my $path = File::Spec->catfile('t', 'utf8.txt');
369 ok my $req = POST '/root/file_upload',
370 Content_Type => 'form-data',
6adc45cf 371 Content => [encode_utf8('♥')=>encode_utf8('♥♥'), file=>["$path", encode_utf8('♥ttachment.txt'), 'Content-Type' =>'text/html; charset=UTF-8', ]];
12982f86 372
373 ok my $res = request $req;
374 is decode_utf8($res->content), "<p>This is stream_body_fh action ♥</p>\n";
375}
376
377{
378 ok my $req = POST '/root/json',
379 Content_Type => 'application/json',
380 Content => encode_json +{'♥'=>'♥♥'}; # Note: JSON does the UTF* encoding for us
381
382 ok my $res = request $req;
383
384 ## decode_json expect the binary utf8 string and does the decoded bit for us.
ddc88fbd 385 is_deeply decode_json(($res->content)), +{'♥'=>'♥♥'}, 'JSON was decoded correctly';
12982f86 386}
387
6adc45cf 388{
69fa672d 389 ok my $res = request "/root/override_encoding";
390 ok my $enc = Encode::find_encoding('SHIFT_JIS');
391
392 is $res->code, 200, 'OK';
393 is $enc->decode($res->content), "テスト", 'correct body';
394 is $res->content_length, 6, 'correct length'; # Bytes over the wire
395 is length($enc->decode($res->content)), 3;
ddc88fbd 396 is $res->content_charset, 'SHIFT_JIS', 'content charset is SHIFT_JIS as expected';
69fa672d 397}
398
399{
6adc45cf 400 my $res = request "/root/manual_1";
401
402 is $res->code, 200, 'OK';
403 is decode_utf8($res->content), "manual_1 ♥", 'correct body';
404 is $res->content_length, 12, 'correct length';
405 is $res->content_charset, 'UTF-8';
406}
407
408SKIP: {
409 eval { require Compress::Zlib; 1} || do {
410 skip "Compress::Zlib needed to test gzip encoding", 5 };
411
412 my $res = request "/root/gzipped";
413 ok my $raw_content = $res->content;
414 ok my $content = Compress::Zlib::memGunzip($raw_content), 'no gunzip error';
415
416 is $res->code, 200, 'OK';
417 is decode_utf8($content), "manual_1 ♥", 'correct body';
ddc88fbd 418 is $res->content_charset, 'UTF-8', 'zlib charset is set correctly';
6adc45cf 419}
420
70005e98 421{
422 my $res = request "/root/stream_write_error";
423
424 is $res->code, 200, 'OK';
425 like decode_utf8($res->content), qr[<p>This is stream_write action ♥</p><!DOCTYPE html], 'correct body';
426}
427
d2000928 428{
429 my $res = request "/root/from_external_psgi";
430
431 is $res->code, 200, 'OK';
432 is decode_utf8($res->content), '<p>This is path-heart action ♥</p>', 'correct body';
433 is $res->content_length, 36, 'correct length';
ddc88fbd 434 is $res->content_charset, 'UTF-8', 'external PSGI app has expected charset';
d2000928 435}
70005e98 436
c4d66db2 437{
be634ffb 438 my $utf8 = 'test ♥';
439 my $shiftjs = 'test テスト';
440
441 ok my $req = POST '/root/echo_arg',
442 Content_Type => 'form-data',
443 Content => [
444 arg0 => 'helloworld',
0d94e986 445 Encode::encode('UTF-8','♥') => Encode::encode('UTF-8','♥♥'), # Long form POST simple does not auto encode...
be634ffb 446 arg1 => [
447 undef, '',
448 'Content-Type' =>'text/plain; charset=UTF-8',
449 'Content' => Encode::encode('UTF-8', $utf8)],
450 arg2 => [
451 undef, '',
452 'Content-Type' =>'text/plain; charset=SHIFT_JIS',
453 'Content' => Encode::encode('SHIFT_JIS', $shiftjs)],
454 arg2 => [
455 undef, '',
456 'Content-Type' =>'text/plain; charset=SHIFT_JIS',
457 'Content' => Encode::encode('SHIFT_JIS', $shiftjs)],
458 ];
459
460 my ($res, $c) = ctx_request $req;
461
0d94e986 462 use Devel::Dwarn;
463 #Dwarn $c->req->body_parameters;
464
ddc88fbd 465 is $c->req->body_parameters->{'arg0'}, 'helloworld', 'got helloworld value';
0d94e986 466 is $c->req->body_parameters->{'♥'}, '♥♥';
467
468 ok Scalar::Util::blessed($c->req->body_parameters->{'arg1'});
469 ok Scalar::Util::blessed($c->req->body_parameters->{'arg2'}[0]);
470 ok Scalar::Util::blessed($c->req->body_parameters->{'arg2'}[1]);
ddc88fbd 471
0d94e986 472 # Since the form post is COMPLEX you are expected to decode it yourself.
473 is Encode::decode('UTF-8', $c->req->body_parameters->{'arg1'}->raw_data), $utf8, 'decoded utf8 param';
474 is Encode::decode('SHIFT_JIS', $c->req->body_parameters->{'arg2'}[0]->raw_data), $shiftjs, 'decoded shiftjis param';
475 is Encode::decode('SHIFT_JIS', $c->req->body_parameters->{'arg2'}[1]->raw_data), $shiftjs, 'decoded shiftjis param';
be634ffb 476
477}
478
12982f86 479## should we use binmode on filehandles to force the encoding...?
480## Not sure what else to do with multipart here, if docs are enough...
481
0ca510f0 482done_testing;