From dbfb16865bd3c3631a2174730da68da1071a42bb Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Wed, 5 Jun 2024 14:19:06 +0100 Subject: [PATCH] [23.11.x] Bug 37018: Unit tests Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize Signed-off-by: Jonathan Druart --- t/Koha/REST/Plugin/Query.t | 54 +++++++++++++++++++++++++++++++++++++- 1 file changed, 53 insertions(+), 1 deletion(-) diff --git a/t/Koha/REST/Plugin/Query.t b/t/Koha/REST/Plugin/Query.t index 4087feaba14..a36971eb13f 100755 --- a/t/Koha/REST/Plugin/Query.t +++ b/t/Koha/REST/Plugin/Query.t @@ -206,6 +206,19 @@ get '/build_query' => sub { }; }; +get '/dbic_validate_operators' => sub { + my ( $c, $args ) = @_; + + my $query = $c->req->json->{q}; + + return try { + $c->dbic_validate_operators( { filtered_params => $query } ); + $c->render( json => { filtered_params => $query }, status => 200 ); + } catch { + return $c->render( json => { filtered_params => $query }, status => 400 ); + }; +}; + get '/stash_embed' => sub { my $c = shift; @@ -294,7 +307,7 @@ sub to_model { # The tests -use Test::More tests => 7; +use Test::More tests => 8; use Test::Mojo; subtest 'extract_reserved_params() tests' => sub { @@ -543,3 +556,42 @@ subtest 'stash_overrides() tests' => sub { ->json_is( {} ); # x-koha-ovverride not passed is skipped }; + +subtest 'dbic_validate_operators' => sub { + plan tests => 16; + + my $t = Test::Mojo->new; + + # Valid queries + my $q = {}; + $t->get_ok( '/dbic_validate_operators' => json => { q => $q } )->status_is(200); + + $q = []; + $t->get_ok( '/dbic_validate_operators' => json => { q => $q } )->status_is(200); + + $q = { + firstname => 'Bilbo', + lastname => 'Baggins' + }; + $t->get_ok( '/dbic_validate_operators' => json => { q => $q } )->status_is(200); + + $q = { + firstname => undef, + lastname => 'Baggins' + }; + $t->get_ok( '/dbic_validate_operators' => json => { q => $q } )->status_is(200); + + $q = { lastname => [ 'Gaggins', 'Gamgee' ] }; + $t->get_ok( '/dbic_validate_operators' => json => { q => $q } )->status_is(200); + + $q = { lastname => { '!=' => [ 'Gaggins', 'Gamgee' ] } }; + $t->get_ok( '/dbic_validate_operators' => json => { q => $q } )->status_is(200); + + $q = { status => { '!=', 'completed', -not_like => 'pending%' } }; + $t->get_ok( '/dbic_validate_operators' => json => { q => $q } )->status_is(200); + + # Invalid queries + $q = [ { "-and" => [ [ { "biblio_id" => { "like(sleep(1/100000))or" => "%a%" } } ] ] } ]; + $t->get_ok( '/dbic_validate_operators' => json => { q => $q } )->status_is(400); + +}; -- 2.45.2