Removed tests' reliance on deprecated JSON behaviour of overloading eq operator
[catagits/Catalyst-Controller-DBIC-API.git] / t / rest / item.t
1 use strict;
2 use warnings;
3
4 use lib 't/lib';
5
6 my $base = 'http://localhost';
7
8 use RestTest;
9 use DBICTest;
10 use URI;
11 use Test::More;
12 use Test::WWW::Mechanize::Catalyst 'RestTest';
13 use HTTP::Request::Common;
14 use JSON;
15
16 my $json = JSON->new->utf8;
17
18 my $mech = Test::WWW::Mechanize::Catalyst->new;
19 ok( my $schema = DBICTest->init_schema(), 'got schema' );
20
21 my $artist_view_url = "$base/api/rest/artist/";
22
23 {
24     my $id = 1;
25     my $req =
26         GET( $artist_view_url . $id, 'Accept' => 'application/json' );
27     $mech->request($req);
28     cmp_ok( $mech->status, '==', 200, 'open attempt okay' );
29     my %expected_response =
30         $schema->resultset('Artist')->find($id)->get_columns;
31     my $response = $json->decode( $mech->content );
32     #artist does not have use_json_boolean => 1, so true values are stringified to 'true'
33     is_deeply(
34         $response,
35         { data => \%expected_response, success => 'true' },
36         'correct data returned'
37     );
38 }
39
40 {
41     my $id = 5;
42     my $req =
43         GET( $artist_view_url . $id, 'Accept' => 'application/json' );
44     $mech->request($req);
45     cmp_ok( $mech->status, '==', 400, 'open attempt not ok' );
46     my $response = $json->decode( $mech->content );
47     is( $response->{success}, 'false',
48         'not existing object fetch failed ok' );
49     like(
50         $response->{messages}->[0],
51         qr/^No object found for id/,
52         'error message for not existing object fetch ok'
53     );
54 }
55
56 my $track_view_url = "$base/api/rest/track/";
57
58 {
59     my $id = 9;
60     my $req =
61         GET( $track_view_url . $id, 'Accept' => 'application/json' );
62     $mech->request($req);
63     cmp_ok( $mech->status, '==', 200, 'got track with datetime object okay' );
64     my %expected_response =
65         $schema->resultset('Track')->find($id)->get_columns;
66     my $response = $json->decode( $mech->content );
67     is_deeply(
68         $response,
69         { data => \%expected_response, success => JSON::true },
70         'correct data returned for track with datetime'
71     );
72 }
73
74 {
75     my $req =
76         GET( $artist_view_url . 'action_with_error', 'Accept' => 'application/json' );
77     $mech->request($req);
78     cmp_ok( $mech->status, '==', 404, 'action returned error 404' );
79     my $response = $json->decode( $mech->content );
80     is_deeply(
81         $response,
82         { success => 'false' },
83         'correct data returned'
84     );
85 }
86
87 done_testing();