r53@latte: adam | 2006-12-03 16:00:44 -0800
[catagits/Catalyst-Action-REST.git] / t / json.t
diff --git a/t/json.t b/t/json.t
new file mode 100644 (file)
index 0000000..2cbf35d
--- /dev/null
+++ b/t/json.t
@@ -0,0 +1,32 @@
+use strict;
+use warnings;
+use Test::More qw(no_plan);
+use FindBin;
+
+use lib ("$FindBin::Bin/lib", "$FindBin::Bin/../lib");
+use Test::Rest;
+
+use_ok 'Catalyst::Test', 'Test::Serialize';
+
+my $t = Test::Rest->new('content_type' => 'text/x-json');
+
+my $has_serializer = eval "require JSON::Syck";
+SKIP: {
+    skip "JSON::Syck not available", 4, unless $has_serializer;
+
+    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");
+
+    my $post_data = {
+        'sushi' => 'is good for monkey',
+    };
+    my $mres_post = request($t->post(url => '/monkey_put', data => JSON::Syck::Dump($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;