r49@latte: adam | 2006-12-03 12:30:40 -0800
[catagits/Catalyst-Action-REST.git] / t / 02-xml-simple.t
1 use strict;
2 use warnings;
3 use Test::More qw(no_plan);
4 use FindBin;
5 use Data::Dump qw(dump);
6
7 use lib ("$FindBin::Bin/lib", "$FindBin::Bin/../lib");
8 use Test::Rest;
9
10 use_ok 'Catalyst::Test', 'Test::Serialize';
11
12 my $t = Test::Rest->new('content_type' => 'text/xml');
13
14 my $has_serializer = eval "require XML::Simple";
15 SKIP: {
16     skip "XML::Simple not available", 4, unless $has_serializer;
17     
18     my $xs = XML::Simple->new('ForceArray' => 0);
19
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     my $output = $xs->XMLin($mres->content);
26     is_deeply($xs->XMLin($mres->content)->{'data'}, $monkey_template, "GET returned the right data");
27
28     my $post_data = {
29         'sushi' => 'is good for monkey',
30     };
31     my $mres_post = request($t->post(url => '/monkey_put', data => $xs->XMLout($post_data)));
32     ok( $mres_post->is_success, "POST to the monkey succeeded");
33     is_deeply($mres_post->content, "is good for monkey", "POST data matches");
34 };
35
36 1;