Version 2.008001
[catagits/Catalyst-Controller-DBIC-API.git] / t / rpc / 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::MaybeXS;
15
16 my $json = JSON::MaybeXS->new(utf8 => 1);
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/rpc/artist/id/";
22
23 {
24     my $id = 1;
25     my $req = GET( $artist_view_url . $id, 'Accept' => 'application/json' );
26     $mech->request($req);
27     cmp_ok( $mech->status, '==', 200, 'open attempt okay' );
28     my %expected_response =
29         $schema->resultset('Artist')->find($id)->get_columns;
30     my $response = $json->decode( $mech->content );
31     is_deeply(
32         $response,
33         { data => \%expected_response, success => 'true' },
34         'correct data returned'
35     );
36 }
37
38 {
39     my $id = 5;
40     my $req = GET( $artist_view_url . $id, 'Accept' => 'application/json' );
41     $mech->request($req);
42     cmp_ok( $mech->status, '==', 400, 'open attempt not ok' );
43     my $response = $json->decode( $mech->content );
44     is( $response->{success}, 'false',
45         'not existing object fetch failed ok' );
46     like(
47         $response->{messages}->[0],
48         qr/^No object found for id/,
49         'error message for not existing object fetch ok'
50     );
51 }
52
53 done_testing();