Jonathan Druart
0bc2990b00
We can simply use get here Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
67 lines
2.4 KiB
Perl
Executable file
67 lines
2.4 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it under the
|
|
# terms of the GNU General Public License as published by the Free Software
|
|
# Foundation; either version 3 of the License, or (at your option) any later
|
|
# version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with Koha; if not, see <http://www.gnu.org/licenses>.
|
|
|
|
use Modern::Perl;
|
|
|
|
use Test::More tests => 1;
|
|
|
|
use C4::Context;
|
|
use Koha::Caches;
|
|
use Koha::Database;
|
|
use Koha::MarcSubfieldStructures;
|
|
use Koha::Template::Plugin::AdditionalContents;
|
|
|
|
use t::lib::TestBuilder;
|
|
use t::lib::Mocks;
|
|
|
|
my $schema = Koha::Database->schema;
|
|
my $builder = t::lib::TestBuilder->new;
|
|
|
|
$schema->storage->txn_begin;
|
|
|
|
subtest 'get' => sub {
|
|
plan tests => 2;
|
|
|
|
my $additional_contents = Koha::Template::Plugin::AdditionalContents->get({ category => 'news', location => ['opac_only', 'staff_and_opac'], lang => 'default', library => '%' });
|
|
my $before_count = $additional_contents ? $additional_contents->{content}->count() : 0;
|
|
my $additional_content = $builder->build_object({
|
|
class => 'Koha::AdditionalContents',
|
|
value => {
|
|
category => 'news',
|
|
location => 'opac_only',
|
|
branchcode => undef
|
|
}
|
|
});
|
|
$builder->build_object(
|
|
{
|
|
class => 'Koha::AdditionalContentsLocalizations',
|
|
value => {
|
|
additional_content_id => $additional_content->id,
|
|
lang => 'default',
|
|
}
|
|
}
|
|
);
|
|
$additional_contents = Koha::Template::Plugin::AdditionalContents->get({ category => 'news', location => ['opac_only', 'staff_and_opac'], lang => 'default' });
|
|
is( $additional_contents->{content}->count, $before_count + 1, "We get the additional one we added");
|
|
|
|
$additional_contents = Koha::Template::Plugin::AdditionalContents->get({ category => 'news', location => ['opac_only', 'staff_and_opac'], lang => 'default', blocktitle => 'blockhead' });
|
|
|
|
is( $additional_contents->{blocktitle}, 'blockhead', "Block title is passed through");
|
|
|
|
|
|
};
|
|
|
|
$schema->storage->txn_rollback;
|