Bug 21336: Fix the API
[koha.git] / t / db_dependent / api / v1 / patrons.t
blob4f96a124304dec65446c3e6485fa09ce09fc503f
1 #!/usr/bin/env perl
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 3 of the License, or (at your option) any later
8 # version.
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 use Modern::Perl;
20 use Test::More tests => 5;
21 use Test::Mojo;
22 use Test::Warn;
24 use t::lib::TestBuilder;
25 use t::lib::Mocks;
27 use C4::Auth;
28 use Koha::Database;
29 use Koha::Patron::Debarments qw/AddDebarment/;
31 my $schema = Koha::Database->new->schema;
32 my $builder = t::lib::TestBuilder->new;
34 # FIXME: sessionStorage defaults to mysql, but it seems to break transaction handling
35 # this affects the other REST api tests
36 t::lib::Mocks::mock_preference( 'SessionStorage', 'tmp' );
38 my $remote_address = '127.0.0.1';
39 my $t = Test::Mojo->new('Koha::REST::V1');
41 subtest 'list() tests' => sub {
42 plan tests => 2;
44 $schema->storage->txn_begin;
45 unauthorized_access_tests('GET', undef, undef);
46 $schema->storage->txn_rollback;
48 subtest 'librarian access tests' => sub {
49 plan tests => 13;
51 $schema->storage->txn_begin;
53 my ( $patron_id, $session_id ) = create_user_and_session({ authorized => 1 });
54 my $patron = Koha::Patrons->find($patron_id);
56 my $tx = $t->ua->build_tx(GET => '/api/v1/patrons');
57 $tx->req->cookies({ name => 'CGISESSID', value => $session_id });
58 $tx->req->env({ REMOTE_ADDR => '127.0.0.1' });
59 $t->request_ok($tx)
60 ->status_is(200);
62 $tx = $t->ua->build_tx(GET => '/api/v1/patrons?cardnumber=' . $patron->cardnumber);
63 $tx->req->cookies({ name => 'CGISESSID', value => $session_id });
64 $tx->req->env({ REMOTE_ADDR => '127.0.0.1' });
65 $t->request_ok($tx)
66 ->status_is(200)
67 ->json_is('/0/cardnumber' => $patron->cardnumber);
69 $tx = $t->ua->build_tx(GET => '/api/v1/patrons?address2='.
70 $patron->address2);
71 $tx->req->cookies({ name => 'CGISESSID', value => $session_id });
72 $tx->req->env({ REMOTE_ADDR => '127.0.0.1' });
73 $t->request_ok($tx)
74 ->status_is(200)
75 ->json_is('/0/address2' => $patron->address2);
77 my $patron_2 = $builder->build_object({ class => 'Koha::Patrons' });
78 AddDebarment({ borrowernumber => $patron_2->id });
79 # re-read from DB
80 $patron_2->discard_changes;
81 my $ub = $patron_2->unblessed;
83 $tx = $t->ua->build_tx( GET => '/api/v1/patrons?restricted=' . Mojo::JSON->true );
84 $tx->req->cookies({ name => 'CGISESSID', value => $session_id });
85 $tx->req->env({ REMOTE_ADDR => '127.0.0.1' });
86 $t->request_ok($tx)
87 ->status_is(200)
88 ->json_has('/0/restricted')
89 ->json_is( '/0/restricted' => Mojo::JSON->true )
90 ->json_hasnt('/1');
92 $schema->storage->txn_rollback;
96 subtest 'get() tests' => sub {
97 plan tests => 2;
99 $schema->storage->txn_begin;
100 unauthorized_access_tests('GET', -1, undef);
101 $schema->storage->txn_rollback;
103 subtest 'librarian access tests' => sub {
104 plan tests => 6;
106 $schema->storage->txn_begin;
108 my $patron = $builder->build_object({ class => 'Koha::Patrons' });
109 my ( undef, $session_id ) = create_user_and_session({ authorized => 1 });
111 my $tx = $t->ua->build_tx(GET => "/api/v1/patrons/" . $patron->id);
112 $tx->req->cookies({ name => 'CGISESSID', value => $session_id });
113 $t->request_ok($tx)
114 ->status_is(200)
115 ->json_is('/patron_id' => $patron->id)
116 ->json_is('/category_id' => $patron->categorycode )
117 ->json_is('/surname' => $patron->surname)
118 ->json_is('/patron_card_lost' => Mojo::JSON->false );
120 $schema->storage->txn_rollback;
124 subtest 'add() tests' => sub {
125 plan tests => 2;
127 $schema->storage->txn_begin;
129 my $patron = Koha::REST::V1::Patrons::_to_api(
130 $builder->build_object( { class => 'Koha::Patrons' } )->TO_JSON );
132 unauthorized_access_tests('POST', undef, $patron);
134 $schema->storage->txn_rollback;
136 subtest 'librarian access tests' => sub {
137 plan tests => 20;
139 $schema->storage->txn_begin;
141 my $patron = $builder->build_object({ class => 'Koha::Patrons' });
142 my $newpatron = Koha::REST::V1::Patrons::_to_api( $patron->TO_JSON );
143 # delete RO attributes
144 delete $newpatron->{patron_id};
145 delete $newpatron->{restricted};
146 delete $newpatron->{anonymized};
148 # Create a library just to make sure its ID doesn't exist on the DB
149 my $library_to_delete = $builder->build_object({ class => 'Koha::Libraries' });
150 my $deleted_library_id = $library_to_delete->id;
151 # Delete library
152 $library_to_delete->delete;
154 my ( undef, $session_id ) = create_user_and_session({ authorized => 1 });
156 $newpatron->{library_id} = $deleted_library_id;
157 my $tx = $t->ua->build_tx(POST => "/api/v1/patrons" => json => $newpatron );
158 $tx->req->cookies({ name => 'CGISESSID', value => $session_id });
159 warning_like {
160 $t->request_ok($tx)
161 ->status_is(409)
162 ->json_is('/error' => "Duplicate ID"); }
163 qr/^DBD::mysql::st execute failed: Duplicate entry/;
165 $newpatron->{library_id} = $patron->branchcode;
167 # Create a library just to make sure its ID doesn't exist on the DB
168 my $category_to_delete = $builder->build_object({ class => 'Koha::Patron::Categories' });
169 my $deleted_category_id = $category_to_delete->id;
170 # Delete library
171 $category_to_delete->delete;
173 $newpatron->{category_id} = $deleted_category_id; # Test invalid patron category
174 $tx = $t->ua->build_tx(POST => "/api/v1/patrons" => json => $newpatron);
175 $tx->req->cookies({ name => 'CGISESSID', value => $session_id });
176 $t->request_ok($tx)
177 ->status_is(400)
178 ->json_is('/error' => "Given category_id does not exist");
179 $newpatron->{category_id} = $patron->categorycode;
181 $newpatron->{falseproperty} = "Non existent property";
182 $tx = $t->ua->build_tx(POST => "/api/v1/patrons" => json => $newpatron);
183 $tx->req->cookies({ name => 'CGISESSID', value => $session_id });
184 $t->request_ok($tx)
185 ->status_is(400);
186 delete $newpatron->{falseproperty};
188 my $patron_to_delete = $builder->build_object({ class => 'Koha::Patrons' });
189 $newpatron = Koha::REST::V1::Patrons::_to_api($patron_to_delete->TO_JSON);
190 # delete RO attributes
191 delete $newpatron->{patron_id};
192 delete $newpatron->{restricted};
193 delete $newpatron->{anonymized};
194 $patron_to_delete->delete;
196 $tx = $t->ua->build_tx(POST => "/api/v1/patrons" => json => $newpatron);
197 $tx->req->cookies({ name => 'CGISESSID', value => $session_id });
198 $t->request_ok($tx)
199 ->status_is(201, 'Patron created successfully')
200 ->json_has('/patron_id', 'got a patron_id')
201 ->json_is( '/cardnumber' => $newpatron->{ cardnumber })
202 ->json_is( '/surname' => $newpatron->{ surname })
203 ->json_is( '/firstname' => $newpatron->{ firstname });
205 $tx = $t->ua->build_tx(POST => "/api/v1/patrons" => json => $newpatron);
206 $tx->req->cookies({name => 'CGISESSID', value => $session_id});
207 warning_like {
208 $t->request_ok($tx)
209 ->status_is(409)
210 ->json_has( '/error', 'Fails when trying to POST duplicate cardnumber' )
211 ->json_has( '/conflict', 'cardnumber' ); }
212 qr/^DBD::mysql::st execute failed: Duplicate entry '(.*?)' for key 'cardnumber'/;
214 $schema->storage->txn_rollback;
218 subtest 'update() tests' => sub {
219 plan tests => 2;
221 $schema->storage->txn_begin;
222 unauthorized_access_tests('PUT', 123, {email => 'nobody@example.com'});
223 $schema->storage->txn_rollback;
225 subtest 'librarian access tests' => sub {
226 plan tests => 22;
228 $schema->storage->txn_begin;
230 t::lib::Mocks::mock_preference('minPasswordLength', 1);
231 my ( $patron_id_1, $session_id ) = create_user_and_session({ authorized => 1 });
232 my ( $patron_id_2, undef ) = create_user_and_session({ authorized => 0 });
234 my $patron_1 = Koha::Patrons->find($patron_id_1);
235 my $patron_2 = Koha::Patrons->find($patron_id_2);
236 my $newpatron = Koha::REST::V1::Patrons::_to_api($patron_2->TO_JSON);
237 # delete RO attributes
238 delete $newpatron->{patron_id};
239 delete $newpatron->{restricted};
240 delete $newpatron->{anonymized};
242 my $tx = $t->ua->build_tx(PUT => "/api/v1/patrons/-1" => json => $newpatron );
243 $tx->req->cookies({name => 'CGISESSID', value => $session_id});
244 $t->request_ok($tx)
245 ->status_is(404)
246 ->json_has('/error', 'Fails when trying to PUT nonexistent patron');
248 # Create a library just to make sure its ID doesn't exist on the DB
249 my $category_to_delete = $builder->build_object({ class => 'Koha::Patron::Categories' });
250 my $deleted_category_id = $category_to_delete->id;
251 # Delete library
252 $category_to_delete->delete;
254 $newpatron->{category_id} = $deleted_category_id;
255 $tx = $t->ua->build_tx(PUT => "/api/v1/patrons/$patron_id_2" => json => $newpatron );
256 $tx->req->cookies({name => 'CGISESSID', value => $session_id});
257 $t->request_ok($tx)
258 ->status_is(400)
259 ->json_is('/error' => "Given category_id does not exist");
260 $newpatron->{category_id} = $patron_2->categorycode;
262 # Create a library just to make sure its ID doesn't exist on the DB
263 my $library_to_delete = $builder->build_object({ class => 'Koha::Libraries' });
264 my $deleted_library_id = $library_to_delete->id;
265 # Delete library
266 $library_to_delete->delete;
268 $newpatron->{library_id} = $deleted_library_id;
269 $tx = $t->ua->build_tx(PUT => "/api/v1/patrons/" . $patron_2->id => json => $newpatron );
270 $tx->req->cookies({name => 'CGISESSID', value => $session_id});
271 warning_like {
272 $t->request_ok($tx)
273 ->status_is(400)
274 ->json_is('/error' => "Given library_id does not exist"); }
275 qr/^DBD::mysql::st execute failed: Cannot add or update a child row: a foreign key constraint fails/;
276 $newpatron->{library_id} = $patron_2->branchcode;
278 $newpatron->{falseproperty} = "Non existent property";
279 $tx = $t->ua->build_tx(PUT => "/api/v1/patrons/" . $patron_2->id => json => $newpatron );
280 $tx->req->cookies({name => 'CGISESSID', value => $session_id});
281 $t->request_ok($tx)
282 ->status_is(400)
283 ->json_is('/errors/0/message' =>
284 'Properties not allowed: falseproperty.');
285 delete $newpatron->{falseproperty};
287 # Set both cardnumber and userid to already existing values
288 $newpatron->{cardnumber} = $patron_1->cardnumber;
289 $newpatron->{userid} = $patron_1->userid;
291 $tx = $t->ua->build_tx( PUT => "/api/v1/patrons/" . $patron_2->id => json => $newpatron );
292 $tx->req->cookies({ name => 'CGISESSID', value => $session_id });
293 warning_like {
294 $t->request_ok($tx)
295 ->status_is(409)
296 ->json_has( '/error' => "Fails when trying to update to an existing cardnumber or userid")
297 ->json_is( '/conflict', 'cardnumber' ); }
298 qr/^DBD::mysql::st execute failed: Duplicate entry '(.*?)' for key 'cardnumber'/;
300 $newpatron->{ cardnumber } = $patron_id_1.$patron_id_2;
301 $newpatron->{ userid } = "user".$patron_id_1.$patron_id_2;
302 $newpatron->{ surname } = "user".$patron_id_1.$patron_id_2;
304 $tx = $t->ua->build_tx(PUT => "/api/v1/patrons/" . $patron_2->id => json => $newpatron);
305 $tx->req->cookies({name => 'CGISESSID', value => $session_id});
306 $t->request_ok($tx)
307 ->status_is(200, 'Patron updated successfully')
308 ->json_has($newpatron);
309 is(Koha::Patrons->find( $patron_2->id )->cardnumber,
310 $newpatron->{ cardnumber }, 'Patron is really updated!');
312 $schema->storage->txn_rollback;
316 subtest 'delete() tests' => sub {
317 plan tests => 2;
319 $schema->storage->txn_begin;
320 unauthorized_access_tests('DELETE', 123, undef);
321 $schema->storage->txn_rollback;
323 subtest 'librarian access test' => sub {
324 plan tests => 4;
326 $schema->storage->txn_begin;
328 my ( undef, $session_id ) = create_user_and_session({ authorized => 1 });
329 my ( $patron_id, undef ) = create_user_and_session({ authorized => 0 });
331 my $tx = $t->ua->build_tx(DELETE => "/api/v1/patrons/-1");
332 $tx->req->cookies({ name => 'CGISESSID', value => $session_id });
333 $t->request_ok($tx)
334 ->status_is(404, 'Patron not found');
336 $tx = $t->ua->build_tx(DELETE => "/api/v1/patrons/$patron_id");
337 $tx->req->cookies({ name => 'CGISESSID', value => $session_id });
338 $t->request_ok($tx)
339 ->status_is(200, 'Patron deleted successfully');
341 $schema->storage->txn_rollback;
345 # Centralized tests for 401s and 403s assuming the endpoint requires
346 # borrowers flag for access
347 sub unauthorized_access_tests {
348 my ($verb, $patron_id, $json) = @_;
350 my $endpoint = '/api/v1/patrons';
351 $endpoint .= ($patron_id) ? "/$patron_id" : '';
353 subtest 'unauthorized access tests' => sub {
354 plan tests => 5;
356 my $tx = $t->ua->build_tx($verb => $endpoint => json => $json);
357 $t->request_ok($tx)
358 ->status_is(401);
360 my ($borrowernumber, $session_id) = create_user_and_session({
361 authorized => 0 });
363 $tx = $t->ua->build_tx($verb => $endpoint => json => $json);
364 $tx->req->cookies({name => 'CGISESSID', value => $session_id});
365 $t->request_ok($tx)
366 ->status_is(403)
367 ->json_has('/required_permissions');
371 sub create_user_and_session {
373 my $args = shift;
374 my $flags = ( $args->{authorized} ) ? 16 : 0;
376 my $user = $builder->build(
378 source => 'Borrower',
379 value => {
380 flags => $flags,
381 gonenoaddress => 0,
382 lost => 0,
383 email => 'nobody@example.com',
384 emailpro => 'nobody@example.com',
385 B_email => 'nobody@example.com'
390 # Create a session for the authorized user
391 my $session = C4::Auth::get_session('');
392 $session->param( 'number', $user->{borrowernumber} );
393 $session->param( 'id', $user->{userid} );
394 $session->param( 'ip', '127.0.0.1' );
395 $session->param( 'lasttime', time() );
396 $session->flush;
398 return ( $user->{borrowernumber}, $session->id );