Add tests which should fail, but don't.
[catagits/Catalyst-Action-REST.git] / t / xml-simple.t
CommitLineData
7ad87df9 1use strict;
2use warnings;
6646fdc2 3use Test::More tests => 5;
7ad87df9 4use FindBin;
5
6use lib ("$FindBin::Bin/lib", "$FindBin::Bin/../lib");
7use Test::Rest;
8
17d910bd 9use_ok 'Catalyst::Test', 'Test::Serialize';
7ad87df9 10
e601adda 11my $t = Test::Rest->new('content_type' => 'text/xml');
17d910bd 12
e601adda 13my $has_serializer = eval "require XML::Simple";
17d910bd 14SKIP: {
e601adda 15 skip "XML::Simple not available", 4, unless $has_serializer;
16
17 my $xs = XML::Simple->new('ForceArray' => 0);
17d910bd 18
17d910bd 19 my $monkey_template = {
20 monkey => 'likes chicken!',
21 };
22 my $mres = request($t->get(url => '/monkey_get'));
23 ok( $mres->is_success, 'GET the monkey succeeded' );
e601adda 24 my $output = $xs->XMLin($mres->content);
25 is_deeply($xs->XMLin($mres->content)->{'data'}, $monkey_template, "GET returned the right data");
17d910bd 26
27 my $post_data = {
28 'sushi' => 'is good for monkey',
29 };
e601adda 30 my $mres_post = request($t->post(url => '/monkey_put', data => $xs->XMLout($post_data)));
17d910bd 31 ok( $mres_post->is_success, "POST to the monkey succeeded");
32 is_deeply($mres_post->content, "is good for monkey", "POST data matches");
7ad87df9 33};
7ad87df9 34
351;