X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fjson.t;h=b601c64e391516e9956ca6cfc07016f632d5014a;hb=8b01055612fcddfb78a16a40d698b687d8b07496;hp=2cbf35d77d62488ffa3005ce7703edc5b3c684ef;hpb=8f00a41bd7efb75d302d0a333e0eb5bc7d75c931;p=catagits%2FCatalyst-Action-REST.git diff --git a/t/json.t b/t/json.t index 2cbf35d..b601c64 100644 --- a/t/json.t +++ b/t/json.t @@ -1,32 +1,35 @@ use strict; use warnings; -use Test::More qw(no_plan); +use Test::More; use FindBin; use lib ("$FindBin::Bin/lib", "$FindBin::Bin/../lib"); use Test::Rest; -use_ok 'Catalyst::Test', 'Test::Serialize'; +eval 'use JSON 2.12'; +plan skip_all => 'Install JSON 2.12 or later to run this test' if ($@); -my $t = Test::Rest->new('content_type' => 'text/x-json'); +plan tests => 9; -my $has_serializer = eval "require JSON::Syck"; -SKIP: { - skip "JSON::Syck not available", 4, unless $has_serializer; +use_ok 'Catalyst::Test', 'Test::Serialize'; +my $json = JSON->new; +# The text/x-json should throw a warning +for ('text/x-json', 'application/json') { + my $t = Test::Rest->new('content_type' => $_); my $monkey_template = { monkey => 'likes chicken!', }; my $mres = request($t->get(url => '/monkey_get')); ok( $mres->is_success, 'GET the monkey succeeded' ); - is_deeply(JSON::Syck::Load($mres->content), $monkey_template, "GET returned the right data"); + is_deeply($json->decode($mres->content), $monkey_template, "GET returned the right data"); my $post_data = { 'sushi' => 'is good for monkey', }; - my $mres_post = request($t->post(url => '/monkey_put', data => JSON::Syck::Dump($post_data))); + my $mres_post = request($t->post(url => '/monkey_put', data => $json->encode($post_data))); ok( $mres_post->is_success, "POST to the monkey succeeded"); is_deeply($mres_post->content, "is good for monkey", "POST data matches"); -}; +} 1;