4 use Test
::More tests
=> 14;
6 use File
::Temp qw
/tempfile/;
9 use t
::lib
::TestBuilder
;
15 # Mock pluginsdir before loading Plugins module
16 my $path = abs_path
(__FILE__
);
17 $path =~ s/(\/[^\/]+){2}$//; # remove db_dependent and filename
18 t
::lib
::Mocks
::mock_config
( 'pluginsdir', $path );
19 use_ok
('C4::ImportBatch');
23 my $schema = Koha
::Database
->new->schema;
24 $schema->storage->txn_begin;
25 my $builder = t
::lib
::TestBuilder
->new;
26 my $dbh = C4
::Context
->dbh;
29 $dbh->do('DELETE FROM import_batches');
31 my $sample_import_batch1 = {
35 overlay_action
=> 'create_new',
36 nomatch_action
=> 'create_new',
37 item_action
=> 'always_add',
38 import_status
=> 'staged',
39 batch_type
=> 'z3950',
40 file_name
=> 'test.mrc',
42 record_type
=> 'auth',
45 my $sample_import_batch2 = {
49 overlay_action
=> 'create_new',
50 nomatch_action
=> 'create_new',
51 item_action
=> 'always_add',
52 import_status
=> 'staged',
53 batch_type
=> 'z3950',
54 file_name
=> 'test.mrc',
56 record_type
=> 'auth',
59 my $id_import_batch1 = C4
::ImportBatch
::AddImportBatch
($sample_import_batch1);
60 my $id_import_batch2 = C4
::ImportBatch
::AddImportBatch
($sample_import_batch2);
62 like
( $id_import_batch1, '/^\d+$/', "AddImportBatch for sample_import_batch1 return an id" );
63 like
( $id_import_batch2, '/^\d+$/', "AddImportBatch for sample_import_batch2 return an id" );
66 my $importbatch2 = C4
::ImportBatch
::GetImportBatch
( $id_import_batch2 );
67 delete $importbatch2->{upload_timestamp
};
68 delete $importbatch2->{import_batch_id
};
69 delete $importbatch2->{num_records
};
70 delete $importbatch2->{num_items
};
72 is_deeply
( $importbatch2, $sample_import_batch2,
73 "GetImportBatch returns the right informations about $sample_import_batch2" );
75 my $importbatch1 = C4
::ImportBatch
::GetImportBatch
( $id_import_batch1 );
76 delete $importbatch1->{upload_timestamp
};
77 delete $importbatch1->{import_batch_id
};
78 delete $importbatch1->{num_records
};
79 delete $importbatch1->{num_items
};
81 is_deeply
( $importbatch1, $sample_import_batch1,
82 "GetImportBatch returns the right informations about $sample_import_batch1" );
84 my $record = MARC
::Record
->new;
85 # FIXME Create another MARC::Record which won't be modified
86 # AddItemsToImportBiblio will remove the items field from the record passed in parameter.
87 my $original_record = MARC
::Record
->new;
88 $record->leader('03174nam a2200445 a 4500');
89 $original_record->leader('03174nam a2200445 a 4500');
90 my ($item_tag, $item_subfield) = C4
::Biblio
::GetMarcFromKohaField
('items.itemnumber','');
94 a
=> 'Knuth, Donald Ervin',
99 a
=> 'The art of computer programming',
100 c
=> 'Donald E. Knuth.',
104 a
=> 'Computer programming.',
115 i
=> 'my item part 2',
118 $record->append_fields(@fields);
119 $original_record->append_fields(@fields);
120 my $import_record_id = AddBiblioToBatch
( $id_import_batch1, 0, $record, 'utf8', int(rand(99999)), 0 );
121 AddItemsToImportBiblio
( $id_import_batch1, $import_record_id, $record, 0 );
123 my $record_from_import_biblio_with_items = C4
::ImportBatch
::GetRecordFromImportBiblio
( $import_record_id, 'embed_items' );
124 $original_record->leader($record_from_import_biblio_with_items->leader());
125 is_deeply
( $record_from_import_biblio_with_items, $original_record, 'GetRecordFromImportBiblio should return the record with items if specified' );
126 $original_record->delete_fields($original_record->field($item_tag)); #Remove items fields
127 my $record_from_import_biblio_without_items = C4
::ImportBatch
::GetRecordFromImportBiblio
( $import_record_id );
128 $original_record->leader($record_from_import_biblio_without_items->leader());
129 is_deeply
( $record_from_import_biblio_without_items, $original_record, 'GetRecordFromImportBiblio should return the record without items by default' );
131 # Add a few tests for GetItemNumbersFromImportBatch
132 my @a = GetItemNumbersFromImportBatch
( $id_import_batch1 );
133 is
( @a, 0, 'No item numbers expected since we did not commit' );
134 my $itemno = $builder->build({ source
=> 'Item' })->{itemnumber
};
135 # Link this item to the import item to fool GetItemNumbersFromImportBatch
136 my $sql = "UPDATE import_items SET itemnumber=? WHERE import_record_id=?";
137 $dbh->do( $sql, undef, $itemno, $import_record_id );
138 @a = GetItemNumbersFromImportBatch
( $id_import_batch1 );
139 is
( @a, 2, 'Expecting two items now' );
140 is
( $a[0], $itemno, 'Check the first returned itemnumber' );
141 # Now delete the item and check again
142 $dbh->do( "DELETE FROM items WHERE itemnumber=?", undef, $itemno );
143 @a = GetItemNumbersFromImportBatch
( $id_import_batch1 );
144 is
( @a, 0, 'No item numbers expected since we deleted the item' );
145 $dbh->do( $sql, undef, undef, $import_record_id ); # remove link again
148 my $sample_import_batch3 = {
152 overlay_action
=> 'create_new',
153 nomatch_action
=> 'create_new',
154 item_action
=> 'always_add',
155 import_status
=> 'staged',
156 batch_type
=> 'z3950',
157 file_name
=> 'test.mrc',
159 record_type
=> 'auth',
162 my $id_import_batch3 = C4
::ImportBatch
::AddImportBatch
($sample_import_batch3);
165 C4
::ImportBatch
::CleanBatch
( $id_import_batch3 );
166 my $batch3_clean = $dbh->do('SELECT * FROM import_records WHERE import_batch_id = "$id_import_batch3"');
167 is
( $batch3_clean, "0E0", "Batch 3 has been cleaned" );
170 C4
::ImportBatch
::DeleteBatch
( $id_import_batch3 );
171 my $batch3_results = $dbh->do('SELECT * FROM import_batches WHERE import_batch_id = "$id_import_batch3"');
172 is
( $batch3_results, "0E0", "Batch 3 has been deleted");
174 subtest
"RecordsFromMarcPlugin" => sub {
178 my ( $fh, $name ) = tempfile
();
183 245,a
= Silence
in the library
187 245,a
= Noise
in the library
|;
190 t
::lib
::Mocks
::mock_config
( 'enable_plugins', 1 );
191 my ( $plugin ) = Koha
::Plugins
->new->GetPlugins({ metadata
=> { name
=> 'MarcFieldValues' } });
192 isnt
( $plugin, undef, "Plugin found" );
193 my $records = C4
::ImportBatch
::RecordsFromMarcPlugin
( $name, ref $plugin, 'UTF-8' );
194 is
( @
$records, 2, 'Two results returned' );
195 is
( ref $records->[0], 'MARC::Record', 'Returned MARC::Record object' );
196 is
( $records->[0]->subfield('245', 'a'), 'Silence in the library',
197 'Checked one field in first record' );
198 is
( $records->[1]->subfield('100', 'a'), 'Another',
199 'Checked one field in second record' );
202 $schema->storage->txn_rollback;