Bug 26384: Fix executable flags
[koha.git] / t / db_dependent / Labels / t_Label.t
blob0d69d05312944f20c44362924f32897898563a5b
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Copyright 2020 Koha Development team
6 # Copyright (C) 2017 Mark Tompsett
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 use Modern::Perl;
23 use Test::More tests => 4;
24 use t::lib::TestBuilder;
25 use t::lib::Mocks;
27 use MARC::Record;
28 use MARC::Field;
29 use Data::Dumper;
31 use C4::Items;
32 use C4::Biblio;
33 use C4::Labels::Layout;
35 use Koha::Database;
37 use_ok('C4::Labels::Label');
39 my $database = Koha::Database->new();
40 my $schema = $database->schema();
41 $schema->storage->txn_begin();
43 my $batch_id;
44 my ( $llx, $lly ) = ( 0, 0 );
45 my $frameworkcode = q{};
47 ## Setup Test
48 my $builder = t::lib::TestBuilder->new;
50 # Add branch
51 my $branch_1 = $builder->build( { source => 'Branch' } )->{branchcode};
53 # Add categories
54 my $category_1 = $builder->build( { source => 'Category' } )->{categorycode};
56 # Add an item type
57 my $itemtype =
58 $builder->build( { source => 'Itemtype', value => { notforloan => undef } } )
59 ->{itemtype};
61 t::lib::Mocks::mock_userenv({ branchcode => $branch_1 });
63 my $bibnum = $builder->build_sample_biblio({ frameworkcode => $frameworkcode })->biblionumber;
65 # Create a helper item instance for testing
66 my $item = $builder->build_sample_item(
68 library => $branch_1,
69 itype => $itemtype,
70 biblionumber => $bibnum,
71 enumchron => "enum",
72 copynumber => "copynum"
75 my $itemnumber = $item->itemnumber;
77 # Modify item; setting barcode.
78 my $testbarcode = '97531';
79 $item->barcode($testbarcode)->store;
81 my $layout = C4::Labels::Layout->new( layout_name => 'TEST' );
83 my $dummy_template_values = {
84 creator => 'Labels',
85 profile_id => 0,
86 template_code => 'Avery 5160 | 1 x 2-5/8',
87 template_desc => '3 columns, 10 rows of labels',
88 page_width => 8.5,
89 page_height => 11,
90 label_width => 2.63,
91 label_height => 1,
92 top_text_margin => 0.139,
93 left_text_margin => 0.0417,
94 top_margin => 0.35,
95 left_margin => 0.23,
96 cols => 3,
97 rows => 10,
98 col_gap => 0.13,
99 row_gap => 0,
100 units => 'INCH',
101 template_stat => 1,
104 my $label_info = {
105 batch_id => $batch_id,
106 item_number => $item->itemnumber,
107 llx => $llx,
108 lly => $lly,
109 width => $dummy_template_values->{'label_width'},
110 height => $dummy_template_values->{'label_height'},
111 top_text_margin => $dummy_template_values->{'top_text_margin'},
112 left_text_margin => $dummy_template_values->{'left_text_margin'},
113 barcode_type => $layout->get_attr('barcode_type'),
114 printing_type => 'BIB',
115 guidebox => $layout->get_attr('guidebox'),
116 oblique_title => $layout->get_attr('oblique_title'),
117 font => $layout->get_attr('font'),
118 font_size => $layout->get_attr('font_size'),
119 callnum_split => $layout->get_attr('callnum_split'),
120 justify => $layout->get_attr('text_justify'),
121 text_wrap_cols => $layout->get_text_wrap_cols(
122 label_width => $dummy_template_values->{'label_width'},
123 left_text_margin => $dummy_template_values->{'left_text_margin'}
127 my $format_string = '100a 245a';
128 my $label = C4::Labels::Label->new(%$label_info, format_string => $format_string);
129 my $label_text = $label->create_label();
130 ok( defined $label_text, 'Label Text Value defined.' );
131 my $label_csv_data = $label->csv_data();
132 is_deeply( $label_csv_data,
133 [ sprintf( "%s %s", $item->biblio->author, $item->biblio->title ) ] );
135 $format_string = '100a 245a,enumchron copynumber';
136 $label = C4::Labels::Label->new(%$label_info, format_string => $format_string);
137 $label_csv_data = $label->csv_data();
138 is_deeply(
139 $label_csv_data,
141 sprintf( "%s %s", $item->biblio->author, $item->biblio->title ),
142 sprintf( "%s %s", $item->enumchron, $item->copynumber )
146 $schema->storage->txn_rollback();