Create branch register_actions.
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_core_uri_for_multibytechar.t
1 use strict;
2 use warnings;
3
4 use FindBin;
5 use lib "$FindBin::Bin/../lib";
6
7 use Test::More tests => 5;
8
9 use_ok('TestApp');
10
11 my $base = 'http://127.0.0.1';
12
13 my $request = Catalyst::Request->new({
14     base => URI->new($base),
15     uri  => URI->new("$base/"),
16 });
17
18 my $context = TestApp->new({
19     request => $request,
20 });
21
22
23 my $uri_with_multibyte = URI->new($base);
24 $uri_with_multibyte->path('/');
25 $uri_with_multibyte->query_form(
26     name => '村瀬大輔',
27 );
28
29 # multibyte with utf8 bytes
30 is($context->uri_for('/', { name => '村瀬大輔' }), $uri_with_multibyte, 'uri_for with utf8 bytes query');
31 is($context->req->uri_with({ name => '村瀬大輔' }), $uri_with_multibyte, 'uri_with with utf8 bytes query');
32
33 # multibyte with utf8 string
34 is($context->uri_for('/', { name => "\x{6751}\x{702c}\x{5927}\x{8f14}" }), $uri_with_multibyte, 'uri_for with utf8 string query');
35 is($context->req->uri_with({ name => "\x{6751}\x{702c}\x{5927}\x{8f14}" }), $uri_with_multibyte, 'uri_with with utf8 string query');