Bug 18309: Add UNIMARC field 214 and its subfields
[koha.git] / t / db_dependent / OAI / Sets.t
blobf68552613f8e0e69e3e0fb3183dd583dd7ef6461
1 #!/usr/bin/perl
3 # Copyright 2015 BibLibre
5 # This file is part of Koha.
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.
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.
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>.
19 use Modern::Perl;
21 use Test::More tests => 144;
22 use Test::MockModule;
23 use Test::Warn;
24 use MARC::Record;
26 use Koha::Database;
27 use C4::Biblio;
28 use C4::OAI::Sets;
30 use t::lib::TestBuilder;
32 my $schema = Koha::Database->new->schema;
33 $schema->storage->txn_begin;
34 my $dbh = C4::Context->dbh;
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');
41 my $builder = t::lib::TestBuilder->new;
42 # ---------- Testing AddOAISet ------------------
43 ok (!defined(AddOAISet), 'AddOAISet without argument is undef');
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');
48 my $set_without_spec_and_name = {
49 'descriptions' => ['descNoSpecNoName'],
51 ok (!defined(AddOAISet($set_without_spec_and_name)), 'AddOAISet without "field" and "name" fields is undef');
53 my $set_without_spec = {
54 'name' => 'nameNoSpec',
55 'descriptions' => ['descNoSpec'],
57 ok (!defined(AddOAISet($set_without_spec)), 'AddOAISet without "field" field is undef');
59 my $set_without_name = {
60 'spec' => 'specNoName',
61 'descriptions' => ['descNoName'],
63 ok (!defined(AddOAISet($set_without_name)), 'AddOAISet without "name" field is undef');
65 #Test to enter in the 'else' case of 'AddOAISet' line 280
67 my $dbi_st = Test::MockModule->new('DBI::st', no_auto => 1); # ref($sth) == 'DBI::st'
68 $dbi_st->mock('execute', sub { return 0; });
70 my $setWrong = {
71 'spec' => 'specWrong',
72 'name' => 'nameWrong',
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';
79 ok(!defined $setWrong_id, '$setWrong_id is not defined');
82 #Adding a Set without description
83 my $set1 = {
84 'spec' => 'specSet1',
85 'name' => 'nameSet1',
87 my $set1_id = AddOAISet($set1);
88 isa_ok(\$set1_id, 'SCALAR', '$set1_id is a SCALAR');
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');
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"');
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');
106 #Adding a Set with a description
107 my $set2 = {
108 'spec' => 'specSet2',
109 'name' => 'nameSet2',
110 'descriptions' => ['descSet2'],
112 my $set2_id = AddOAISet($set2);
113 isa_ok(\$set2_id, 'SCALAR', '$set2_id is a SCALAR');
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');
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"');
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"');
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');
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"');
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"');
145 ok(!defined($oai_sets->[2]), 'There are only 2 sets');
148 # ---------- Testing GetOAISet ------------------
149 ok (!defined(GetOAISet), 'GetOAISet without argument is undef');
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"');
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"');
163 # ---------- Testing GetOAISetBySpec ------------
164 ok (!defined(GetOAISetBySpec), 'GetOAISetBySpec without argument is undef');
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"');
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.
178 # ---------- Testing ModOAISet ------------------
179 ok (!defined(ModOAISet), 'ModOAISet without argument is undef');
181 my $new_set_without_id = {
182 'spec' => 'specNoName',
183 'name' => 'nameNoSpec',
184 'descriptions' => ['descNoSpecNoName'],
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');
192 my $new_set_without_spec_and_name = {
193 'id' => $set1_id,
194 'descriptions' => ['descNoSpecNoName'],
196 ok (!defined(ModOAISet($new_set_without_spec_and_name)), 'ModOAISet without "field" and "name" fields is undef');
198 my $new_set_without_spec = {
199 'id' => $set1_id,
200 'name' => 'nameNoSpec',
201 'descriptions' => ['descNoSpec'],
203 ok (!defined(ModOAISet($new_set_without_spec)), 'ModOAISet without "field" field is undef');
205 my $new_set_without_name = {
206 'id' => $set1_id,
207 'spec' => 'specNoName',
208 'descriptions' => ['descNoName'],
210 ok (!defined(ModOAISet($new_set_without_name)), 'ModOAISet without "name" field is undef');
212 my $new_set1 = {
213 'id' => $set1_id,
214 'spec' => 'new_specSet1',
215 'name' => 'new_nameSet1',
216 'descriptions' => ['new_descSet1'],
218 ModOAISet($new_set1);
220 my $new_set2 = {
221 'id' => $set2_id,
222 'spec' => 'new_specSet2',
223 'name' => 'new_nameSet2',
225 ModOAISet($new_set2);
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"');
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"');
239 # ---------- Testing ModOAISetMappings ----------
240 ok (!defined(ModOAISetMappings), 'ModOAISetMappings without argument is undef');
241 #Add 1st mapping for set1
242 my $mapping1 = [
244 marcfield => '206',
245 marcsubfield => 'a',
246 operator => 'equal',
247 marcvalue => 'myMarcValue'
250 ModOAISetMappings($set1_id, $mapping1);
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');
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"');
265 #Mod 1st mapping of set1
266 my $mapping1_bis = [
268 marcfield => '256',
269 marcsubfield => 'b',
270 operator => 'notequal',
271 marcvalue => 'myMarcValueBis'
274 ModOAISetMappings($set1_id, $mapping1_bis);
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');
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"');
289 #Add 1st mapping of set2
290 my $mapping2 = [
292 marcfield => '306',
293 marcsubfield => 'c',
294 operator => 'equal',
295 marcvalue => 'myOtherMarcValue'
298 ModOAISetMappings($set2_id, $mapping2);
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');
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"');
314 # ---------- Testing GetOAISetsMappings ---------
315 my $mappings = GetOAISetsMappings;
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"');
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"');
334 # ---------- Testing GetOAISetMappings ----------
335 ok (!defined(GetOAISetMappings), 'GetOAISetMappings without argument is undef');
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"');
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"');
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');
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');
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 => [],
369 AddOAISetsBiblios($oai_sets_biblios);
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');
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');
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");
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");
392 #testing biblio for set2_id
393 $sth->execute($set2_id);
394 $count = $sth->rows;
395 is ($count, '0', '$set_id2 has 0 biblio');
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');
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');
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');
419 $oai_sets_biblios = {
420 $set1_id => [$biblionumber1],
421 $set2_id => [$biblionumber2],
423 ModOAISetsBiblios($oai_sets_biblios);
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');
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');
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");
441 #testing biblio for set2_id
442 $sth->execute($set2_id);
443 $count = $sth->rows;
444 is ($count, '1', '$set_id2 has 1 biblio');
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");
452 # ---------- Testing DelOAISetsBiblio -----------
453 ok (!defined(DelOAISetsBiblio), 'DelOAISetsBiblio without argument is undef');
455 DelOAISetsBiblio($biblionumber1);
456 is_deeply(GetOAISetsBiblio($biblionumber1), [], "no biblio1 appear in any OAI sets");
458 DelOAISetsBiblio($biblionumber2);
459 is_deeply(GetOAISetsBiblio($biblionumber2), [], "no biblio2 appear in any OAI sets");
462 # ---------- Testing DelOAISet ------------------
463 ok (!defined(DelOAISet), 'DelOAISet without argument is undef');
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');
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');
481 $oai_sets=GetOAISets;
482 is_deeply ($oai_sets, [], '$oai_sets is empty');
485 # ---------- Testing UpdateOAISetsBiblio --------
486 ok (!defined(UpdateOAISetsBiblio), 'UpdateOAISetsBiblio without argument is undef');
487 ok (!defined(UpdateOAISetsBiblio($arg)), 'UpdateOAISetsBiblio with only 1 argument is undef');
489 #Create a set
490 my $setVH = {
491 'spec' => 'Set where Author is Victor Hugo',
492 'name' => 'VH'
494 my $setVH_id = AddOAISet($setVH);
496 #Create mappings : 'author' should be 'Victor Hugo'
497 my $marcflavour = C4::Context->preference('marcflavour');
498 my $mappingsVH;
500 if ($marcflavour eq 'UNIMARC' ){
501 $mappingsVH = [
503 marcfield => '200',
504 marcsubfield => 'f',
505 operator => 'equal',
506 marcvalue => 'Victor Hugo'
510 else {
511 $mappingsVH = [
513 marcfield => '100',
514 marcsubfield => 'a',
515 operator => 'equal',
516 marcvalue => 'Victor Hugo'
520 ModOAISetMappings($setVH_id, $mappingsVH);
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;
527 #Update
528 my $record = GetMarcBiblio({ biblionumber => $biblionumberVH });
529 UpdateOAISetsBiblio($biblionumberVH, $record);
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');
538 # ---------- Testing CalcOAISetsBiblio ----------
539 ok (!defined(CalcOAISetsBiblio), 'CalcOAISetsBiblio without argument is undef');
541 my @setsEq = CalcOAISetsBiblio($record);
542 is_deeply(@setsEq, $setVH_id, 'The $record only belongs to $setVH');
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'
550 my $setNotVH_id = AddOAISet($setNotVH);
552 #Create mappings : 'author' should NOT be 'Victor Hugo'
553 $marcflavour = C4::Context->preference('marcflavour');
554 my $mappingsNotVH;
556 if ($marcflavour eq 'UNIMARC' ){
557 $mappingsNotVH = [
559 marcfield => '200',
560 marcsubfield => 'f',
561 operator => 'notequal',
562 marcvalue => 'Victor Hugo'
566 else {
567 $mappingsNotVH = [
569 marcfield => '100',
570 marcsubfield => 'a',
571 operator => 'notequal',
572 marcvalue => 'Victor Hugo'
576 ModOAISetMappings($setNotVH_id, $mappingsNotVH);
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;
583 #Update
584 $record = GetMarcBiblio({ biblionumber => $biblionumberNotVH });
585 UpdateOAISetsBiblio($biblionumberNotVH, $record);
587 my @setsNotEq = CalcOAISetsBiblio($record);
588 is_deeply(@setsNotEq, $setNotVH_id, 'The $record only belongs to $setNotVH');
590 $schema->storage->txn_rollback;