#!/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 => 3;
use Test::Exception;

use Koha::Database;

use t::lib::Mocks;
use t::lib::TestBuilder;

my $schema  = Koha::Database->new->schema;
my $builder = t::lib::TestBuilder->new;

subtest 'anonymize() tests' => sub {

    plan tests => 8;

    $schema->storage->txn_begin;

    my $patron = $builder->build_object( { class => 'Koha::Patrons' } );

    is( $patron->old_holds->count, 0, 'Patron has no old holds' );

    my $hold_1 = $builder->build_object(
        {
            class => 'Koha::Old::Holds',
            value => { borrowernumber => $patron->id }
        }
    );
    my $hold_2 = $builder->build_object(
        {
            class => 'Koha::Old::Holds',
            value => { borrowernumber => $patron->id }
        }
    );

    is( $patron->old_holds->count, 2, 'Patron has 2 completed holds' );

    t::lib::Mocks::mock_preference( 'AnonymousPatron', undef );

    throws_ok
        { $hold_1->anonymize; }
        'Koha::Exceptions::SysPref::NotSet',
        'Exception thrown because AnonymousPatron not set';

    is( $@->syspref, 'AnonymousPatron', 'syspref parameter is correctly passed' );
    is( $patron->old_holds->count, 2, 'No changes, patron has 2 linked completed holds' );

    is( $hold_1->borrowernumber, $patron->id,
        'Anonymized hold not linked to patron' );
    is( $hold_2->borrowernumber, $patron->id,
        'Not anonymized hold still linked to patron' );

    my $anonymous_patron =
      $builder->build_object( { class => 'Koha::Patrons' } );
    t::lib::Mocks::mock_preference( 'AnonymousPatron', $anonymous_patron->id );

    # anonymize second hold
    $hold_2->anonymize;
    $hold_2->discard_changes;
    is( $hold_2->borrowernumber, $anonymous_patron->id,
        'Anonymized hold linked to anonymouspatron' );

    $schema->storage->txn_rollback;
};

subtest 'biblio() tests' => sub {

    plan tests => 3;

    $schema->storage->txn_begin;

    my $hold_1 = $builder->build_object(
        {
            class => 'Koha::Old::Holds',
            value => { biblionumber => undef }
        }
    );

    is( $hold_1->biblio, undef, 'Old hold has no biblionumber, returns undef' );

    my $hold_2 = $builder->build_object(
        {
            class => 'Koha::Old::Holds',
            value => { biblionumber => '' }
        }
    );

    is( $hold_1->biblio, undef, 'Old hold has empty biblionumber, returns undef' );

    my $biblio = $builder->build_object( { class => 'Koha::Biblios' } );

    my $hold_3 = $builder->build_object(
        {
            class => 'Koha::Old::Holds',
            value => { biblionumber => $biblio->biblionumber }
        }
    );

    is_deeply( $hold_3->biblio->unblessed, $biblio->unblessed, 'Old hold has a biblionumber, returns a biblio object' );

    $schema->storage->txn_rollback;
};

subtest 'item/pickup_library() tests' => sub {

    plan tests => 4;

    $schema->storage->txn_begin;

    my $old_hold = $builder->build_object(
        {
            class => 'Koha::Old::Holds',
        }
    );
    is( ref( $old_hold->item ),           'Koha::Item',    '->item should return a Koha::Item object' );
    is( ref( $old_hold->pickup_library ), 'Koha::Library', '->pickup_library should return a Koha::Library object' );

    $old_hold->item->delete;
    $old_hold->pickup_library->delete;

    $old_hold = $old_hold->get_from_storage;    # Be on the safe side

    is( $old_hold->item,           undef, 'Item has been deleted, ->item should return undef' );
    is( $old_hold->pickup_library, undef, 'Library has been deleted, ->pickup_library should return undef' );

    $schema->storage->txn_rollback;
};
