Bug 19532: (follow-up) aria-hidden attr on OPAC, and more
[koha.git] / t / db_dependent / ImportExportFramework.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 Test::More tests => 1;
21
22 use t::lib::TestBuilder;
23
24 use File::Basename qw( dirname );
25
26 use Koha::Database;
27 use Koha::BiblioFrameworks;
28 use Koha::MarcSubfieldStructures;
29 use C4::ImportExportFramework qw( ImportFramework ExportFramework );
30
31 my $schema  = Koha::Database->new->schema;
32 my $builder = t::lib::TestBuilder->new;
33
34 subtest 'ImportFramework() tests' => sub {
35
36     plan tests => 3;
37
38     subtest 'CSV tests' => sub {
39         plan tests => 15;
40
41         run_tests('csv');
42
43         run_csv_no_quoted();
44     };
45
46     subtest 'ODS tests' => sub {
47         plan tests => 15;
48
49         run_tests('ods');
50
51         run_ods_new();
52     };
53
54     subtest 'XML tests' => sub {
55         plan tests => 9;
56
57         run_tests('xml');
58     };
59 };
60
61 sub run_tests {
62
63     my ($format) = @_;
64
65     $schema->storage->txn_begin;
66
67     my $data_filepath = dirname(__FILE__) . "/data/frameworks/biblio_framework.$format";
68     my $fw_1 = $builder->build_object({ class => 'Koha::BiblioFrameworks' });
69
70     my $result = C4::ImportExportFramework::ImportFramework( $data_filepath, $fw_1->id );
71     is( $result, 0, 'Import successful, no tags removed' );
72
73     my $nb_tags = $schema->resultset('MarcTagStructure')->search({ frameworkcode => $fw_1->id })->count;
74     is( $nb_tags, 4, "4 tags should have been imported" );
75
76     my $nb_subfields = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw_1->id })->count;
77     is( $nb_subfields, 12, "12 subfields should have been imported" );
78
79     # bad file tests
80     my $fw_2 = $builder->build_object({ class => 'Koha::BiblioFrameworks' });
81     $result = C4::ImportExportFramework::ImportFramework( '', $fw_2->id );
82
83     is( $result, -1, 'Bad file makes it return -1' );
84
85     $nb_tags = $schema->resultset('MarcTagStructure')->search({ frameworkcode => $fw_2->id })->count;
86     is( $nb_tags, 0, "0 tags should have been imported" );
87
88     $nb_subfields = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw_2->id })->count;
89     is( $nb_subfields, 0, "0 subfields should have been imported" );
90
91     # framework overwrite
92     $data_filepath = dirname(__FILE__) . "/data/frameworks/biblio_framework_smaller.$format";
93
94     $result = C4::ImportExportFramework::ImportFramework( $data_filepath, $fw_1->id );
95     is( $result, 5, 'Smaller fw import successful, 4 tags removed' );
96
97     $nb_tags = $schema->resultset('MarcTagStructure')->search({ frameworkcode => $fw_1->id })->count;
98     is( $nb_tags, 3, "3 tags should have been imported" );
99
100     $nb_subfields = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw_1->id })->count;
101     is( $nb_subfields, 8, "8 subfields should have been imported" );
102
103     $schema->storage->txn_rollback;
104 };
105
106 sub run_csv_no_quoted {
107
108     $schema->storage->txn_begin;
109
110     my $data_filepath = dirname(__FILE__) . "/data/frameworks/biblio_framework_no_quoted.csv";
111     my $fw_1 = $builder->build_object({ class => 'Koha::BiblioFrameworks' });
112
113     my $result = C4::ImportExportFramework::ImportFramework( $data_filepath, $fw_1->id );
114     is( $result, 0, 'Import successful, no tags removed' );
115
116     my $nb_tags = $schema->resultset('MarcTagStructure')->search({ frameworkcode => $fw_1->id })->count;
117     is( $nb_tags, 4, "4 tags should have been imported" );
118
119     my $nb_subfields = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw_1->id })->count;
120     is( $nb_subfields, 12, "12 subfields should have been imported" );
121
122     # bad file tests
123     my $fw_2 = $builder->build_object({ class => 'Koha::BiblioFrameworks' });
124     $result = C4::ImportExportFramework::ImportFramework( '', $fw_2->id );
125
126     is( $result, -1, 'Bad file makes it return -1' );
127
128     $nb_tags = $schema->resultset('MarcTagStructure')->search({ frameworkcode => $fw_2->id })->count;
129     is( $nb_tags, 0, "0 tags should have been imported" );
130
131     $nb_subfields = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw_2->id })->count;
132     is( $nb_subfields, 0, "0 subfields should have been imported" );
133
134     $schema->storage->txn_rollback;
135 };
136
137 sub run_ods_new {
138
139     my ($format) = @_;
140
141     $schema->storage->txn_begin;
142
143     my $data_filepath = dirname(__FILE__) . "/data/frameworks/biblio_framework_new.ods";
144     my $fw_1 = $builder->build_object({ class => 'Koha::BiblioFrameworks' });
145
146     my $result = C4::ImportExportFramework::ImportFramework( $data_filepath, $fw_1->id );
147     is( $result, 0, 'Import successful, no tags removed' );
148
149     my $nb_tags = $schema->resultset('MarcTagStructure')->search({ frameworkcode => $fw_1->id })->count;
150     is( $nb_tags, 5, "5 tags should have been imported" );
151
152     my $nb_subfields = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw_1->id })->count;
153     is( $nb_subfields, 16, "16 subfields should have been imported" );
154
155     # bad file tests
156     my $fw_2 = $builder->build_object({ class => 'Koha::BiblioFrameworks' });
157     $result = C4::ImportExportFramework::ImportFramework( '', $fw_2->id );
158
159     is( $result, -1, 'Bad file makes it return -1' );
160
161     $nb_tags = $schema->resultset('MarcTagStructure')->search({ frameworkcode => $fw_2->id })->count;
162     is( $nb_tags, 0, "0 tags should have been imported" );
163
164     $nb_subfields = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw_2->id })->count;
165     is( $nb_subfields, 0, "0 subfields should have been imported" );
166
167
168     $schema->storage->txn_rollback;
169 };