Bug 26922: Regression tests
[koha.git] / t / db_dependent / ImportBatch.t
blob863c9037289da5fca53571028e65c3955bd2bbd9
1 #!/usr/bin/perl
3 use Modern::Perl;
4 use Test::More tests => 15;
5 use utf8;
6 use File::Basename;
7 use File::Temp qw/tempfile/;
9 use t::lib::Mocks;
10 use t::lib::TestBuilder;
12 use Koha::Database;
13 use Koha::Plugins;
15 BEGIN {
16 # Mock pluginsdir before loading Plugins module
17 my $path = dirname(__FILE__) . '/../lib';
18 t::lib::Mocks::mock_config( 'pluginsdir', $path );
19 use_ok('C4::ImportBatch');
22 # Start transaction
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;
28 # clear
29 $dbh->do('DELETE FROM import_batches');
31 my $sample_import_batch1 = {
32 matcher_id => 1,
33 template_id => 1,
34 branchcode => 'QRT',
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',
41 comments => 'test',
42 record_type => 'auth',
45 my $sample_import_batch2 = {
46 matcher_id => 2,
47 template_id => 2,
48 branchcode => 'QRZ',
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',
55 comments => 'test',
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" );
65 #Test GetImportBatch
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};
71 delete $importbatch2->{profile_id};
72 delete $importbatch2->{profile};
74 is_deeply( $importbatch2, $sample_import_batch2,
75 "GetImportBatch returns the right informations about $sample_import_batch2" );
77 my $importbatch1 = C4::ImportBatch::GetImportBatch( $id_import_batch1 );
78 delete $importbatch1->{upload_timestamp};
79 delete $importbatch1->{import_batch_id};
80 delete $importbatch1->{num_records};
81 delete $importbatch1->{num_items};
82 delete $importbatch1->{profile_id};
83 delete $importbatch1->{profile};
85 is_deeply( $importbatch1, $sample_import_batch1,
86 "GetImportBatch returns the right informations about $sample_import_batch1" );
88 my $record = MARC::Record->new;
89 # FIXME Create another MARC::Record which won't be modified
90 # AddItemsToImportBiblio will remove the items field from the record passed in parameter.
91 my $original_record = MARC::Record->new;
92 $record->leader('03174nam a2200445 a 4500');
93 $original_record->leader('03174nam a2200445 a 4500');
94 my ($item_tag, $item_subfield) = C4::Biblio::GetMarcFromKohaField( 'items.itemnumber' );
95 my @fields = (
96 MARC::Field->new(
97 100, '1', ' ',
98 a => 'Knuth, Donald Ervin',
99 d => '1938',
101 MARC::Field->new(
102 245, '1', '4',
103 a => 'The art of computer programming',
104 c => 'Donald E. Knuth.',
106 MARC::Field->new(
107 650, ' ', '0',
108 a => 'Computer programming.',
109 9 => '462',
111 MARC::Field->new(
112 $item_tag, ' ', ' ',
113 e => 'my edition ❤',
114 i => 'my item part',
116 MARC::Field->new(
117 $item_tag, ' ', ' ',
118 e => 'my edition 2',
119 i => 'my item part 2',
122 $record->append_fields(@fields);
123 $original_record->append_fields(@fields);
124 my $import_record_id = AddBiblioToBatch( $id_import_batch1, 0, $record, 'utf8', int(rand(99999)), 0 );
125 AddItemsToImportBiblio( $id_import_batch1, $import_record_id, $record, 0 );
127 my $record_from_import_biblio_with_items = C4::ImportBatch::GetRecordFromImportBiblio( $import_record_id, 'embed_items' );
128 $original_record->leader($record_from_import_biblio_with_items->leader());
129 is_deeply( $record_from_import_biblio_with_items, $original_record, 'GetRecordFromImportBiblio should return the record with items if specified' );
130 my $utf8_field = $record_from_import_biblio_with_items->subfield($item_tag, 'e');
131 is($utf8_field, 'my edition ❤');
132 $original_record->delete_fields($original_record->field($item_tag)); #Remove items fields
133 my $record_from_import_biblio_without_items = C4::ImportBatch::GetRecordFromImportBiblio( $import_record_id );
134 $original_record->leader($record_from_import_biblio_without_items->leader());
135 is_deeply( $record_from_import_biblio_without_items, $original_record, 'GetRecordFromImportBiblio should return the record without items by default' );
137 # Add a few tests for GetItemNumbersFromImportBatch
138 my @a = GetItemNumbersFromImportBatch( $id_import_batch1 );
139 is( @a, 0, 'No item numbers expected since we did not commit' );
140 my $itemno = $builder->build_sample_item->itemnumber;
141 # Link this item to the import item to fool GetItemNumbersFromImportBatch
142 my $sql = "UPDATE import_items SET itemnumber=? WHERE import_record_id=?";
143 $dbh->do( $sql, undef, $itemno, $import_record_id );
144 @a = GetItemNumbersFromImportBatch( $id_import_batch1 );
145 is( @a, 2, 'Expecting two items now' );
146 is( $a[0], $itemno, 'Check the first returned itemnumber' );
147 # Now delete the item and check again
148 $dbh->do( "DELETE FROM items WHERE itemnumber=?", undef, $itemno );
149 @a = GetItemNumbersFromImportBatch( $id_import_batch1 );
150 is( @a, 0, 'No item numbers expected since we deleted the item' );
151 $dbh->do( $sql, undef, undef, $import_record_id ); # remove link again
153 # fresh data
154 my $sample_import_batch3 = {
155 matcher_id => 3,
156 template_id => 3,
157 branchcode => 'QRT',
158 overlay_action => 'create_new',
159 nomatch_action => 'create_new',
160 item_action => 'always_add',
161 import_status => 'staged',
162 batch_type => 'z3950',
163 file_name => 'test.mrc',
164 comments => 'test',
165 record_type => 'auth',
168 my $id_import_batch3 = C4::ImportBatch::AddImportBatch($sample_import_batch3);
170 # Test CleanBatch
171 C4::ImportBatch::CleanBatch( $id_import_batch3 );
172 my $batch3_clean = $dbh->do('SELECT * FROM import_records WHERE import_batch_id = "$id_import_batch3"');
173 is( $batch3_clean, "0E0", "Batch 3 has been cleaned" );
175 # Test DeleteBatch
176 C4::ImportBatch::DeleteBatch( $id_import_batch3 );
177 my $batch3_results = $dbh->do('SELECT * FROM import_batches WHERE import_batch_id = "$id_import_batch3"');
178 is( $batch3_results, "0E0", "Batch 3 has been deleted");
180 subtest "RecordsFromMarcPlugin" => sub {
181 plan tests => 5;
183 # Create a test file
184 my ( $fh, $name ) = tempfile();
185 print $fh q|
186 003 = NLAmRIJ
187 100,a = Author
188 245,ind2 = 0
189 245,a = Silence in the library
190 500 , a= Some note
192 100,a = Another
193 245,a = Noise in the library|;
194 close $fh;
196 t::lib::Mocks::mock_config( 'enable_plugins', 1 );
198 my $plugins = Koha::Plugins->new;
199 $plugins->InstallPlugins;
200 my ($plugin) = $plugins->GetPlugins({ all => 1, metadata => { name => 'MarcFieldValues' } });
201 isnt( $plugin, undef, "Plugin found" );
202 my $records = C4::ImportBatch::RecordsFromMarcPlugin( $name, ref $plugin, 'UTF-8' );
203 is( @$records, 2, 'Two results returned' );
204 is( ref $records->[0], 'MARC::Record', 'Returned MARC::Record object' );
205 is( $records->[0]->subfield('245', 'a'), 'Silence in the library',
206 'Checked one field in first record' );
207 is( $records->[1]->subfield('100', 'a'), 'Another',
208 'Checked one field in second record' );
211 $schema->storage->txn_rollback;