Bugzilla – Attachment 97774 Details for
Bug 24487
build_query_params helper builds path parameter with matching criteria
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 24487: Regresion test
Bug-24487-Regresion-test.patch (text/plain), 2.19 KB, created by
Agustín Moyano
on 2020-01-23 04:59:41 UTC
(
hide
)
Description:
Bug 24487: Regresion test
Filename:
MIME Type:
Creator:
Agustín Moyano
Created:
2020-01-23 04:59:41 UTC
Size:
2.19 KB
patch
obsolete
>From 5e17ce92263685cb9e230a3878b625af113933da Mon Sep 17 00:00:00 2001 >From: Agustin Moyano <agustinmoyano@theke.io> >Date: Wed, 22 Jan 2020 20:44:04 -0300 >Subject: [PATCH] Bug 24487: Regresion test > >This patch introduces a regresion test where a path parameter is combined with 'contains' match criteria > >To test: >1. apply this patch >2. prove t/db_dependent/Koha/REST/Plugin/Objects.t > >Test should fail at this point. >--- > t/db_dependent/Koha/REST/Plugin/Objects.t | 31 ++++++++++++++++++++++- > 1 file changed, 30 insertions(+), 1 deletion(-) > >diff --git a/t/db_dependent/Koha/REST/Plugin/Objects.t b/t/db_dependent/Koha/REST/Plugin/Objects.t >index 2e162b21bc..a25eb21830 100644 >--- a/t/db_dependent/Koha/REST/Plugin/Objects.t >+++ b/t/db_dependent/Koha/REST/Plugin/Objects.t >@@ -19,6 +19,7 @@ use Modern::Perl; > > use Koha::Acquisition::Orders; > use Koha::Cities; >+use Koha::Holds; > > # Dummy app for testing the plugin > use Mojolicious::Lite; >@@ -44,8 +45,18 @@ get '/orders' => sub { > $c->render( status => 200, json => $orders ); > }; > >+get '/patrons/:patron_id/holds' => sub { >+ my $c = shift; >+ my $params = $c->req->params->to_hash; >+ $params->{patron_id} = $c->stash("patron_id"); >+ $c->validation->output($params); >+ my $holds_set = Koha::Holds->new; >+ my $holds = $c->objects->search( $holds_set ); >+ $c->render( status => 200, json => {count => scalar(@$holds)} ); >+}; >+ > # The tests >-use Test::More tests => 3; >+use Test::More tests => 4; > use Test::Mojo; > > use t::lib::TestBuilder; >@@ -176,3 +187,21 @@ subtest 'objects.search helper, embed' => sub { > > $schema->storage->txn_rollback; > }; >+ >+subtest 'objects.search helper, with path parameters and _match' => sub { >+ plan tests => 4; >+ >+ $schema->storage->txn_begin; >+ >+ Koha::Holds->search()->delete; >+ >+ $builder->build_object({class=>"Koha::Holds", value => {borrowernumber => 10 }}); >+ >+ $t->get_ok('/patrons/1/holds?_match=exact') >+ ->json_is('/count' => 0, 'there should be no holds for borrower 1 with _match=exact'); >+ >+ $t->get_ok('/patrons/1/holds?_match=contains') >+ ->json_is('/count' => 0, 'there should be no holds for borrower 1 with _match=contains'); >+ >+ $schema->storage->txn_rollback; >+}; >-- >2.17.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 24487
:
97765
|
97772
|
97774
|
97775
|
97782
|
98029
|
98030
|
98031
|
98164
|
98165
|
98166
|
103105
|
103106
|
103107
|
103142
|
103143
|
103144