Hard dep on JSON::MaybeXS
[catagits/Catalyst-Action-REST.git] / t / json.t
CommitLineData
7ad87df9 1use strict;
2use warnings;
2f7533ed 3use Test::More;
7ad87df9 4use FindBin;
1edd63a7 5use JSON::MaybeXS;
7ad87df9 6
7use lib ("$FindBin::Bin/lib", "$FindBin::Bin/../lib");
8use Test::Rest;
c6c4ff28 9use utf8;
7ad87df9 10
2f7533ed 11use_ok 'Catalyst::Test', 'Test::Serialize';
17d910bd 12
c6c4ff28 13my $json = JSON->new->utf8;
2f7533ed 14# The text/x-json should throw a warning
15for ('text/x-json', 'application/json') {
16 my $t = Test::Rest->new('content_type' => $_);
17 my $monkey_template = {
18 monkey => 'likes chicken!',
19 };
20 my $mres = request($t->get(url => '/monkey_get'));
21 ok( $mres->is_success, 'GET the monkey succeeded' );
22 is_deeply($json->decode($mres->content), $monkey_template, "GET returned the right data");
17d910bd 23
2f7533ed 24 my $post_data = {
25 'sushi' => 'is good for monkey',
c6c4ff28 26 'chicken' => ' 佐藤 純',
2f7533ed 27 };
28 my $mres_post = request($t->post(url => '/monkey_put', data => $json->encode($post_data)));
29 ok( $mres_post->is_success, "POST to the monkey succeeded");
c6c4ff28 30 my $exp = "is good for monkey 佐藤 純";
31 utf8::encode($exp);
32 is_deeply($mres_post->content, $exp, "POST data matches");
2f7533ed 33}
7ad87df9 34
838f49dc 35{
36 my $t = Test::Rest->new('content_type' => 'application/json');
37 my $json_data = '{ "sushi":"is good for monkey", }';
38 my $mres_post = request($t->post(url => '/monkey_put', data => $json_data));
39 ok( ! $mres_post->is_success, "Got expected failed status due to invalid JSON" );
40
41 my $relaxed_post = request( $t->post(url => "/monkey_json_put", data => $json_data));
42 ok( $relaxed_post->is_success, "Got success due to setting relaxed JSON input" );
43}
44
7ad87df9 451;
10018fb4 46
47done_testing;