Bug 21953: (follow-up) Fix test count
[koha.git] / t / db_dependent / OAI / Sets.t
1 #!/usr/bin/perl
2
3 # Copyright 2015 BibLibre
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, see <http://www.gnu.org/licenses>.
18
19 use Modern::Perl;
20
21 use Test::More tests => 144;
22 use Test::MockModule;
23 use Test::Warn;
24 use MARC::Record;
25
26 use Koha::Database;
27 use C4::Biblio;
28 use C4::OAI::Sets;
29
30 use t::lib::TestBuilder;
31
32 my $schema  = Koha::Database->new->schema;
33 $schema->storage->txn_begin;
34 my $dbh = C4::Context->dbh;
35
36 $dbh->do('DELETE FROM oai_sets');
37 $dbh->do('DELETE FROM oai_sets_descriptions');
38 $dbh->do('DELETE FROM oai_sets_mappings');
39 $dbh->do('DELETE FROM oai_sets_biblios');
40
41 my $builder = t::lib::TestBuilder->new;
42 # ---------- Testing AddOAISet ------------------
43 ok (!defined(AddOAISet), 'AddOAISet without argument is undef');
44
45 my $set_without_spec_and_name_and_desc =  {};
46 ok (!defined(AddOAISet($set_without_spec_and_name_and_desc)), 'AddOAISet without "field", "name" and "descriptions" fields is undef');
47
48 my $set_without_spec_and_name =  {
49     'descriptions' => ['descNoSpecNoName'],
50 };
51 ok (!defined(AddOAISet($set_without_spec_and_name)), 'AddOAISet without "field" and "name" fields is undef');
52
53 my $set_without_spec =  {
54     'name' => 'nameNoSpec',
55     'descriptions' => ['descNoSpec'],
56 };
57 ok (!defined(AddOAISet($set_without_spec)), 'AddOAISet without "field" field is undef');
58
59 my $set_without_name =  {
60     'spec' => 'specNoName',
61     'descriptions' => ['descNoName'],
62 };
63 ok (!defined(AddOAISet($set_without_name)), 'AddOAISet without "name" field is undef');
64
65 #Test to enter in the 'else' case of 'AddOAISet' line 280
66 {
67     my $dbi_st = Test::MockModule->new('DBI::st', no_auto => 1);  # ref($sth) == 'DBI::st'
68     $dbi_st->mock('execute', sub { return 0; });
69
70     my $setWrong = {
71         'spec' => 'specWrong',
72         'name' => 'nameWrong',
73     };
74     my $setWrong_id;
75     warning_is { $setWrong_id = AddOAISet($setWrong) }
76                 'AddOAISet failed',
77                 'AddOAISet raises warning if there is a problem with SET spec or SET name';
78
79     ok(!defined $setWrong_id, '$setWrong_id is not defined');
80 }
81
82 #Adding a Set without description
83 my $set1 = {
84     'spec' => 'specSet1',
85     'name' => 'nameSet1',
86 };
87 my $set1_id = AddOAISet($set1);
88 isa_ok(\$set1_id, 'SCALAR', '$set1_id is a SCALAR');
89
90 my $sth = $dbh->prepare("SELECT count(*) FROM oai_sets");
91 $sth->execute;
92 my $setsCount = $sth->fetchrow_array;
93 is ($setsCount, 1, 'There is 1 set');
94
95 $sth = $dbh->prepare("SELECT spec, name FROM oai_sets");
96 $sth->execute;
97 my ($spec, $name) = $sth->fetchrow_array;
98 is ($spec, 'specSet1', 'spec field is "specSet1"');
99 is ($name, 'nameSet1', 'name field is "nameSet1"');
100
101 $sth = $dbh->prepare("SELECT description FROM oai_sets_descriptions");
102 $sth->execute;
103 my $desc = $sth -> rows;
104 is ($desc, 0, 'There is NO set description');
105
106 #Adding a Set with a description
107 my $set2 = {
108     'spec' => 'specSet2',
109     'name' => 'nameSet2',
110     'descriptions' => ['descSet2'],
111 };
112 my $set2_id = AddOAISet($set2);
113 isa_ok(\$set2_id, 'SCALAR', '$set2_id is a SCALAR');
114
115 $sth = $dbh->prepare("SELECT count(*) FROM oai_sets");
116 $sth->execute;
117 $setsCount = $sth->fetchrow_array;
118 is ($setsCount, 2, 'There is 2 sets');
119
120 $sth = $dbh->prepare("SELECT spec, name FROM oai_sets ORDER BY id DESC");
121 $sth->execute;
122 ($spec, $name) = $sth->fetchrow_array;
123 is ($spec, 'specSet2', 'spec field is "specSet2"');
124 is ($name, 'nameSet2', 'name field is "nameSet2"');
125
126 $sth = $dbh->prepare("SELECT description FROM oai_sets_descriptions");
127 $sth->execute;
128 $desc = $sth->fetchrow_array;
129 is ($desc, 'descSet2', 'description field is "descSet2"');
130
131
132 # ---------- Testing GetOAISets -----------------
133 my $oai_sets = GetOAISets;
134 isa_ok($oai_sets, 'ARRAY', '$oai_sets is an array reference of hash reference describing the sets');
135
136 isa_ok($oai_sets->[0], 'HASH', '$set1 is defined as a hash');
137 is ($oai_sets->[0]->{spec}, 'specSet1', 'spec field is "specSet1"');
138 is ($oai_sets->[0]->{name}, 'nameSet1', 'name field is "nameSet1"');
139
140 isa_ok($oai_sets->[1], 'HASH', '$set2 is defined as a hash');
141 is ($oai_sets->[1]->{spec}, 'specSet2', 'spec field is "specSet2"');
142 is ($oai_sets->[1]->{name}, 'nameSet2', 'name field is "nameSet2"');
143 is_deeply ($oai_sets->[1]->{descriptions}, ['descSet2'], 'description field is "descSet2"');
144
145 ok(!defined($oai_sets->[2]), 'There are only 2 sets');
146
147
148 # ---------- Testing GetOAISet ------------------
149 ok (!defined(GetOAISet), 'GetOAISet without argument is undef');
150
151 my $set = GetOAISet($set1_id);
152 isa_ok($set, 'HASH', '$set is a hash reference describing the set with the given set_id');
153 is ($set->{spec}, 'specSet1', 'spec field is "specSet1"');
154 is ($set->{name}, 'nameSet1', 'name field is "nameSet1"');
155
156 $set = GetOAISet($set2_id);
157 isa_ok($set, 'HASH', '$set is a hash reference describing the set with the given set_id');
158 is ($set->{spec}, 'specSet2', 'spec field is "specSet2"');
159 is ($set->{name}, 'nameSet2', 'name field is "nameSet2"');
160 is_deeply ($set->{descriptions}, ['descSet2'], 'description field is "descSet2"');
161
162
163 # ---------- Testing GetOAISetBySpec ------------
164 ok (!defined(GetOAISetBySpec), 'GetOAISetBySpec without argument is undef');
165
166 $set = GetOAISetBySpec($set1->{spec});
167 isa_ok($set, 'HASH', '$set is a hash describing the set whose spec is $oai_sets->[0]->{spec}');
168 is ($set->{spec}, 'specSet1', 'spec field is "specSet1"');
169 is ($set->{name}, 'nameSet1', 'name field is "nameSet1"');
170
171 $set = GetOAISetBySpec($set2->{spec});
172 isa_ok($set, 'HASH', '$set is a hash describing the set whose spec is $oai_sets->[1]->{spec}');
173 is ($set->{spec}, 'specSet2', 'spec field is "specSet2"');
174 is ($set->{name}, 'nameSet2', 'name field is "nameSet2"');
175 #GetOAISetBySpec does't return the description field.
176
177
178 # ---------- Testing ModOAISet ------------------
179 ok (!defined(ModOAISet), 'ModOAISet without argument is undef');
180
181 my $new_set_without_id =  {
182     'spec' => 'specNoName',
183     'name' => 'nameNoSpec',
184     'descriptions' => ['descNoSpecNoName'],
185 };
186 my $res;
187 warning_is { $res = ModOAISet($new_set_without_id) }
188             'Set ID not defined, can\'t modify the set',
189             'ModOAISet raises warning if Set ID is not defined';
190 ok(!defined($res), 'ModOAISet returns undef if Set ID is not defined');
191
192 my $new_set_without_spec_and_name =  {
193     'id' => $set1_id,
194     'descriptions' => ['descNoSpecNoName'],
195 };
196 ok (!defined(ModOAISet($new_set_without_spec_and_name)), 'ModOAISet without "field" and "name" fields is undef');
197
198 my $new_set_without_spec =  {
199     'id' => $set1_id,
200     'name' => 'nameNoSpec',
201     'descriptions' => ['descNoSpec'],
202 };
203 ok (!defined(ModOAISet($new_set_without_spec)), 'ModOAISet without "field" field is undef');
204
205 my $new_set_without_name =  {
206     'id' => $set1_id,
207     'spec' => 'specNoName',
208     'descriptions' => ['descNoName'],
209 };
210 ok (!defined(ModOAISet($new_set_without_name)), 'ModOAISet without "name" field is undef');
211
212 my $new_set1 =  {
213     'id' => $set1_id,
214     'spec' => 'new_specSet1',
215     'name' => 'new_nameSet1',
216     'descriptions' => ['new_descSet1'],
217 };
218 ModOAISet($new_set1);
219
220 my $new_set2 =  {
221     'id' => $set2_id,
222     'spec' => 'new_specSet2',
223     'name' => 'new_nameSet2',
224 };
225 ModOAISet($new_set2);
226
227 $set1 = GetOAISet($set1_id);
228 isa_ok($set1, 'HASH', '$set1 is defined as a hash');
229 is ($set1->{spec}, 'new_specSet1', 'spec field is "new_specSet1"');
230 is ($set1->{name}, 'new_nameSet1', 'name field is "new_nameSet1"');
231 is_deeply ($set1->{descriptions}, ['new_descSet1'], 'description field is "new_descSet1"');
232
233 $set2 = GetOAISet($set2_id);
234 isa_ok($set2, 'HASH', '$new_set2 is defined as a hash');
235 is ($set2->{spec}, 'new_specSet2', 'spec field is "new_specSet2"');
236 is ($set2->{name}, 'new_nameSet2', 'name field is "new_nameSet2"');
237
238
239 # ---------- Testing ModOAISetMappings ----------
240 ok (!defined(ModOAISetMappings), 'ModOAISetMappings without argument is undef');
241 #Add 1st mapping for set1
242 my $mapping1 = [
243     {
244         marcfield => '206',
245         marcsubfield => 'a',
246         operator => 'equal',
247         marcvalue => 'myMarcValue'
248     },
249 ];
250 ModOAISetMappings($set1_id, $mapping1);
251
252 $sth = $dbh->prepare("SELECT count(*) FROM oai_sets_mappings");
253 $sth->execute;
254 my $mappingsCount = $sth->fetchrow_array;
255 is ($mappingsCount, 1, 'There is 1 mapping');
256
257 $sth = $dbh->prepare("SELECT marcfield, marcsubfield, operator, marcvalue FROM oai_sets_mappings");
258 $sth->execute;
259 my ($marcfield, $marcsubfield, $operator, $marcvalue) = $sth->fetchrow_array;
260 is ($marcfield, '206', 'marcfield field is "206"');
261 is ($marcsubfield, 'a', 'marcsubfield field is "a"');
262 is ($operator, 'equal', 'operator field is "equal"');
263 is ($marcvalue, 'myMarcValue', 'marcvalue field is "myMarcValue"');
264
265 #Mod 1st mapping of set1
266 my $mapping1_bis = [
267     {
268         marcfield => '256',
269         marcsubfield => 'b',
270         operator => 'notequal',
271         marcvalue => 'myMarcValueBis'
272     },
273 ];
274 ModOAISetMappings($set1_id, $mapping1_bis);
275
276 $sth = $dbh->prepare("SELECT count(*) FROM oai_sets_mappings");
277 $sth->execute;
278 $mappingsCount = $sth->fetchrow_array;
279 is ($mappingsCount, 1, 'There is 1 mapping');
280
281 $sth = $dbh->prepare("SELECT marcfield, marcsubfield, operator, marcvalue FROM oai_sets_mappings");
282 $sth->execute;
283 ($marcfield, $marcsubfield, $operator, $marcvalue) = $sth->fetchrow_array;
284 is ($marcfield, '256', 'marcfield field is "256"');
285 is ($marcsubfield, 'b', 'marcsubfield field is "b"');
286 is ($operator, 'notequal', 'operator field is "notequal"');
287 is ($marcvalue, 'myMarcValueBis', 'marcvalue field is "myMarcValueBis"');
288
289 #Add 1st mapping of set2
290 my $mapping2 = [
291     {
292         marcfield => '306',
293         marcsubfield => 'c',
294         operator => 'equal',
295         marcvalue => 'myOtherMarcValue'
296     },
297 ];
298 ModOAISetMappings($set2_id, $mapping2);
299
300 $sth = $dbh->prepare("SELECT count(*) FROM oai_sets_mappings");
301 $sth->execute;
302 $mappingsCount = $sth->fetchrow_array;
303 is ($mappingsCount, 2, 'There is 2 mappings');
304
305 $sth = $dbh->prepare("SELECT marcfield, marcsubfield, operator, marcvalue FROM oai_sets_mappings ORDER BY set_id DESC LIMIT 1");
306 $sth->execute;
307 ($marcfield, $marcsubfield, $operator, $marcvalue) = $sth->fetchrow_array;
308 is ($marcfield, '306', 'marcfield field is "306"');
309 is ($marcsubfield, 'c', 'marcsubfield field is "c"');
310 is ($operator, 'equal', 'operator field is "equal"');
311 is ($marcvalue, 'myOtherMarcValue', 'marcvalue field is "myOtherMarcValue"');
312
313
314 # ---------- Testing GetOAISetsMappings ---------
315 my $mappings = GetOAISetsMappings;
316
317 isa_ok($mappings, 'HASH', '$mappings is a hashref of arrayrefs of hashrefs');
318 isa_ok($mappings->{$set1_id}, 'ARRAY', '$mappings->{$set1_id} is a arrayrefs of hashrefs');
319 isa_ok($mappings->{$set1_id}->[0], 'HASH', '$mappings->{$set1_id}->[0] is a hashrefs');
320 is ($mappings->{$set1_id}->[0]->{marcfield}, '256', 'marcfield field is "256"');
321 is ($mappings->{$set1_id}->[0]->{marcsubfield}, 'b', 'marcsubfield field is "b"');
322 is ($mappings->{$set1_id}->[0]->{operator}, 'notequal', 'operator field is "notequal"');
323 is ($mappings->{$set1_id}->[0]->{marcvalue}, 'myMarcValueBis', 'marcvalue field is "myMarcValueBis"');
324
325 isa_ok($mappings->{$set2_id}, 'ARRAY', '$mappings->{$set2_id} is a arrayrefs of hashrefs');
326 isa_ok($mappings->{$set2_id}, 'ARRAY', '$mappings->{$set2_id} is a arrayrefs of hashrefs');
327 isa_ok($mappings->{$set2_id}->[0], 'HASH', '$mappings->{$set2_id}->[0] is a hashrefs');
328 is ($mappings->{$set2_id}->[0]->{marcfield}, '306', 'marcfield field is "306"');
329 is ($mappings->{$set2_id}->[0]->{marcsubfield}, 'c', 'marcsubfield field is "c"');
330 is ($mappings->{$set2_id}->[0]->{operator}, 'equal', 'operator field is "equal"');
331 is ($mappings->{$set2_id}->[0]->{marcvalue}, 'myOtherMarcValue', 'marcvalue field is "myOtherMarcValue"');
332
333
334 # ---------- Testing GetOAISetMappings ----------
335 ok (!defined(GetOAISetMappings), 'GetOAISetMappings without argument is undef');
336
337 my $set_mappings1 = GetOAISetMappings($set1_id);
338 isa_ok($set_mappings1->[0], 'HASH', '$set_mappings1->[0] is a hashref');
339 is ($set_mappings1->[0]->{marcfield}, '256', 'marcfield field is "256"');
340 is ($set_mappings1->[0]->{marcsubfield}, 'b', 'marcsubfield field is "b"');
341 is ($set_mappings1->[0]->{operator}, 'notequal', 'operator field is "notequal"');
342 is ($set_mappings1->[0]->{marcvalue}, 'myMarcValueBis', 'marcvalue field is "myMarcValueBis"');
343
344 my $set_mappings2 = GetOAISetMappings($set2_id);
345 isa_ok($mappings->{$set2_id}->[0], 'HASH', '$mappings->{$set2_id}->[0] is a hashref');
346 is ($mappings->{$set2_id}->[0]->{marcfield}, '306', 'marcfield field is "306"');
347 is ($mappings->{$set2_id}->[0]->{marcsubfield}, 'c', 'marcsubfield field is "c"');
348 is ($mappings->{$set2_id}->[0]->{operator}, 'equal', 'operator field is "equal"');
349 is ($mappings->{$set2_id}->[0]->{marcvalue}, 'myOtherMarcValue', 'marcvalue field is "myOtherMarcValue"');
350
351
352 # ---------- Testing AddOAISetsBiblios ----------
353 ok (!defined(AddOAISetsBiblios), 'AddOAISetsBiblios without argument is undef');
354 ok (!defined(AddOAISetsBiblios(my $arg=[])), 'AddOAISetsBiblios with a no HASH argument is undef');
355 ok (defined(AddOAISetsBiblios($arg={})), 'AddOAISetsBiblios with a HASH argument is def');
356
357 # Create a biblio instance for testing
358 my $biblio_1 = $builder->build_sample_biblio({ author => 'Moffat, Steven' });
359 my $biblionumber1 = $biblio_1->biblionumber;
360 isa_ok(\$biblionumber1, 'SCALAR', '$biblionumber1 is a SCALAR');
361 my $biblio_2 = $builder->build_sample_biblio({ author => 'Moffat, Steven' });
362 my $biblionumber2 = $biblio_2->biblionumber;
363 isa_ok(\$biblionumber2, 'SCALAR', '$biblionumber2 is a SCALAR');
364
365 my $oai_sets_biblios = {
366     $set1_id => [$biblionumber1, $biblionumber2],   # key is the set_id, and value is an array ref of biblionumbers
367     $set2_id => [],
368 };
369 AddOAISetsBiblios($oai_sets_biblios);
370
371 $sth = $dbh->prepare("SELECT count(*) FROM oai_sets_biblios");
372 $sth->execute;
373 my $bibliosCount = $sth->fetchrow_array;
374 is ($bibliosCount, 2, 'There are 2 biblios in oai_sets_biblios');
375
376 #testing biblio for set1_id
377 $sth = $dbh->prepare("SELECT * FROM oai_sets_biblios WHERE set_id = ?");
378 $sth->execute($set1_id);
379 my $count = $sth->rows;
380 is ($count, '2', '$set_id1 has 2 biblio');
381
382 $sth->execute($set1_id);
383 my $line = ${ $sth->fetchall_arrayref( {} ) }[0];
384 is($line->{set_id}, $set1_id, "set_id is good");
385 is($line->{biblionumber}, $biblionumber1, "biblionumber is good");
386
387 $sth->execute($set1_id);
388 $line = ${ $sth->fetchall_arrayref( {} ) }[1];
389 is($line->{set_id}, $set1_id, "set_id is good");
390 is($line->{biblionumber}, $biblionumber2, "biblionumber is good");
391
392 #testing biblio for set2_id
393 $sth->execute($set2_id);
394 $count = $sth->rows;
395 is ($count, '0', '$set_id2 has 0 biblio');
396
397
398 # ---------- Testing GetOAISetsBiblio -----------
399 $oai_sets = GetOAISetsBiblio($biblionumber1);
400 isa_ok($oai_sets, 'ARRAY', '$oai_sets is an arrayref of hashref where each element of the array is a set');
401 isa_ok($oai_sets->[0], 'HASH', '$oai_sets->[0] is a hashrefs of $set1_id');
402 is($oai_sets->[0]->{id}, $set1_id, 'id is $set1_id');
403 is($oai_sets->[0]->{spec}, $set1->{spec}, 'spec is new_specset1');
404 is($oai_sets->[0]->{name}, $set1->{name}, 'name is new_specname1');
405
406 $oai_sets = GetOAISetsBiblio($biblionumber2);
407 isa_ok($oai_sets, 'ARRAY', '$oai_sets is an arrayref of hashref where each element of the array is a set');
408 isa_ok($oai_sets->[0], 'HASH', '$oai_sets->[0] is a hashrefs of $set2_id');
409 is($oai_sets->[0]->{id}, $set1_id, 'id is $set1_id');
410 is($oai_sets->[0]->{spec}, $set1->{spec}, 'spec is new_specset1');
411 is($oai_sets->[0]->{name}, $set1->{name}, 'name is new_specname1');
412
413
414 # ---------- Testing ModOAISetsBiblios ----------
415 ok (!defined(ModOAISetsBiblios), 'ModOAISetsBiblios without argument is undef');
416 ok (!defined(ModOAISetsBiblios($arg=[])), 'ModOAISetsBiblios with a no HASH argument is undef');
417 ok (defined(ModOAISetsBiblios($arg={})), 'ModOAISetsBiblios with a HASH argument is def');
418
419 $oai_sets_biblios = {
420     $set1_id => [$biblionumber1],
421     $set2_id => [$biblionumber2],
422 };
423 ModOAISetsBiblios($oai_sets_biblios);
424
425 $sth = $dbh->prepare("SELECT count(*) FROM oai_sets_biblios");
426 $sth->execute;
427 $bibliosCount = $sth->fetchrow_array;
428 is ($bibliosCount, 2, 'There are 2 biblios in oai_sets_biblios');
429
430 #testing biblio for set1_id
431 $sth = $dbh->prepare("SELECT * FROM oai_sets_biblios WHERE set_id = ?");
432 $sth->execute($set1_id);
433 $count = $sth->rows;
434 is ($count, '1', '$set_id1 has 2 biblio');
435
436 $sth->execute($set1_id);
437 $line = ${ $sth->fetchall_arrayref( {} ) }[0];
438 is($line->{set_id}, $set1_id, "set_id is good");
439 is($line->{biblionumber}, $biblionumber1, "biblionumber is good");
440
441 #testing biblio for set2_id
442 $sth->execute($set2_id);
443 $count = $sth->rows;
444 is ($count, '1', '$set_id2 has 1 biblio');
445
446 $sth->execute($set2_id);
447 $line = ${ $sth->fetchall_arrayref( {} ) }[0];
448 is($line->{set_id}, $set2_id, "set_id is good");
449 is($line->{biblionumber}, $biblionumber2, "biblionumber is good");
450
451
452 # ---------- Testing DelOAISetsBiblio -----------
453 ok (!defined(DelOAISetsBiblio), 'DelOAISetsBiblio without argument is undef');
454
455 DelOAISetsBiblio($biblionumber1);
456 is_deeply(GetOAISetsBiblio($biblionumber1), [], "no biblio1 appear in any OAI sets");
457
458 DelOAISetsBiblio($biblionumber2);
459 is_deeply(GetOAISetsBiblio($biblionumber2), [], "no biblio2 appear in any OAI sets");
460
461
462 # ---------- Testing DelOAISet ------------------
463 ok (!defined(DelOAISet), 'DelOAISet without argument is undef');
464
465 DelOAISet($set1_id);
466 $sth = $dbh->prepare("SELECT count(*) FROM oai_sets");
467 $sth->execute;
468 $setsCount = $sth->fetchrow_array;
469 is ($setsCount, 1, 'There is 1 set left');
470 $set1 = GetOAISet($set1_id);
471 is_deeply ($set1, {}, '$set1 is empty');
472
473 DelOAISet($set2_id);
474 $sth = $dbh->prepare("SELECT count(*) FROM oai_sets");
475 $sth->execute;
476 $setsCount = $sth->fetchrow_array;
477 is ($setsCount, 0, 'There is no set anymore');
478 $set2 = GetOAISet($set2_id);
479 is_deeply ($set2, {}, '$set2 is empty');
480
481 $oai_sets=GetOAISets;
482 is_deeply ($oai_sets, [], '$oai_sets is empty');
483
484
485 # ---------- Testing UpdateOAISetsBiblio --------
486 ok (!defined(UpdateOAISetsBiblio), 'UpdateOAISetsBiblio without argument is undef');
487 ok (!defined(UpdateOAISetsBiblio($arg)), 'UpdateOAISetsBiblio with only 1 argument is undef');
488
489 #Create a set
490 my $setVH = {
491     'spec' => 'Set where Author is Victor Hugo',
492     'name' => 'VH'
493 };
494 my $setVH_id = AddOAISet($setVH);
495
496 #Create mappings : 'author' should be 'Victor Hugo'
497 my $marcflavour = C4::Context->preference('marcflavour');
498 my $mappingsVH;
499
500 if ($marcflavour eq 'UNIMARC' ){
501     $mappingsVH = [
502         {
503             marcfield => '200',
504             marcsubfield => 'f',
505             operator => 'equal',
506             marcvalue => 'Victor Hugo'
507         }
508     ];
509 }
510 else {
511     $mappingsVH = [
512             {
513                 marcfield => '100',
514                 marcsubfield => 'a',
515                 operator => 'equal',
516                 marcvalue => 'Victor Hugo'
517             }
518     ];
519 }
520 ModOAISetMappings($setVH_id, $mappingsVH);
521
522
523 #Create a biblio notice corresponding at one of mappings
524 my $biblio_VH = $builder->build_sample_biblio({ author => 'Victor Hugo' });
525 my $biblionumberVH = $biblio_VH->biblionumber;
526
527 #Update
528 my $record = GetMarcBiblio({ biblionumber => $biblionumberVH });
529 UpdateOAISetsBiblio($biblionumberVH, $record);
530
531 #is biblio attached to setVH ?
532 my $oai_setsVH = GetOAISetsBiblio($biblionumberVH);
533 is($oai_setsVH->[0]->{id}, $setVH_id, 'id is ok');
534 is($oai_setsVH->[0]->{spec}, $setVH->{spec}, 'id is ok');
535 is($oai_setsVH->[0]->{name}, $setVH->{name}, 'id is ok');
536
537
538 # ---------- Testing CalcOAISetsBiblio ----------
539 ok (!defined(CalcOAISetsBiblio), 'CalcOAISetsBiblio without argument is undef');
540
541 my @setsEq = CalcOAISetsBiblio($record);
542 is_deeply(@setsEq, $setVH_id, 'The $record only belongs to $setVH');
543
544 #Testing CalcOAISetsBiblio for a mapping which operator is 'notequal'
545 #Create a set
546 my $setNotVH = {
547     'spec' => 'Set where Author is NOT Victor Hugo',
548     'name' => 'NOT VH'
549 };
550 my $setNotVH_id = AddOAISet($setNotVH);
551
552 #Create mappings : 'author' should NOT be 'Victor Hugo'
553 $marcflavour = C4::Context->preference('marcflavour');
554 my $mappingsNotVH;
555
556 if ($marcflavour eq 'UNIMARC' ){
557     $mappingsNotVH = [
558         {
559             marcfield => '200',
560             marcsubfield => 'f',
561             operator => 'notequal',
562             marcvalue => 'Victor Hugo'
563         }
564     ];
565 }
566 else {
567     $mappingsNotVH = [
568             {
569                 marcfield => '100',
570                 marcsubfield => 'a',
571                 operator => 'notequal',
572                 marcvalue => 'Victor Hugo'
573             }
574     ];
575 }
576 ModOAISetMappings($setNotVH_id, $mappingsNotVH);
577
578
579 #Create a biblio notice corresponding at one of mappings
580 my $biblio_NotVH = $builder->build_sample_biblio({ author => 'Sponge, Bob' });
581 my $biblionumberNotVH = $biblio_NotVH->biblionumber;
582
583 #Update
584 $record = GetMarcBiblio({ biblionumber => $biblionumberNotVH });
585 UpdateOAISetsBiblio($biblionumberNotVH, $record);
586
587 my @setsNotEq = CalcOAISetsBiblio($record);
588 is_deeply(@setsNotEq, $setNotVH_id, 'The $record only belongs to $setNotVH');
589
590 $schema->storage->txn_rollback;