removed perl 5.6.0 requirement from test files
[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, undef, '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     is_deeply(
33         $response,
34         { data => \%expected_response, success => 'true' },
35         'correct data returned'
36     );
37 }
38
39 {
40     my $id = 5;
41     my $req =
42         GET( $artist_view_url . $id, undef, 'Accept' => 'application/json' );
43     $mech->request($req);
44     cmp_ok( $mech->status, '==', 400, 'open attempt not ok' );
45     my $response = $json->decode( $mech->content );
46     is( $response->{success}, 'false',
47         'not existing object fetch failed ok' );
48     like(
49         $response->{messages}->[0],
50         qr/^No object found for id/,
51         'error message for not existing object fetch ok'
52     );
53 }
54
55 my $track_view_url = "$base/api/rest/track/";
56
57 {
58     my $id = 9;
59     my $req =
60         GET( $track_view_url . $id, undef, 'Accept' => 'application/json' );
61     $mech->request($req);
62     cmp_ok( $mech->status, '==', 200, 'got track with datetime object okay' );
63     my %expected_response =
64         $schema->resultset('Track')->find($id)->get_columns;
65     my $response = $json->decode( $mech->content );
66     is_deeply(
67         $response,
68         { data => \%expected_response, success => 'true' },
69         'correct data returned for track with datetime'
70     );
71 }
72
73 done_testing();