separate arg compare from display better
[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');
58b80ff1 36 $c->response->body("${\$c->uri_for($c->controller('Root')->action_for('argend'), ['♥'], '♥#X♥X', {'♥'=>'♥♥'})}");
e5a5e80b 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
1728aeb7 114 sub write_then_body :Local {
115 my ($self, $c) = @_;
9c056c82 116
117 $c->res->content_type('text/html');
1728aeb7 118 $c->res->write("<p>This is early_write action ♥</p>");
119 $c->res->body("<p>This is body_write action ♥</p>");
120 }
121
12982f86 122 sub file_upload :POST Consumes(Multipart) Local {
123 my ($self, $c) = @_;
b0ff1be8 124
12982f86 125 Test::More::is $c->req->body_parameters->{'♥'}, '♥♥';
126 Test::More::ok my $upload = $c->req->uploads->{file};
6adc45cf 127 Test::More::is $upload->charset, 'UTF-8';
12982f86 128
129 my $text = $upload->slurp;
130 Test::More::is Encode::decode_utf8($text), "<p>This is stream_body_fh action ♥</p>\n";
131
6adc45cf 132 my $decoded_text = $upload->decoded_slurp;
133 Test::More::is $decoded_text, "<p>This is stream_body_fh action ♥</p>\n";
134
135 Test::More::is $upload->filename, '♥ttachment.txt';
136 Test::More::is $upload->raw_basename, '♥ttachment.txt';
137
12982f86 138 $c->response->content_type('text/html');
6adc45cf 139 $c->response->body($decoded_text);
12982f86 140 }
141
142 sub json :POST Consumes(JSON) Local {
143 my ($self, $c) = @_;
144 my $post = $c->req->body_data;
145
146 Test::More::is $post->{'♥'}, '♥♥';
69fa672d 147 Test::More::is length($post->{'♥'}), 2;
12982f86 148 $c->response->content_type('application/json');
149
150 # Encode JSON also encodes to a UTF-8 encoded, binary string. This is why we don't
151 # have application/json as one of the things we match, otherwise we get double
152 # encoding.
153 $c->response->body(JSON::MaybeXS::encode_json($post));
154 }
e8361cf8 155
6adc45cf 156 ## If someone clears encoding, they can do as they wish
157 sub manual_1 :Local {
158 my ($self, $c) = @_;
c5661910 159 $c->clear_encoding;
6adc45cf 160 $c->res->content_type('text/plain');
161 $c->res->content_type_charset('UTF-8');
162 $c->response->body( Encode::encode_utf8("manual_1 ♥"));
163 }
164
165 ## If you do like gzip, well handle that yourself! Basically if you do some sort
166 ## of content encoding like gzip, you must do on top of the encoding. We will fix
167 ## the encoding plugins (Catalyst::Plugin::Compress) to do this properly for you.
168 #
169 sub gzipped :Local {
170 require Compress::Zlib;
171 my ($self, $c) = @_;
172 $c->res->content_type('text/plain');
173 $c->res->content_type_charset('UTF-8');
174 $c->res->content_encoding('gzip');
175 $c->response->body(Compress::Zlib::memGzip(Encode::encode_utf8("manual_1 ♥")));
176 }
177
69fa672d 178 sub override_encoding :Local {
179 my ($self, $c) = @_;
180 $c->res->content_type('text/plain');
70005e98 181 $c->encoding(Encode::find_encoding('UTF-8'));
69fa672d 182 $c->encoding(Encode::find_encoding('Shift_JIS'));
183 $c->response->body("テスト");
184 }
185
70005e98 186 sub stream_write_error :Local {
187 my ($self, $c) = @_;
188 $c->response->content_type('text/html');
189 $c->response->write("<p>This is stream_write action ♥</p>");
190 $c->encoding(Encode::find_encoding('Shift_JIS'));
191 $c->response->write("<p>This is stream_write action ♥</p>");
192 }
193
d2000928 194 sub from_external_psgi :Local {
195 my ($self, $c) = @_;
196 my $env = HTTP::Message::PSGI::req_to_psgi( HTTP::Request::Common::GET '/root/♥');
197 $c->res->from_psgi_response( ref($c)->to_app->($env));
198 }
199
be634ffb 200 sub echo_arg :Local {
201 my ($self, $c) = @_;
202 $c->response->content_type('text/plain');
203 $c->response->body($c->req->body_parameters->{arg});
204 }
205
0ca510f0 206 package MyApp;
207 use Catalyst;
208
0ca510f0 209 Test::More::ok(MyApp->setup, 'setup app');
210}
211
212ok my $psgi = MyApp->psgi_app, 'build psgi app';
213
214use Catalyst::Test 'MyApp';
0ca510f0 215
216{
217 my $res = request "/root/♥";
218
219 is $res->code, 200, 'OK';
220 is decode_utf8($res->content), '<p>This is path-heart action ♥</p>', 'correct body';
221 is $res->content_length, 36, 'correct length';
4a64c27b 222 is $res->content_charset, 'UTF-8';
0ca510f0 223}
224
225{
e5a5e80b 226 my $res = request "/root/a♥/♥";
227
228 is $res->code, 200, 'OK';
229 is decode_utf8($res->content), '<p>This is path-heart-arg action ♥</p>', 'correct body';
230 is $res->content_length, 40, 'correct length';
4a64c27b 231 is $res->content_charset, 'UTF-8';
e5a5e80b 232}
233
234{
0ca510f0 235 my $res = request "/root/^";
236
237 is $res->code, 200, 'OK';
238 is decode_utf8($res->content), '<p>This is path-hat action ^</p>', 'correct body';
239 is $res->content_length, 32, 'correct length';
4a64c27b 240 is $res->content_charset, 'UTF-8';
0ca510f0 241}
242
243{
244 my $res = request "/base/♥";
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';
4a64c27b 249 is $res->content_charset, 'UTF-8';
0ca510f0 250}
251
252{
b9d96e27 253 my ($res, $c) = ctx_request POST "/base/♥?♥=♥&♥=♥♥", [a=>1, b=>'', '♥'=>'♥', '♥'=>'♥♥'];
0ca510f0 254
255 is $res->code, 200, 'OK';
256 is decode_utf8($res->content), '<p>This is base-link action ♥</p>', 'correct body';
257 is $res->content_length, 35, 'correct length';
b9d96e27 258 is $c->req->parameters->{'♥'}[0], '♥';
259 is $c->req->query_parameters->{'♥'}[0], '♥';
260 is $c->req->body_parameters->{'♥'}[0], '♥';
261 is $c->req->parameters->{'♥'}[0], '♥';
4a62800d 262 is $c->req->parameters->{a}, 1;
263 is $c->req->body_parameters->{a}, 1;
4a64c27b 264 is $res->content_charset, 'UTF-8';
e5a5e80b 265}
4a62800d 266
e5a5e80b 267{
268 my ($res, $c) = ctx_request GET "/base/♥?♥♥♥";
4a62800d 269
e5a5e80b 270 is $res->code, 200, 'OK';
271 is decode_utf8($res->content), '<p>This is base-link action ♥</p>', 'correct body';
272 is $res->content_length, 35, 'correct length';
273 is $c->req->query_keywords, '♥♥♥';
4a64c27b 274 is $res->content_charset, 'UTF-8';
0ca510f0 275}
276
e5a5e80b 277{
278 my $res = request "/base/♥/♥";
279
280 is $res->code, 200, 'OK';
281 is decode_utf8($res->content), '<p>This is base-link action ♥ ♥</p>', 'correct body';
282 is $res->content_length, 39, 'correct length';
4a64c27b 283 is $res->content_charset, 'UTF-8';
e5a5e80b 284}
b9d96e27 285
e5a5e80b 286{
287 my $res = request "/base/♥/♥/♥/♥";
288
e5a5e80b 289 is decode_utf8($res->content), '<p>This is base-link action ♥ ♥</p>', 'correct body';
290 is $res->content_length, 39, 'correct length';
4a64c27b 291 is $res->content_charset, 'UTF-8';
e5a5e80b 292}
293
294{
295 my ($res, $c) = ctx_request POST "/base/♥/♥/♥/♥?♥=♥♥", [a=>1, b=>'2', '♥'=>'♥♥'];
296
297 ## Make sure that the urls we generate work the same
b063a165 298 my $uri_for1 = $c->uri_for($c->controller('Root')->action_for('argend'), ['♥'], '♥', {'♥'=>'♥♥'});
299 my $uri_for2 = $c->uri_for($c->controller('Root')->action_for('argend'), ['♥', '♥'], {'♥'=>'♥♥'});
e5a5e80b 300 my $uri = $c->req->uri;
301
b063a165 302 is "$uri_for1", "$uri_for2";
303 is "$uri", "$uri_for1";
e5a5e80b 304
305 {
b063a165 306 my ($res, $c) = ctx_request POST "$uri_for1", [a=>1, b=>'2', '♥'=>'♥♥'];
e5a5e80b 307 is $c->req->query_parameters->{'♥'}, '♥♥';
308 is $c->req->body_parameters->{'♥'}, '♥♥';
309 is $c->req->parameters->{'♥'}[0], '♥♥'; #combined with query and body
69fa672d 310 is $c->req->args->[0], '♥';
311 is length($c->req->parameters->{'♥'}[0]), 2;
312 is length($c->req->query_parameters->{'♥'}), 2;
313 is length($c->req->body_parameters->{'♥'}), 2;
314 is length($c->req->args->[0]), 1;
4a64c27b 315 is $res->content_charset, 'UTF-8';
e5a5e80b 316 }
317}
318
319{
320 my ($res, $c) = ctx_request "/root/uri_for";
58b80ff1 321 my $url = $c->uri_for($c->controller('Root')->action_for('argend'), ['♥'], '♥#X♥X', {'♥'=>'♥♥'});
e5a5e80b 322
323 is $res->code, 200, 'OK';
324 is decode_utf8($res->content), "$url", 'correct body'; #should do nothing
325 is $res->content, "$url", 'correct body';
6b9f9ef7 326 is $res->content_length, 104, 'correct length';
4a64c27b 327 is $res->content_charset, 'UTF-8';
b063a165 328
329 {
330 my $url = $c->uri_for($c->controller->action_for('heart_with_arg'), '♥');
6adc45cf 331 is "$url", 'http://localhost/root/a%E2%99%A5/%E2%99%A5', "correct $url";
b063a165 332 }
333
334 {
335 my $url = $c->uri_for($c->controller->action_for('heart_with_arg'), ['♥']);
6adc45cf 336 is "$url", 'http://localhost/root/a%E2%99%A5/%E2%99%A5', "correct $url";
b063a165 337 }
dd096a3a 338}
339
340{
341 my $res = request "/root/stream_write";
00038a21 342
6adc45cf 343 is $res->code, 200, 'OK GET /root/stream_write';
dd096a3a 344 is decode_utf8($res->content), '<p>This is stream_write action ♥</p>', 'correct body';
4a64c27b 345 is $res->content_charset, 'UTF-8';
e5a5e80b 346}
0ca510f0 347
fe1dfeaf 348{
59e11cd7 349 my $res = request "/root/stream_body_fh";
350
351 is $res->code, 200, 'OK';
352 is decode_utf8($res->content), "<p>This is stream_body_fh action ♥</p>\n", 'correct body';
4a64c27b 353 is $res->content_charset, 'UTF-8';
59e11cd7 354 # Not sure why there is a trailing newline above... its not in catalyst code I can see. Not sure
355 # if is a problem or just an artifact of the why the test stuff works - JNAP
356}
357
358{
7b39dea1 359 my $res = request "/root/stream_write_fh";
fe1dfeaf 360
361 is $res->code, 200, 'OK';
362 is decode_utf8($res->content), '<p>This is stream_write_fh action ♥</p>', 'correct body';
8a79126d 363 #is $res->content_length, 41, 'correct length';
4a64c27b 364 is $res->content_charset, 'UTF-8';
fe1dfeaf 365}
dd096a3a 366
e8361cf8 367{
368 my $res = request "/root/stream_body_fh2";
369
370 is $res->code, 200, 'OK';
371 is decode_utf8($res->content), "<p>This is stream_body_fh action ♥</p>\n", 'correct body';
372 is $res->content_length, 41, 'correct length';
373 is $res->content_charset, 'UTF-8';
374}
375
12982f86 376{
1728aeb7 377 my $res = request "/root/write_then_body";
378
379 is $res->code, 200, 'OK';
380 is decode_utf8($res->content), "<p>This is early_write action ♥</p><p>This is body_write action ♥</p>";
381 is $res->content_charset, 'UTF-8';
382}
383
384{
12982f86 385 ok my $path = File::Spec->catfile('t', 'utf8.txt');
386 ok my $req = POST '/root/file_upload',
387 Content_Type => 'form-data',
6adc45cf 388 Content => [encode_utf8('♥')=>encode_utf8('♥♥'), file=>["$path", encode_utf8('♥ttachment.txt'), 'Content-Type' =>'text/html; charset=UTF-8', ]];
12982f86 389
390 ok my $res = request $req;
391 is decode_utf8($res->content), "<p>This is stream_body_fh action ♥</p>\n";
392}
393
394{
395 ok my $req = POST '/root/json',
396 Content_Type => 'application/json',
397 Content => encode_json +{'♥'=>'♥♥'}; # Note: JSON does the UTF* encoding for us
398
399 ok my $res = request $req;
400
401 ## decode_json expect the binary utf8 string and does the decoded bit for us.
ddc88fbd 402 is_deeply decode_json(($res->content)), +{'♥'=>'♥♥'}, 'JSON was decoded correctly';
12982f86 403}
404
6adc45cf 405{
69fa672d 406 ok my $res = request "/root/override_encoding";
407 ok my $enc = Encode::find_encoding('SHIFT_JIS');
408
409 is $res->code, 200, 'OK';
410 is $enc->decode($res->content), "テスト", 'correct body';
411 is $res->content_length, 6, 'correct length'; # Bytes over the wire
412 is length($enc->decode($res->content)), 3;
ddc88fbd 413 is $res->content_charset, 'SHIFT_JIS', 'content charset is SHIFT_JIS as expected';
69fa672d 414}
415
416{
6adc45cf 417 my $res = request "/root/manual_1";
418
419 is $res->code, 200, 'OK';
420 is decode_utf8($res->content), "manual_1 ♥", 'correct body';
421 is $res->content_length, 12, 'correct length';
422 is $res->content_charset, 'UTF-8';
423}
424
425SKIP: {
426 eval { require Compress::Zlib; 1} || do {
427 skip "Compress::Zlib needed to test gzip encoding", 5 };
428
429 my $res = request "/root/gzipped";
430 ok my $raw_content = $res->content;
431 ok my $content = Compress::Zlib::memGunzip($raw_content), 'no gunzip error';
432
433 is $res->code, 200, 'OK';
434 is decode_utf8($content), "manual_1 ♥", 'correct body';
ddc88fbd 435 is $res->content_charset, 'UTF-8', 'zlib charset is set correctly';
6adc45cf 436}
437
70005e98 438{
439 my $res = request "/root/stream_write_error";
440
441 is $res->code, 200, 'OK';
442 like decode_utf8($res->content), qr[<p>This is stream_write action ♥</p><!DOCTYPE html], 'correct body';
443}
444
d2000928 445{
446 my $res = request "/root/from_external_psgi";
447
448 is $res->code, 200, 'OK';
449 is decode_utf8($res->content), '<p>This is path-heart action ♥</p>', 'correct body';
450 is $res->content_length, 36, 'correct length';
ddc88fbd 451 is $res->content_charset, 'UTF-8', 'external PSGI app has expected charset';
d2000928 452}
70005e98 453
c4d66db2 454{
be634ffb 455 my $utf8 = 'test ♥';
456 my $shiftjs = 'test テスト';
457
458 ok my $req = POST '/root/echo_arg',
459 Content_Type => 'form-data',
460 Content => [
461 arg0 => 'helloworld',
0d94e986 462 Encode::encode('UTF-8','♥') => Encode::encode('UTF-8','♥♥'), # Long form POST simple does not auto encode...
c463b49c 463 Encode::encode('UTF-8','♥♥♥') => [
464 undef, '',
465 'Content-Type' =>'text/plain; charset=SHIFT_JIS',
466 'Content' => Encode::encode('SHIFT_JIS', $shiftjs)],
be634ffb 467 arg1 => [
468 undef, '',
469 'Content-Type' =>'text/plain; charset=UTF-8',
470 'Content' => Encode::encode('UTF-8', $utf8)],
471 arg2 => [
472 undef, '',
473 'Content-Type' =>'text/plain; charset=SHIFT_JIS',
474 'Content' => Encode::encode('SHIFT_JIS', $shiftjs)],
475 arg2 => [
476 undef, '',
477 'Content-Type' =>'text/plain; charset=SHIFT_JIS',
478 'Content' => Encode::encode('SHIFT_JIS', $shiftjs)],
479 ];
480
481 my ($res, $c) = ctx_request $req;
482
ddc88fbd 483 is $c->req->body_parameters->{'arg0'}, 'helloworld', 'got helloworld value';
0d94e986 484 is $c->req->body_parameters->{'♥'}, '♥♥';
b0ff1be8 485 is $c->req->body_parameters->{'arg1'}, $utf8, 'decoded utf8 param';
486 is $c->req->body_parameters->{'arg2'}[0], $shiftjs, 'decoded shiftjs param';
487 is $c->req->body_parameters->{'arg2'}[1], $shiftjs, 'decoded shiftjs param';
488 is $c->req->body_parameters->{'♥♥♥'}, $shiftjs, 'decoded shiftjs param';
be634ffb 489
490}
491
6cf77e11 492{
493 my $shiftjs = 'test テスト';
494 my $encoded = Encode::encode('UTF-8', $shiftjs);
495
496 ok my $req = GET "/root/echo_arg?a=$encoded";
497 my ($res, $c) = ctx_request $req;
498
499 is $c->req->query_parameters->{'a'}, $shiftjs, 'got expected value';
500}
501
12982f86 502## should we use binmode on filehandles to force the encoding...?
503## Not sure what else to do with multipart here, if docs are enough...
504
0ca510f0 505done_testing;