fcdab6b281fd547544c3e2d71e0c870020507983
[catagits/Catalyst-Action-REST.git] / t / catalyst-action-serialize-accept.t
1 use strict;
2 use warnings;
3 use Test::More;
4 use FindBin;
5
6 use lib ("$FindBin::Bin/lib", "$FindBin::Bin/../lib", "$FindBin::Bin/broken");
7 use Test::Rest;
8 use Catalyst::Action::Serialize::YAML;
9
10 # Should use Data::Dumper, via YAML
11 my $t = Test::Rest->new('content_type' => 'text/x-yaml');
12
13 use_ok 'Catalyst::Test', 'Test::Catalyst::Action::REST';
14
15 # to avoid whatever serialization bugs YAML::Syck has,
16 # e.g. http://rt.cpan.org/Public/Bug/Display.html?id=46983,
17 # we won't hardcode the expected output
18 my $output_YAML = Catalyst::Action::Serialize::YAML->serialize({lou => 'is my cat'});
19
20 {
21     my $req = $t->get(url => '/serialize/test');
22     $req->remove_header('Content-Type');
23     $req->header('Accept', 'text/x-yaml');
24     my $res = request($req);
25     SKIP: {
26         skip "can't test text/x-yaml without YAML support",
27         3 if (
28                 not $res->is_success and
29                 $res->content =~ m#Content-Type text/x-yaml is not supported#
30              );
31         ok( $res->is_success, 'GET the serialized request succeeded' );
32         is( $res->content, $output_YAML, "Request returned proper data");
33         is( $res->header('Content-type'), 'text/x-yaml', '... with expected content-type')
34
35     };
36 }
37
38 SKIP: {
39     eval 'use JSON 2.12;';
40     skip "can't test application/json without JSON support", 3 if $@;
41     my $json = JSON->new;
42     my $at = Test::Rest->new('content_type' => 'text/doesnt-exist');
43     my $req = $at->get(url => '/serialize/test');
44     $req->header('Accept', 'application/json');
45     my $res = request($req);
46     ok( $res->is_success, 'GET the serialized request succeeded' );
47     my $ret = $json->decode($res->content);
48     is( $ret->{lou}, 'is my cat', "Request returned proper data");
49     is( $res->header('Content-type'), 'application/json', 'Accept header used if content-type mapping not found')
50 };
51
52 # Make sure we don't get a bogus content-type when using the default
53 # serializer (https://rt.cpan.org/Ticket/Display.html?id=27949)
54 {
55     my $req = $t->get(url => '/serialize/test');
56     $req->remove_header('Content-Type');
57     $req->header('Accept', '*/*');
58     my $res = request($req);
59     ok( $res->is_success, 'GET the serialized request succeeded' );
60     is( $res->content, $output_YAML, "Request returned proper data");
61     is( $res->header('Content-type'), 'text/x-yaml', '... with expected content-type')
62 }
63
64 # Make sure that when using content_type_stash_key, an invalid value in the stash gets ignored
65 {
66     my $req = $t->get(url => '/serialize/test_second?serialize_content_type=nonesuch');
67     $req->remove_header('Content-Type');
68     $req->header('Accept', '*/*');
69     my $res = request($req);
70     ok( $res->is_success, 'GET the serialized request succeeded' );
71     is( $res->content, $output_YAML, "Request returned proper data");
72     is( $res->header('Content-type'), 'text/x-yaml', '... with expected content-type')
73 }
74
75 # Make sure that the default content type you specify really gets used.
76 {
77     my $req = $t->get(url => '/override/test');
78     $req->remove_header('Content-Type');
79     my $res = request($req);
80     ok( $res->is_success, 'GET the serialized request succeeded' );
81     is( $res->content, "--- \nlou: is my cat\n", "Request returned proper data");
82 }
83
84 done_testing;
85