c778bad5f4bcc0d9da0234a6cdbf510d37b4a061
[koha-equinox.git] / t / db_dependent / Illrequests.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19
20 use File::Basename qw/basename/;
21 use Koha::Database;
22 use Koha::Illrequestattributes;
23 use Koha::Illrequest::Config;
24 use Koha::Patrons;
25 use t::lib::Mocks;
26 use t::lib::TestBuilder;
27 use Test::MockObject;
28 use Test::MockModule;
29 use Test::Exception;
30
31 use Test::More tests => 11;
32
33 my $schema = Koha::Database->new->schema;
34 my $builder = t::lib::TestBuilder->new;
35 use_ok('Koha::Illrequest');
36 use_ok('Koha::Illrequests');
37
38 subtest 'Basic object tests' => sub {
39
40     plan tests => 21;
41
42     $schema->storage->txn_begin;
43
44     Koha::Illrequests->search->delete;
45     my $illrq = $builder->build({ source => 'Illrequest' });
46     my $illrq_obj = Koha::Illrequests->find($illrq->{illrequest_id});
47
48     isa_ok($illrq_obj, 'Koha::Illrequest',
49            "Correctly create and load an illrequest object.");
50     isa_ok($illrq_obj->_config, 'Koha::Illrequest::Config',
51            "Created a config object as part of Illrequest creation.");
52
53     is($illrq_obj->illrequest_id, $illrq->{illrequest_id},
54        "Illrequest_id getter works.");
55     is($illrq_obj->borrowernumber, $illrq->{borrowernumber},
56        "Borrowernumber getter works.");
57     is($illrq_obj->biblio_id, $illrq->{biblio_id},
58        "Biblio_Id getter works.");
59     is($illrq_obj->branchcode, $illrq->{branchcode},
60        "Branchcode getter works.");
61     is($illrq_obj->status, $illrq->{status},
62        "Status getter works.");
63     is($illrq_obj->placed, $illrq->{placed},
64        "Placed getter works.");
65     is($illrq_obj->replied, $illrq->{replied},
66        "Replied getter works.");
67     is($illrq_obj->updated, $illrq->{updated},
68        "Updated getter works.");
69     is($illrq_obj->completed, $illrq->{completed},
70        "Completed getter works.");
71     is($illrq_obj->medium, $illrq->{medium},
72        "Medium getter works.");
73     is($illrq_obj->accessurl, $illrq->{accessurl},
74        "Accessurl getter works.");
75     is($illrq_obj->cost, $illrq->{cost},
76        "Cost getter works.");
77     is($illrq_obj->notesopac, $illrq->{notesopac},
78        "Notesopac getter works.");
79     is($illrq_obj->notesstaff, $illrq->{notesstaff},
80        "Notesstaff getter works.");
81     is($illrq_obj->orderid, $illrq->{orderid},
82        "Orderid getter works.");
83     is($illrq_obj->backend, $illrq->{backend},
84        "Backend getter works.");
85
86     isnt($illrq_obj->status, 'COMP',
87          "ILL is not currently marked complete.");
88     $illrq_obj->mark_completed;
89     is($illrq_obj->status, 'COMP',
90        "ILL is now marked complete.");
91
92     $illrq_obj->delete;
93
94     is(Koha::Illrequests->search->count, 0,
95        "No illrequest found after delete.");
96
97     $schema->storage->txn_rollback;
98 };
99
100 subtest 'Working with related objects' => sub {
101
102     plan tests => 5;
103
104     $schema->storage->txn_begin;
105
106     my $patron = $builder->build({ source => 'Borrower' });
107     my $illrq = $builder->build({
108         source => 'Illrequest',
109         value => { borrowernumber => $patron->{borrowernumber} }
110     });
111     my $illrq_obj = Koha::Illrequests->find($illrq->{illrequest_id});
112
113     isa_ok($illrq_obj->patron, 'Koha::Patron',
114            "OK accessing related patron.");
115
116     $builder->build({
117         source => 'Illrequestattribute',
118         value  => { illrequest_id => $illrq_obj->illrequest_id, type => 'X' }
119     });
120     $builder->build({
121         source => 'Illrequestattribute',
122         value  => { illrequest_id => $illrq_obj->illrequest_id, type => 'Y' }
123     });
124     $builder->build({
125         source => 'Illrequestattribute',
126         value  => { illrequest_id => $illrq_obj->illrequest_id, type => 'Z' }
127     });
128
129     is($illrq_obj->illrequestattributes->count, Koha::Illrequestattributes->search->count,
130        "Fetching expected number of Illrequestattributes for our request.");
131
132     my $illrq1 = $builder->build({ source => 'Illrequest' });
133     $builder->build({
134         source => 'Illrequestattribute',
135         value  => { illrequest_id => $illrq1->{illrequest_id}, type => 'X' }
136     });
137
138     is($illrq_obj->illrequestattributes->count + 1, Koha::Illrequestattributes->search->count,
139        "Fetching expected number of Illrequestattributes for our request.");
140
141     $illrq_obj->delete;
142     is(Koha::Illrequestattributes->search->count, 1,
143        "Correct number of illrequestattributes after delete.");
144
145     isa_ok(Koha::Patrons->find($patron->{borrowernumber}), 'Koha::Patron',
146            "Borrower was not deleted after illrq delete.");
147
148     $schema->storage->txn_rollback;
149 };
150
151 subtest 'Status Graph tests' => sub {
152
153     plan tests => 4;
154
155     $schema->storage->txn_begin;
156
157     my $illrq = $builder->build({source => 'Illrequest'});
158     my $illrq_obj = Koha::Illrequests->find($illrq->{illrequest_id});
159
160     # _core_status_graph tests: it's just a constant, so here we just make
161     # sure it returns a hashref.
162     is(ref $illrq_obj->_core_status_graph, "HASH",
163        "_core_status_graph returns a hash.");
164
165     # _status_graph_union: let's try different merge operations.
166     # Identity operation
167     is_deeply(
168         $illrq_obj->_status_graph_union($illrq_obj->_core_status_graph, {}),
169         $illrq_obj->_core_status_graph,
170         "core_status_graph + null = core_status_graph"
171     );
172
173     # Simple addition
174     is_deeply(
175         $illrq_obj->_status_graph_union({}, $illrq_obj->_core_status_graph),
176         $illrq_obj->_core_status_graph,
177         "null + core_status_graph = core_status_graph"
178     );
179
180     # Correct merge behaviour
181     is_deeply(
182         $illrq_obj->_status_graph_union({
183             REQ => {
184                 prev_actions   => [ ],
185                 id             => 'REQ',
186                 next_actions   => [ ],
187             },
188         }, {
189             QER => {
190                 prev_actions   => [ 'REQ' ],
191                 id             => 'QER',
192                 next_actions   => [ 'REQ' ],
193             },
194         }),
195         {
196             REQ => {
197                 prev_actions   => [ 'QER' ],
198                 id             => 'REQ',
199                 next_actions   => [ 'QER' ],
200             },
201             QER => {
202                 prev_actions   => [ 'REQ' ],
203                 id             => 'QER',
204                 next_actions   => [ 'REQ' ],
205             },
206         },
207         "REQ atom + linking QER = cyclical status graph"
208     );
209
210     $schema->storage->txn_rollback;
211 };
212
213 subtest 'Backend testing (mocks)' => sub {
214
215     plan tests => 13;
216
217     $schema->storage->txn_begin;
218
219     # testing load_backend & available_backends requires that we have at least
220     # the Dummy plugin installed.  load_backend & available_backends don't
221     # currently have tests as a result.
222
223     my $backend = Test::MockObject->new;
224     $backend->set_isa('Koha::Illbackends::Mock');
225     $backend->set_always('name', 'Mock');
226
227     my $patron = $builder->build({ source => 'Borrower' });
228     my $illrq = $builder->build({
229         source => 'Illrequest',
230         value => { borrowernumber => $patron->{borrowernumber} }
231     });
232     my $illrq_obj = Koha::Illrequests->find($illrq->{illrequest_id});
233
234     $illrq_obj->_backend($backend);
235
236     isa_ok($illrq_obj->_backend, 'Koha::Illbackends::Mock',
237            "OK accessing mocked backend.");
238
239     # _backend_capability tests:
240     # We need to test whether this optional feature of a mocked backend
241     # behaves as expected.
242     # 3 scenarios: feature not implemented, feature implemented, but requested
243     # capability is not provided by backend, & feature is implemented &
244     # capability exists.  This method can be used to implement custom backend
245     # functionality, such as unmediated in the BLDSS backend (also see
246     # bugzilla 18837).
247     $backend->set_always('capabilities', undef);
248     is($illrq_obj->_backend_capability('Test'), 0,
249        "0 returned on Mock not implementing capabilities.");
250
251     $backend->set_always('capabilities', 0);
252     is($illrq_obj->_backend_capability('Test'), 0,
253        "0 returned on Mock not implementing Test capability.");
254
255     $backend->set_always('capabilities', sub { return 'bar'; } );
256     is($illrq_obj->_backend_capability('Test'), 'bar',
257        "'bar' returned on Mock implementing Test capability.");
258
259     # metadata test: we need to be sure that we return the arbitrary values
260     # from the backend.
261     $backend->mock(
262         'metadata',
263         sub {
264             my ( $self, $rq ) = @_;
265             return {
266                 ID => $rq->illrequest_id,
267                 Title => $rq->patron->borrowernumber
268             }
269         }
270     );
271
272     is_deeply(
273         $illrq_obj->metadata,
274         {
275             ID => $illrq_obj->illrequest_id,
276             Title => $illrq_obj->patron->borrowernumber
277         },
278         "Test metadata."
279     );
280
281     # capabilities:
282
283     # No backend graph extension
284     $backend->set_always('status_graph', {});
285     is_deeply($illrq_obj->capabilities('COMP'),
286               {
287                   prev_actions   => [ 'REQ' ],
288                   id             => 'COMP',
289                   name           => 'Completed',
290                   ui_method_name => 'Mark completed',
291                   method         => 'mark_completed',
292                   next_actions   => [ ],
293                   ui_method_icon => 'fa-check',
294               },
295               "Dummy status graph for COMP.");
296     is($illrq_obj->capabilities('UNKNOWN'), undef,
297        "Dummy status graph for UNKNOWN.");
298     is_deeply($illrq_obj->capabilities(),
299               $illrq_obj->_core_status_graph,
300               "Dummy full status graph.");
301     # Simple backend graph extension
302     $backend->set_always('status_graph',
303                          {
304                              QER => {
305                                  prev_actions   => [ 'REQ' ],
306                                  id             => 'QER',
307                                  next_actions   => [ 'REQ' ],
308                              },
309                          });
310     is_deeply($illrq_obj->capabilities('QER'),
311               {
312                   prev_actions   => [ 'REQ' ],
313                   id             => 'QER',
314                   next_actions   => [ 'REQ' ],
315               },
316               "Simple status graph for QER.");
317     is($illrq_obj->capabilities('UNKNOWN'), undef,
318        "Simple status graph for UNKNOWN.");
319     is_deeply($illrq_obj->capabilities(),
320               $illrq_obj->_status_graph_union(
321                   $illrq_obj->_core_status_graph,
322                   {
323                       QER => {
324                           prev_actions   => [ 'REQ' ],
325                           id             => 'QER',
326                           next_actions   => [ 'REQ' ],
327                       },
328                   }
329               ),
330               "Simple full status graph.");
331
332     # custom_capability:
333
334     # No backend graph extension
335     $backend->set_always('status_graph', {});
336     is($illrq_obj->custom_capability('unknown', {}), 0,
337        "Unknown candidate.");
338
339     # Simple backend graph extension
340     $backend->set_always('status_graph',
341                          {
342                              ID => {
343                                  prev_actions   => [ 'REQ' ],
344                                  id             => 'ID',
345                                  method         => 'identity',
346                                  next_actions   => [ 'REQ' ],
347                              },
348                          });
349     $backend->mock('identity',
350                    sub { my ( $self, $params ) = @_; return $params->{other}; });
351     is($illrq_obj->custom_capability('identity', { test => 1 })->{test}, 1,
352        "Resolve identity custom_capability");
353
354     $schema->storage->txn_rollback;
355 };
356
357
358 subtest 'Backend core methods' => sub {
359
360     plan tests => 16;
361
362     $schema->storage->txn_begin;
363
364     # Build infrastructure
365     my $backend = Test::MockObject->new;
366     $backend->set_isa('Koha::Illbackends::Mock');
367     $backend->set_always('name', 'Mock');
368
369     my $config = Test::MockObject->new;
370     $config->set_always('backend_dir', "/tmp");
371     $config->set_always('getLimitRules',
372                         { default => { count => 0, method => 'active' } });
373
374     my $illrq = $builder->build({source => 'Illrequest'});
375     my $illrq_obj = Koha::Illrequests->find($illrq->{illrequest_id});
376     $illrq_obj->_config($config);
377     $illrq_obj->_backend($backend);
378
379     # expandTemplate:
380     is_deeply($illrq_obj->expandTemplate({ test => 1, method => "bar" }),
381               {
382                   test => 1,
383                   method => "bar",
384                   template => "/tmp/Mock/intra-includes/bar.inc",
385                   opac_template => "/tmp/Mock/opac-includes/bar.inc",
386               },
387               "ExpandTemplate");
388
389     # backend_create
390     # we are testing simple cases.
391     $backend->set_series('create',
392                          { stage => 'bar', method => 'create' },
393                          { stage => 'commit', method => 'create' },
394                          { stage => 'commit', method => 'create' });
395     # Test Copyright Clearance
396     t::lib::Mocks::mock_preference("ILLModuleCopyrightClearance", "Test Copyright Clearance.");
397     is_deeply($illrq_obj->backend_create({test => 1}),
398               {
399                   error   => 0,
400                   status  => '',
401                   message => '',
402                   method  => 'create',
403                   stage   => 'copyrightclearance',
404                   value   => {
405                       backend => "Mock"
406                   }
407               },
408               "Backend create: copyright clearance.");
409     t::lib::Mocks::mock_preference("ILLModuleCopyrightClearance", "");
410     # Test non-commit
411     is_deeply($illrq_obj->backend_create({test => 1}),
412               {
413                   stage => 'bar', method => 'create',
414                   template => "/tmp/Mock/intra-includes/create.inc",
415                   opac_template => "/tmp/Mock/opac-includes/create.inc",
416               },
417               "Backend create: arbitrary stage.");
418     # Test commit
419     is_deeply($illrq_obj->backend_create({test => 1}),
420               {
421                   stage => 'commit', method => 'create', permitted => 0,
422                   template => "/tmp/Mock/intra-includes/create.inc",
423                   opac_template => "/tmp/Mock/opac-includes/create.inc",
424               },
425               "Backend create: arbitrary stage, not permitted.");
426     is($illrq_obj->status, "QUEUED", "Backend create: queued if restricted.");
427     $config->set_always('getLimitRules', {});
428     $illrq_obj->status('NEW');
429     is_deeply($illrq_obj->backend_create({test => 1}),
430               {
431                   stage => 'commit', method => 'create', permitted => 1,
432                   template => "/tmp/Mock/intra-includes/create.inc",
433                   opac_template => "/tmp/Mock/opac-includes/create.inc",
434               },
435               "Backend create: arbitrary stage, permitted.");
436     is($illrq_obj->status, "NEW", "Backend create: not-queued.");
437
438     # backend_renew
439     $backend->set_series('renew', { stage => 'bar', method => 'renew' });
440     is_deeply($illrq_obj->backend_renew({test => 1}),
441               {
442                   stage => 'bar', method => 'renew',
443                   template => "/tmp/Mock/intra-includes/renew.inc",
444                   opac_template => "/tmp/Mock/opac-includes/renew.inc",
445               },
446               "Backend renew: arbitrary stage.");
447
448     # backend_cancel
449     $backend->set_series('cancel', { stage => 'bar', method => 'cancel' });
450     is_deeply($illrq_obj->backend_cancel({test => 1}),
451               {
452                   stage => 'bar', method => 'cancel',
453                   template => "/tmp/Mock/intra-includes/cancel.inc",
454                   opac_template => "/tmp/Mock/opac-includes/cancel.inc",
455               },
456               "Backend cancel: arbitrary stage.");
457
458     # backend_update_status
459     $backend->set_series('update_status', { stage => 'bar', method => 'update_status' });
460     is_deeply($illrq_obj->backend_update_status({test => 1}),
461               {
462                   stage => 'bar', method => 'update_status',
463                   template => "/tmp/Mock/intra-includes/update_status.inc",
464                   opac_template => "/tmp/Mock/opac-includes/update_status.inc",
465               },
466               "Backend update_status: arbitrary stage.");
467
468     # backend_confirm
469     $backend->set_series('confirm', { stage => 'bar', method => 'confirm' });
470     is_deeply($illrq_obj->backend_confirm({test => 1}),
471               {
472                   stage => 'bar', method => 'confirm',
473                   template => "/tmp/Mock/intra-includes/confirm.inc",
474                   opac_template => "/tmp/Mock/opac-includes/confirm.inc",
475               },
476               "Backend confirm: arbitrary stage.");
477
478     $config->set_always('partner_code', "ILLTSTLIB");
479     $backend->set_always('metadata', { Test => "Foobar" });
480     my $illbrn = $builder->build({
481         source => 'Branch',
482         value => { branchemail => "", branchreplyto => "" }
483     });
484     my $partner1 = $builder->build({
485         source => 'Borrower',
486         value => { categorycode => "ILLTSTLIB" },
487     });
488     my $partner2 = $builder->build({
489         source => 'Borrower',
490         value => { categorycode => "ILLTSTLIB" },
491     });
492     my $gen_conf = $illrq_obj->generic_confirm({
493         current_branchcode => $illbrn->{branchcode}
494     });
495     isnt(index($gen_conf->{value}->{draft}->{body}, $backend->metadata->{Test}), -1,
496          "Generic confirm: draft contains metadata."
497     );
498     is($gen_conf->{value}->{partners}->next->borrowernumber, $partner1->{borrowernumber},
499        "Generic cofnirm: partner 1 is correct."
500     );
501     is($gen_conf->{value}->{partners}->next->borrowernumber, $partner2->{borrowernumber},
502        "Generic confirm: partner 2 is correct."
503     );
504
505     dies_ok { $illrq_obj->generic_confirm({
506         current_branchcode => $illbrn->{branchcode},
507         stage => 'draft'
508     }) }
509         "Generic confirm: missing to dies OK.";
510
511     dies_ok { $illrq_obj->generic_confirm({
512         current_branchcode => $illbrn->{branchcode},
513         partners => $partner1->{email},
514         stage => 'draft'
515     }) }
516         "Generic confirm: missing from dies OK.";
517
518     $schema->storage->txn_rollback;
519 };
520
521
522 subtest 'Helpers' => sub {
523
524     plan tests => 9;
525
526     $schema->storage->txn_begin;
527
528     # Build infrastructure
529     my $backend = Test::MockObject->new;
530     $backend->set_isa('Koha::Illbackends::Mock');
531     $backend->set_always('name', 'Mock');
532
533     my $config = Test::MockObject->new;
534     $config->set_always('backend_dir', "/tmp");
535
536     my $patron = $builder->build({
537         source => 'Borrower',
538         value => { categorycode => "A" }
539     });
540     my $illrq = $builder->build({
541         source => 'Illrequest',
542         value => { branchcode => "CPL", borrowernumber => $patron->{borrowernumber} }
543     });
544     my $illrq_obj = Koha::Illrequests->find($illrq->{illrequest_id});
545     $illrq_obj->_config($config);
546     $illrq_obj->_backend($backend);
547
548     # getPrefix
549     $config->set_series('getPrefixes',
550                         { CPL => "TEST", TSL => "BAR", default => "DEFAULT" },
551                         { A => "ATEST", C => "CBAR", default => "DEFAULT" });
552     is($illrq_obj->getPrefix({ brw_cat => "C", branch => "CPL" }), "CBAR",
553        "getPrefix: brw_cat");
554     $config->set_series('getPrefixes',
555                         { CPL => "TEST", TSL => "BAR", default => "DEFAULT" },
556                         { A => "ATEST", C => "CBAR", default => "DEFAULT" });
557     is($illrq_obj->getPrefix({ brw_cat => "UNKNOWN", branch => "CPL" }), "TEST",
558        "getPrefix: branch");
559     $config->set_series('getPrefixes',
560                         { CPL => "TEST", TSL => "BAR", default => "DEFAULT" },
561                         { A => "ATEST", C => "CBAR", default => "DEFAULT" });
562     is($illrq_obj->getPrefix({ brw_cat => "UNKNOWN", branch => "UNKNOWN" }), "DEFAULT",
563        "getPrefix: default");
564     $config->set_always('getPrefixes', {});
565     is($illrq_obj->getPrefix({ brw_cat => "UNKNOWN", branch => "UNKNOWN" }), "",
566        "getPrefix: the empty prefix");
567
568     # id_prefix
569     $config->set_series('getPrefixes',
570                         { CPL => "TEST", TSL => "BAR", default => "DEFAULT" },
571                         { A => "ATEST", C => "CBAR", default => "DEFAULT" });
572     is($illrq_obj->id_prefix, "ATEST-", "id_prefix: brw_cat");
573     $config->set_series('getPrefixes',
574                         { CPL => "TEST", TSL => "BAR", default => "DEFAULT" },
575                         { AB => "ATEST", CD => "CBAR", default => "DEFAULT" });
576     is($illrq_obj->id_prefix, "TEST-", "id_prefix: branch");
577     $config->set_series('getPrefixes',
578                         { CPLT => "TEST", TSLT => "BAR", default => "DEFAULT" },
579                         { AB => "ATEST", CD => "CBAR", default => "DEFAULT" });
580     is($illrq_obj->id_prefix, "DEFAULT-", "id_prefix: default");
581
582     # requires_moderation
583     $illrq_obj->status('NEW')->store;
584     is($illrq_obj->requires_moderation, undef, "requires_moderation: No.");
585     $illrq_obj->status('CANCREQ')->store;
586     is($illrq_obj->requires_moderation, 'CANCREQ', "requires_moderation: Yes.");
587
588     $schema->storage->txn_rollback;
589 };
590
591
592 subtest 'Censorship' => sub {
593
594     plan tests => 2;
595
596     $schema->storage->txn_begin;
597
598     # Build infrastructure
599     my $backend = Test::MockObject->new;
600     $backend->set_isa('Koha::Illbackends::Mock');
601     $backend->set_always('name', 'Mock');
602
603     my $config = Test::MockObject->new;
604     $config->set_always('backend_dir', "/tmp");
605
606     my $illrq = $builder->build({source => 'Illrequest'});
607     my $illrq_obj = Koha::Illrequests->find($illrq->{illrequest_id});
608     $illrq_obj->_config($config);
609     $illrq_obj->_backend($backend);
610
611     $config->set_always('censorship', { censor_notes_staff => 1, censor_reply_date => 0 });
612
613     my $censor_out = $illrq_obj->_censor({ foo => 'bar', baz => 564 });
614     is_deeply($censor_out, { foo => 'bar', baz => 564, display_reply_date => 1 },
615               "_censor: not OPAC, reply_date = 1");
616
617     $censor_out = $illrq_obj->_censor({ foo => 'bar', baz => 564, opac => 1 });
618     is_deeply($censor_out, {
619         foo => 'bar', baz => 564, censor_notes_staff => 1,
620         display_reply_date => 1, opac => 1
621     }, "_censor: notes_staff = 0, reply_date = 0");
622
623     $schema->storage->txn_rollback;
624 };
625
626 subtest 'Checking Limits' => sub {
627
628     plan tests => 30;
629
630     $schema->storage->txn_begin;
631
632     # Build infrastructure
633     my $backend = Test::MockObject->new;
634     $backend->set_isa('Koha::Illbackends::Mock');
635     $backend->set_always('name', 'Mock');
636
637     my $config = Test::MockObject->new;
638     $config->set_always('backend_dir', "/tmp");
639
640     my $illrq = $builder->build({source => 'Illrequest'});
641     my $illrq_obj = Koha::Illrequests->find($illrq->{illrequest_id});
642     $illrq_obj->_config($config);
643     $illrq_obj->_backend($backend);
644
645     # getLimits
646     $config->set_series('getLimitRules',
647                         { CPL => { count => 1, method => 'test' } },
648                         { default => { count => 0, method => 'active' } });
649     is_deeply($illrq_obj->getLimits({ type => 'branch', value => "CPL" }),
650               { count => 1, method => 'test' },
651               "getLimits: by value.");
652     is_deeply($illrq_obj->getLimits({ type => 'branch' }),
653               { count => 0, method => 'active' },
654               "getLimits: by default.");
655     is_deeply($illrq_obj->getLimits({ type => 'branch', value => "CPL" }),
656               { count => -1, method => 'active' },
657               "getLimits: by hard-coded.");
658
659     #_limit_counter
660     is($illrq_obj->_limit_counter('annual', { branchcode => $illrq_obj->branchcode }),
661        1, "_limit_counter: Initial branch annual count.");
662     is($illrq_obj->_limit_counter('active', { branchcode => $illrq_obj->branchcode }),
663        1, "_limit_counter: Initial branch active count.");
664     is($illrq_obj->_limit_counter('annual', { borrowernumber => $illrq_obj->borrowernumber }),
665        1, "_limit_counter: Initial patron annual count.");
666     is($illrq_obj->_limit_counter('active', { borrowernumber => $illrq_obj->borrowernumber }),
667        1, "_limit_counter: Initial patron active count.");
668     $builder->build({
669         source => 'Illrequest',
670         value => {
671             branchcode => $illrq_obj->branchcode,
672             borrowernumber => $illrq_obj->borrowernumber,
673         }
674     });
675     is($illrq_obj->_limit_counter('annual', { branchcode => $illrq_obj->branchcode }),
676        2, "_limit_counter: Add a qualifying request for branch annual count.");
677     is($illrq_obj->_limit_counter('active', { branchcode => $illrq_obj->branchcode }),
678        2, "_limit_counter: Add a qualifying request for branch active count.");
679     is($illrq_obj->_limit_counter('annual', { borrowernumber => $illrq_obj->borrowernumber }),
680        2, "_limit_counter: Add a qualifying request for patron annual count.");
681     is($illrq_obj->_limit_counter('active', { borrowernumber => $illrq_obj->borrowernumber }),
682        2, "_limit_counter: Add a qualifying request for patron active count.");
683     $builder->build({
684         source => 'Illrequest',
685         value => {
686             branchcode => $illrq_obj->branchcode,
687             borrowernumber => $illrq_obj->borrowernumber,
688             placed => "2005-05-31",
689         }
690     });
691     is($illrq_obj->_limit_counter('annual', { branchcode => $illrq_obj->branchcode }),
692        2, "_limit_counter: Add an out-of-date branch request.");
693     is($illrq_obj->_limit_counter('active', { branchcode => $illrq_obj->branchcode }),
694        3, "_limit_counter: Add a qualifying request for branch active count.");
695     is($illrq_obj->_limit_counter('annual', { borrowernumber => $illrq_obj->borrowernumber }),
696        2, "_limit_counter: Add an out-of-date patron request.");
697     is($illrq_obj->_limit_counter('active', { borrowernumber => $illrq_obj->borrowernumber }),
698        3, "_limit_counter: Add a qualifying request for patron active count.");
699     $builder->build({
700         source => 'Illrequest',
701         value => {
702             branchcode => $illrq_obj->branchcode,
703             borrowernumber => $illrq_obj->borrowernumber,
704             status => "COMP",
705         }
706     });
707     is($illrq_obj->_limit_counter('annual', { branchcode => $illrq_obj->branchcode }),
708        3, "_limit_counter: Add a qualifying request for branch annual count.");
709     is($illrq_obj->_limit_counter('active', { branchcode => $illrq_obj->branchcode }),
710        3, "_limit_counter: Add a completed request for branch active count.");
711     is($illrq_obj->_limit_counter('annual', { borrowernumber => $illrq_obj->borrowernumber }),
712        3, "_limit_counter: Add a qualifying request for patron annual count.");
713     is($illrq_obj->_limit_counter('active', { borrowernumber => $illrq_obj->borrowernumber }),
714        3, "_limit_counter: Add a completed request for patron active count.");
715
716     # check_limits:
717
718     # We've tested _limit_counter, so all we need to test here is whether the
719     # current counts of 3 for each work as they should against different
720     # configuration declarations.
721
722     # No limits
723     $config->set_always('getLimitRules', undef);
724     is($illrq_obj->check_limits({patron => $illrq_obj->patron,
725                                  librarycode => $illrq_obj->branchcode}),
726        1, "check_limits: no configuration => no limits.");
727
728     # Branch tests
729     $config->set_always('getLimitRules',
730                         { $illrq_obj->branchcode => { count => 1, method => 'active' } });
731     is($illrq_obj->check_limits({patron => $illrq_obj->patron,
732                                  librarycode => $illrq_obj->branchcode}),
733        0, "check_limits: branch active limit exceeded.");
734     $config->set_always('getLimitRules',
735                         { $illrq_obj->branchcode => { count => 1, method => 'annual' } });
736     is($illrq_obj->check_limits({patron => $illrq_obj->patron,
737                                  librarycode => $illrq_obj->branchcode}),
738        0, "check_limits: branch annual limit exceeded.");
739     $config->set_always('getLimitRules',
740                         { $illrq_obj->branchcode => { count => 4, method => 'active' } });
741     is($illrq_obj->check_limits({patron => $illrq_obj->patron,
742                                  librarycode => $illrq_obj->branchcode}),
743        1, "check_limits: branch active limit OK.");
744     $config->set_always('getLimitRules',
745                         { $illrq_obj->branchcode => { count => 4, method => 'annual' } });
746     is($illrq_obj->check_limits({patron => $illrq_obj->patron,
747                                  librarycode => $illrq_obj->branchcode}),
748        1, "check_limits: branch annual limit OK.");
749
750     # Patron tests
751     $config->set_always('getLimitRules',
752                         { $illrq_obj->patron->categorycode => { count => 1, method => 'active' } });
753     is($illrq_obj->check_limits({patron => $illrq_obj->patron,
754                                  librarycode => $illrq_obj->branchcode}),
755        0, "check_limits: patron category active limit exceeded.");
756     $config->set_always('getLimitRules',
757                         { $illrq_obj->patron->categorycode => { count => 1, method => 'annual' } });
758     is($illrq_obj->check_limits({patron => $illrq_obj->patron,
759                                  librarycode => $illrq_obj->branchcode}),
760        0, "check_limits: patron category annual limit exceeded.");
761     $config->set_always('getLimitRules',
762                         { $illrq_obj->patron->categorycode => { count => 4, method => 'active' } });
763     is($illrq_obj->check_limits({patron => $illrq_obj->patron,
764                                  librarycode => $illrq_obj->branchcode}),
765        1, "check_limits: patron category active limit OK.");
766     $config->set_always('getLimitRules',
767                         { $illrq_obj->patron->categorycode => { count => 4, method => 'annual' } });
768     is($illrq_obj->check_limits({patron => $illrq_obj->patron,
769                                  librarycode => $illrq_obj->branchcode}),
770        1, "check_limits: patron category annual limit OK.");
771
772     # One rule cancels the other
773     $config->set_series('getLimitRules',
774                         # Branch rules allow request
775                         { $illrq_obj->branchcode => { count => 4, method => 'active' } },
776                         # Patron rule forbids it
777                         { $illrq_obj->patron->categorycode => { count => 1, method => 'annual' } });
778     is($illrq_obj->check_limits({patron => $illrq_obj->patron,
779                                  librarycode => $illrq_obj->branchcode}),
780        0, "check_limits: patron category veto overrides branch OK.");
781     $config->set_series('getLimitRules',
782                         # Branch rules allow request
783                         { $illrq_obj->branchcode => { count => 1, method => 'active' } },
784                         # Patron rule forbids it
785                         { $illrq_obj->patron->categorycode => { count => 4, method => 'annual' } });
786     is($illrq_obj->check_limits({patron => $illrq_obj->patron,
787                                  librarycode => $illrq_obj->branchcode}),
788        0, "check_limits: branch veto overrides patron category OK.");
789
790     $schema->storage->txn_rollback;
791 };
792
793 subtest 'TO_JSON() tests' => sub {
794
795     plan tests => 10;
796
797     my $illreqmodule = Test::MockModule->new('Koha::Illrequest');
798
799     # Mock ->capabilities
800     $illreqmodule->mock( 'capabilities', sub { return 'capable'; } );
801
802     # Mock ->metadata
803     $illreqmodule->mock( 'metadata', sub { return 'metawhat?'; } );
804
805     $schema->storage->txn_begin;
806
807     my $library = $builder->build_object( { class => 'Koha::Libraries' } );
808     my $patron  = $builder->build_object( { class => 'Koha::Patrons' } );
809     my $illreq  = $builder->build_object(
810         {
811             class => 'Koha::Illrequests',
812             value => {
813                 branchcode     => $library->branchcode,
814                 borrowernumber => $patron->borrowernumber
815             }
816         }
817     );
818     my $illreq_json = $illreq->TO_JSON;
819     is( $illreq_json->{patron},
820         undef, '%embed not passed, no \'patron\' attribute' );
821     is( $illreq_json->{metadata},
822         undef, '%embed not passed, no \'metadata\' attribute' );
823     is( $illreq_json->{capabilities},
824         undef, '%embed not passed, no \'capabilities\' attribute' );
825     is( $illreq_json->{branch},
826         undef, '%embed not passed, no \'branch\' attribute' );
827
828     $illreq_json = $illreq->TO_JSON(
829         { patron => 1, metadata => 1, capabilities => 1, branch => 1 } );
830     is( $illreq_json->{patron}->{firstname},
831         $patron->firstname,
832         '%embed passed, \'patron\' attribute correct (firstname)' );
833     is( $illreq_json->{patron}->{surname},
834         $patron->surname,
835         '%embed passed, \'patron\' attribute correct (surname)' );
836     is( $illreq_json->{patron}->{cardnumber},
837         $patron->cardnumber,
838         '%embed passed, \'patron\' attribute correct (cardnumber)' );
839     is( $illreq_json->{metadata},
840         'metawhat?', '%embed passed, \'metadata\' attribute correct' );
841     is( $illreq_json->{capabilities},
842         'capable', '%embed passed, \'capabilities\' attribute correct' );
843     is( $illreq_json->{branch}->{branchcode},
844         $library->branchcode, '%embed not passed, no \'branch\' attribute' );
845
846     $schema->storage->txn_rollback;
847 };