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