Bug 24606: Regression tests
[koha.git] / t / db_dependent / Koha / Item / Template.t
1 #!/usr/bin/perl
2
3 # Copyright 2022 Koha Development team
4 #
5 # This file is part of Koha
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21
22 use Encode;
23 use JSON;
24
25 use Koha::Database;
26
27 use t::lib::TestBuilder;
28
29 use Test::More tests => 2;
30
31 my $schema  = Koha::Database->new->schema;
32 my $builder = t::lib::TestBuilder->new;
33
34 use_ok("Koha::Item::Template");
35
36 subtest 'Serializing and deserializing contents' => sub {
37
38     plan tests => 2;
39
40     $schema->storage->txn_begin;
41
42     my $data = {
43         location => 'test',
44         cost    => "2\x{20ac}",
45     };
46
47     my $template = Koha::Item::Template->new(
48         {   name     => 'My template',
49             contents => $data,
50         }
51     )->store();
52
53     my $encoded_data;
54     foreach my $key ( keys %{$data} ) {
55         $encoded_data->{$key} = Encode::encode('UTF-8', $data->{$key});
56     }
57
58     is( $template->contents, JSON->new->utf8->encode($data), 'Contents serialized correctly' );
59
60     is_deeply(
61         $template->decoded_contents,
62         $encoded_data,
63         'Contents deserialized and UTF-8 encoded correctly'
64     );
65
66     $schema->storage->txn_rollback;
67 };