use JSON instead of JSON::Any to get rid of the CPAN Testers failures when only JSON...
[catagits/Catalyst-Controller-DBIC-API.git] / t / rest / list.t
index 783aa4c..acb8872 100644 (file)
@@ -13,147 +13,250 @@ use URI;
 use Test::More;
 use Test::WWW::Mechanize::Catalyst 'RestTest';
 use HTTP::Request::Common;
-use JSON::Any;
+use JSON;
+
+my $json = JSON->new->utf8;
 
 my $mech = Test::WWW::Mechanize::Catalyst->new;
-ok(my $schema = DBICTest->init_schema(), 'got schema');
+ok( my $schema = DBICTest->init_schema(), 'got schema' );
 
-my $artist_list_url = "$base/api/rest/artist";
+my $artist_list_url          = "$base/api/rest/artist";
 my $filtered_artist_list_url = "$base/api/rest/bound_artist";
-my $producer_list_url = "$base/api/rest/producer";
-my $cd_list_url = "$base/api/rest/cd";
-my $track_list_url = "$base/api/rest/track";
+my $producer_list_url        = "$base/api/rest/producer";
+my $cd_list_url              = "$base/api/rest/cd";
+my $track_list_url           = "$base/api/rest/track";
 
 # test open request
 {
-  my $req = GET( $artist_list_url, {
-
-  }, 'Accept' => 'text/x-json' );
-  $mech->request($req);
-  cmp_ok( $mech->status, '==', 200, 'open attempt okay' );
-  my @expected_response = map { { $_->get_columns } } $schema->resultset('Artist')->all;
-  my $response = JSON::Any->Load( $mech->content);
-  is_deeply( $response, { list => \@expected_response, success => 'true' }, 'correct message returned' );
+    my $req = GET(
+        $artist_list_url,
+        {
+
+        },
+        'Accept' => 'text/x-json'
+    );
+    $mech->request($req);
+    cmp_ok( $mech->status, '==', 200, 'open attempt okay' );
+    my @expected_response = map {
+        { $_->get_columns }
+    } $schema->resultset('Artist')->all;
+    my $response = $json->decode( $mech->content );
+    is_deeply(
+        $response,
+        { list => \@expected_response, success => 'true' },
+        'correct message returned'
+    );
 }
 
 {
-  my $uri = URI->new( $artist_list_url );
-  $uri->query_form({ 'search.artistid' => 1 });
-  my $req = GET( $uri, 'Accept' => 'text/x-json' );
-  $mech->request($req);
-  cmp_ok( $mech->status, '==', 200, 'attempt with basic search okay' );
-
-  my @expected_response = map { { $_->get_columns } } $schema->resultset('Artist')->search({ artistid => 1 })->all;
-  my $response = JSON::Any->Load( $mech->content);
-  is_deeply( $response, { list => \@expected_response, success => 'true' }, 'correct data returned' );
+    my $uri = URI->new($artist_list_url);
+    $uri->query_form( { 'search.artistid' => 1 } );
+    my $req = GET( $uri, 'Accept' => 'text/x-json' );
+    $mech->request($req);
+    cmp_ok( $mech->status, '==', 200, 'attempt with basic search okay' );
+
+    my @expected_response = map {
+        { $_->get_columns }
+    } $schema->resultset('Artist')->search( { artistid => 1 } )->all;
+    my $response = $json->decode( $mech->content );
+    is_deeply(
+        $response,
+        { list => \@expected_response, success => 'true' },
+        'correct data returned'
+    );
 }
 
 {
-  my $uri = URI->new( $artist_list_url );
-  $uri->query_form({ 'search.name.LIKE' => '%waul%' });
-  my $req = GET( $uri, 'Accept' => 'text/x-json' );
-  $mech->request($req);
-  cmp_ok( $mech->status, '==', 200, 'attempt with basic search okay' );
-
-  my @expected_response = map { { $_->get_columns } } $schema->resultset('Artist')->search({ name => { LIKE => '%waul%' }})->all;
-  my $response = JSON::Any->Load( $mech->content);
-  is_deeply( $response, { list => \@expected_response, success => 'true' }, 'correct data returned for complex query' );
+    my $uri = URI->new($artist_list_url);
+    $uri->query_form( { 'search.name.LIKE' => '%waul%' } );
+    my $req = GET( $uri, 'Accept' => 'text/x-json' );
+    $mech->request($req);
+    cmp_ok( $mech->status, '==', 200, 'attempt with basic search okay' );
+
+    my @expected_response = map {
+        { $_->get_columns }
+        } $schema->resultset('Artist')
+        ->search( { name => { LIKE => '%waul%' } } )->all;
+    my $response = $json->decode( $mech->content );
+    is_deeply(
+        $response,
+        { list => \@expected_response, success => 'true' },
+        'correct data returned for complex query'
+    );
 }
 
 {
-  my $uri = URI->new( $producer_list_url );
-  my $req = GET( $uri, 'Accept' => 'text/x-json' );
-  $mech->request($req);
-  cmp_ok( $mech->status, '==', 200, 'open producer request okay' );
-
-  my @expected_response = map { { $_->get_columns } } $schema->resultset('Producer')->search({}, { select => ['name'] })->all;
-  my $response = JSON::Any->Load( $mech->content);
-  is_deeply( $response, { list => \@expected_response, success => 'true' }, 'correct data returned for class with list_returns specified' );
+    my $uri = URI->new($producer_list_url);
+    my $req = GET( $uri, 'Accept' => 'text/x-json' );
+    $mech->request($req);
+    cmp_ok( $mech->status, '==', 200, 'open producer request okay' );
+
+    my @expected_response = map {
+        { $_->get_columns }
+        } $schema->resultset('Producer')->search( {}, { select => ['name'] } )
+        ->all;
+    my $response = $json->decode( $mech->content );
+    is_deeply(
+        $response,
+        { list => \@expected_response, success => 'true' },
+        'correct data returned for class with list_returns specified'
+    );
 }
 
 {
-  my $uri = URI->new( $artist_list_url );
-  $uri->query_form({ 'search.cds.title' => 'Forkful of bees' });
-  my $req = GET( $uri, 'Accept' => 'text/x-json' );
-  $mech->request($req);
-  cmp_ok( $mech->status, '==', 200, 'search related request okay' );
-
-  my @expected_response = map { { $_->get_columns } } $schema->resultset('Artist')->search({ 'cds.title' => 'Forkful of bees' }, { join => 'cds' })->all;
-  my $response = JSON::Any->Load( $mech->content);
-  is_deeply( $response, { list => \@expected_response, success => 'true' }, 'correct data returned for class with select specified' );
+    my $uri = URI->new($artist_list_url);
+    $uri->query_form( { 'search.cds.title' => 'Forkful of bees' } );
+    my $req = GET( $uri, 'Accept' => 'text/x-json' );
+    $mech->request($req);
+    cmp_ok( $mech->status, '==', 200, 'search related request okay' );
+
+    my @expected_response = map {
+        { $_->get_columns }
+        } $schema->resultset('Artist')
+        ->search( { 'cds.title' => 'Forkful of bees' }, { join => 'cds' } )
+        ->all;
+    my $response = $json->decode( $mech->content );
+    is_deeply(
+        $response,
+        { list => \@expected_response, success => 'true' },
+        'correct data returned for class with select specified'
+    );
 }
 
 {
-  my $uri = URI->new( $artist_list_url );
-  $uri->query_form({ 'search.cds.title' => 'Forkful of bees', 'list_returns.0.count' => '*', 'as.0' => 'count'});      
-  my $req = GET( $uri, 'Accept' => 'text/x-json' );
-  $mech->request($req);
-  cmp_ok( $mech->status, '==', 200, 'search related request okay' );
-
-  my @expected_response = map { { $_->get_columns } } $schema->resultset('Artist')->search({ 'cds.title' => 'Forkful of bees' }, { select => [ {count => '*'} ], as => [ 'count' ], join => 'cds' })->all;
-  my $response = JSON::Any->Load( $mech->content);
-  is_deeply( $response, { list => \@expected_response, success => 'true' }, 'correct data returned for count' );
+    my $uri = URI->new($artist_list_url);
+    $uri->query_form(
+        {   'search.cds.title'     => 'Forkful of bees',
+            'list_returns.0.count' => '*',
+            'as.0'                 => 'count'
+        }
+    );
+    my $req = GET( $uri, 'Accept' => 'text/x-json' );
+    $mech->request($req);
+    cmp_ok( $mech->status, '==', 200, 'search related request okay' );
+
+    my @expected_response = map {
+        { $_->get_columns }
+        } $schema->resultset('Artist')
+        ->search( { 'cds.title' => 'Forkful of bees' },
+        { select => [ { count => '*' } ], as => ['count'], join => 'cds' } )
+        ->all;
+    my $response = $json->decode( $mech->content );
+    is_deeply(
+        $response,
+        { list => \@expected_response, success => 'true' },
+        'correct data returned for count'
+    );
 }
 
 {
-  my $uri = URI->new( $filtered_artist_list_url );
-  $uri->query_form({ 'search.artistid' => '2' });      
-  my $req = GET( $uri, 'Accept' => 'text/x-json' );
-  $mech->request($req);
-  cmp_ok( $mech->status, '==', 200, 'search related request okay' );
-  my $response = JSON::Any->Load( $mech->content);
-  my @expected_response = map { { $_->get_columns } } $schema->resultset('Artist')->search({ 'artistid' => '1' })->all;
-  is_deeply( $response, { list => \@expected_response, success => 'true' }, 'correct data returned for class with setup_list_method specified' );
+    my $uri = URI->new($filtered_artist_list_url);
+    $uri->query_form( { 'search.artistid' => '2' } );
+    my $req = GET( $uri, 'Accept' => 'text/x-json' );
+    $mech->request($req);
+    cmp_ok( $mech->status, '==', 200, 'search related request okay' );
+    my $response          = $json->decode( $mech->content );
+    my @expected_response = map {
+        { $_->get_columns }
+    } $schema->resultset('Artist')->search( { 'artistid' => '1' } )->all;
+    is_deeply(
+        $response,
+        { list => \@expected_response, success => 'true' },
+        'correct data returned for class with setup_list_method specified'
+    );
 }
 
 {
-  my $uri = URI->new( $cd_list_url );
-  $uri->query_form({ 'search.tracks.position' => '1', 'search.artist.name' => 'Caterwauler McCrae' });
-  my $req = GET( $uri, 'Accept' => 'text/x-json' );
-  $mech->request($req);
-  cmp_ok( $mech->status, '==', 200, 'search multiple params request okay' );
-  my $response = JSON::Any->Load( $mech->content);
-  my @expected_response = map { { $_->get_columns } } $schema->resultset('CD')->search({
-          'artist.name'     => 'Caterwauler McCrae',
-          'tracks.position' => 1,
-      }, {
-          join => [qw/ artist tracks /],
-      })->all;
-  is_deeply( $response, { list => \@expected_response, success => 'true' }, 'correct data returned for multiple search params' );
+    my $uri = URI->new($cd_list_url);
+    $uri->query_form(
+        {   'search.tracks.position' => '1',
+            'search.artist.name'     => 'Caterwauler McCrae'
+        }
+    );
+    my $req = GET( $uri, 'Accept' => 'text/x-json' );
+    $mech->request($req);
+    cmp_ok( $mech->status, '==', 200, 'search multiple params request okay' );
+    my $response          = $json->decode( $mech->content );
+    my @expected_response = map {
+        { $_->get_columns }
+        } $schema->resultset('CD')->search(
+        {   'artist.name'     => 'Caterwauler McCrae',
+            'tracks.position' => 1,
+        },
+        { join => [qw/ artist tracks /], }
+        )->all;
+    is_deeply(
+        $response,
+        { list => \@expected_response, success => 'true' },
+        'correct data returned for multiple search params'
+    );
 }
 
 # page specified in controller config (RT#56226)
 {
-    my $uri = URI->new( $track_list_url );
+    my $uri = URI->new($track_list_url);
     $uri->query_form();
     my $req = GET( $uri, 'Accept' => 'text/x-json' );
     $mech->request($req);
     cmp_ok( $mech->status, '==', 200, 'get first page ok' );
-    my $response = JSON::Any->Load( $mech->content);
-    my @expected_response = map { { $_->get_columns } } $schema->resultset('Track')->search(undef, {
-            page => 1,
-        })->all;
-    is_deeply( $response, { list => \@expected_response, success => 'true', totalcount => 15 }, 'correct data returned for static configured paging' );
+    my $response          = $json->decode( $mech->content );
+    my @expected_response = map {
+        { $_->get_columns }
+    } $schema->resultset('Track')->search( undef, { page => 1, } )->all;
+    is_deeply(
+        $response,
+        { list => \@expected_response, success => 'true', totalcount => 15 },
+        'correct data returned for static configured paging'
+    );
+}
+
+{
+    my $uri = URI->new($artist_list_url);
+    $uri->query_form( { 'search.cds.track.title' => 'Suicidal' } );
+    my $req = GET( $uri, 'Accept' => 'text/x-json' );
+    $mech->request($req);
+    cmp_ok( $mech->status, '==', 400,
+        'attempt with nonexisting relationship fails' );
+    my $response = $json->decode( $mech->content );
+    is_deeply(
+        $response->{messages},
+        ['track is neither a relationship nor a column'],
+        'correct error message returned'
+    );
 }
 
 {
-    my $uri = URI->new( $artist_list_url );
-    $uri->query_form({ 'search.cds.track.title' => 'Suicidal' });
+    my $uri = URI->new($artist_list_url);
+    $uri->query_form( { 'search.cds.tracks.foo' => 'Bar' } );
     my $req = GET( $uri, 'Accept' => 'text/x-json' );
     $mech->request($req);
-    cmp_ok( $mech->status, '==', 400, 'attempt with nonexisting relationship fails' );
-    my $response = JSON::Any->Load( $mech->content);
-    is_deeply( $response->{messages}, ['track is neither a relationship nor a column'], 'correct error message returned' );
+    cmp_ok( $mech->status, '==', 400,
+        'attempt with nonexisting column fails' );
+    my $response = $json->decode( $mech->content );
+    is_deeply(
+        $response->{messages},
+        ['a database error has occured.'],
+        'correct error message returned'
+    );
 }
 
 {
-    my $uri = URI->new( $artist_list_url );
-    $uri->query_form({ 'search.cds.tracks.foo' => 'Bar' });
+    my $uri = URI->new($artist_list_url);
+    $uri->query_form( { 'search.cds.tracks.title.like' => 'Boring%' } );
     my $req = GET( $uri, 'Accept' => 'text/x-json' );
     $mech->request($req);
-    cmp_ok( $mech->status, '==', 400, 'attempt with nonexisting column fails' );
-    my $response = JSON::Any->Load( $mech->content);
-    is_deeply( $response->{messages}, ['a database error has occured.'], 'correct error message returned' );
+    cmp_ok( $mech->status, '==', 200, 'attempt with sql function ok' );
+    my $response          = $json->decode( $mech->content );
+    my @expected_response = map {
+        { $_->get_columns }
+        } $schema->resultset('Artist')
+        ->search( { 'tracks.title' => { 'like' => 'Boring%' }, },
+        { join => { cds => 'tracks' }, } )->all;
+    is_deeply(
+        $response,
+        { list => \@expected_response, success => 'true' },
+        'correct data returned for search with sql function'
+    );
 }
 
 done_testing();