Bug 15496: (QA follow-up) Change success status on api
[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;
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 => 9;
40
41         run_tests('csv');
42     };
43
44     subtest 'ODS tests' => sub {
45         plan tests => 9;
46
47         run_tests('ods');
48     };
49
50     subtest 'XML tests' => sub {
51         plan tests => 9;
52
53         run_tests('xml');
54     };
55 };
56
57 sub run_tests {
58
59     my ($format) = @_;
60
61     $schema->storage->txn_begin;
62
63     my $data_filepath = dirname(__FILE__) . "/data/frameworks/biblio_framework.$format";
64     my $fw_1 = $builder->build_object({ class => 'Koha::BiblioFrameworks' });
65
66     my $result = C4::ImportExportFramework::ImportFramework( $data_filepath, $fw_1->id );
67     is( $result, 0, 'Import successful, no tags removed' );
68
69     my $nb_tags = $schema->resultset('MarcTagStructure')->search({ frameworkcode => $fw_1->id })->count;
70     is( $nb_tags, 4, "4 tags should have been imported" );
71
72     my $nb_subfields = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw_1->id })->count;
73     is( $nb_subfields, 12, "12 subfields should have been imported" );
74
75     # bad file tests
76     my $fw_2 = $builder->build_object({ class => 'Koha::BiblioFrameworks' });
77     $result = C4::ImportExportFramework::ImportFramework( '', $fw_2->id );
78
79     is( $result, -1, 'Bad file makes it return -1' );
80
81     $nb_tags = $schema->resultset('MarcTagStructure')->search({ frameworkcode => $fw_2->id })->count;
82     is( $nb_tags, 0, "0 tags should have been imported" );
83
84     $nb_subfields = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw_2->id })->count;
85     is( $nb_subfields, 0, "0 subfields should have been imported" );
86
87     # framework overwrite
88     $data_filepath = dirname(__FILE__) . "/data/frameworks/biblio_framework_smaller.$format";
89
90     $result = C4::ImportExportFramework::ImportFramework( $data_filepath, $fw_1->id );
91     is( $result, 5, 'Smaller fw import successful, 4 tags removed' );
92
93     $nb_tags = $schema->resultset('MarcTagStructure')->search({ frameworkcode => $fw_1->id })->count;
94     is( $nb_tags, 3, "3 tags should have been imported" );
95
96     $nb_subfields = Koha::MarcSubfieldStructures->search({ frameworkcode => $fw_1->id })->count;
97     is( $nb_subfields, 8, "8 subfields should have been imported" );
98
99     $schema->storage->txn_rollback;
100 }