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