Koha/t/db_dependent/Koha/Ticket.t
Katrin Fischer 9a8a534c8a
Bug 36758: (QA follow-up) Tidy Ticket.t
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
2024-08-09 18:44:53 +02:00

390 lines
13 KiB
Perl
Executable file

#!/usr/bin/perl
# Copyright 2023 Koha Development team
#
# 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 => 8;
use t::lib::TestBuilder;
use t::lib::Mocks;
use Koha::Database;
my $builder = t::lib::TestBuilder->new;
my $schema = Koha::Database->new->schema;
subtest 'reporter() tests' => sub {
plan tests => 2;
$schema->storage->txn_begin;
my $patron = $builder->build_object({ class => 'Koha::Patrons' });
my $ticket = $builder->build_object(
{
class => 'Koha::Tickets',
value => {
reporter_id => $patron->id
}
}
);
my $reporter = $ticket->reporter;
is( ref($reporter), 'Koha::Patron', 'Koha::Ticket->reporter returns a Koha::Patron object' );
is( $reporter->id, $patron->id, 'Koha::Ticket->reporter returns the right Koha::Patron' );
$schema->storage->txn_rollback;
};
subtest 'assignee() tests' => sub {
plan tests => 2;
$schema->storage->txn_begin;
my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
my $ticket = $builder->build_object(
{
class => 'Koha::Tickets',
value => { assignee_id => $patron->id }
}
);
my $assignee = $ticket->assignee;
is( ref($assignee), 'Koha::Patron', 'Koha::Ticket->assignee returns a Koha::Patron object' );
is( $assignee->id, $patron->id, 'Koha::Ticket->assignee returns the right Koha::Patron' );
$schema->storage->txn_rollback;
};
subtest 'resolver() tests' => sub {
plan tests => 2;
$schema->storage->txn_begin;
my $patron = $builder->build_object({ class => 'Koha::Patrons' });
my $ticket = $builder->build_object(
{
class => 'Koha::Tickets',
value => {
resolver_id => $patron->id
}
}
);
my $resolver = $ticket->resolver;
is( ref($resolver), 'Koha::Patron', 'Koha::Ticket->resolver returns a Koha::Patron object' );
is( $resolver->id, $patron->id, 'Koha::Ticket->resolver returns the right Koha::Patron' );
$schema->storage->txn_rollback;
};
subtest 'biblio() tests' => sub {
plan tests => 2;
$schema->storage->txn_begin;
my $biblio = $builder->build_object({ class => 'Koha::Biblios' });
my $ticket = $builder->build_object(
{
class => 'Koha::Tickets',
value => {
biblio_id => $biblio->id
}
}
);
my $related_biblio = $ticket->biblio;
is( ref($related_biblio), 'Koha::Biblio', 'Koha::Ticket->biblio returns a Koha::Biblio object' );
is( $related_biblio->id, $biblio->id, 'Koha::Ticket->biblio returns the right Koha::Biblio' );
$schema->storage->txn_rollback;
};
subtest 'updates() tests' => sub {
plan tests => 4;
$schema->storage->txn_begin;
my $ticket = $builder->build_object( { class => 'Koha::Tickets' } );
my $updates = $ticket->updates;
is( ref($updates), 'Koha::Ticket::Updates', 'Koha::Ticket->updates should return a Koha::Ticket::Updates object' );
is( $updates->count, 0, 'Koha::Ticket->updates should return a count of 0 when there are no related updates' );
# Add two updates
foreach (1..2) {
$builder->build_object(
{
class => 'Koha::Ticket::Updates',
value => { ticket_id => $ticket->id }
}
);
}
$updates = $ticket->updates;
is( ref($updates), 'Koha::Ticket::Updates', 'Koha::Ticket->updates should return a Koha::Ticket::Updates object' );
is( $updates->count, 2, 'Koha::Ticket->updates should return the correct number of updates' );
$schema->storage->txn_rollback;
};
subtest 'add_update() tests' => sub {
plan tests => 2;
$schema->storage->txn_begin;
my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
my $ticket = $builder->build_object( { class => 'Koha::Tickets' } );
my $update = $ticket->add_update(
{ user_id => $patron->id, public => 1, message => "Some message" } );
is( ref($update), 'Koha::Ticket::Update',
'Koha::Ticket->add_update should return a Koha::Ticket::Update object'
);
my $updates = $ticket->updates;
is( $updates->count, 1,
'Koha::Ticket->add_update should have added 1 update linked to this ticket'
);
$schema->storage->txn_rollback;
};
subtest 'store() tests' => sub {
plan tests => 3;
subtest 'acknowledgement notice trigger' => sub {
plan tests => 4;
$schema->storage->txn_begin;
my $patron = $builder->build_object( { class => "Koha::Patrons" } );
my $biblio = $builder->build_sample_biblio();
my $new_ticket = Koha::Ticket->new(
{
reporter_id => $patron->id,
title => "Testing ticket",
body => "Testing ticket message",
biblio_id => $biblio->id
}
)->store();
is( ref($new_ticket), 'Koha::Ticket',
'Koha::Ticket->store() returned the Koha::Ticket object' );
my $notices =
Koha::Notice::Messages->search( { borrowernumber => $patron->id } );
is( $notices->count, 1,
'One acknowledgement notice queued for the ticket reporter' );
my $THE_notice = $notices->next;
isnt( $THE_notice->status, 'pending',
'Acknowledgement notice is sent immediately' );
$new_ticket->set( { title => "Changed title" } )->store();
$notices =
Koha::Notice::Messages->search( { borrowernumber => $patron->id } );
is( $notices->count, 1,
'Further acknowledgement notices are not queud on subsequent stores'
);
$schema->storage->txn_rollback;
};
subtest 'cataloger notice trigger' => sub {
plan tests => 4;
$schema->storage->txn_begin;
my $catemail = 'catalogers@testmail.com';
t::lib::Mocks::mock_preference( 'CatalogerEmails', $catemail );
my $patron = $builder->build_object( { class => "Koha::Patrons" } );
my $biblio = $builder->build_sample_biblio();
my $new_ticket = Koha::Ticket->new(
{
reporter_id => $patron->id,
title => "Testing ticket",
body => "Testing ticket message",
biblio_id => $biblio->id
}
)->store();
is( ref($new_ticket), 'Koha::Ticket',
'Koha::Ticket->store() returned the Koha::Ticket object' );
my $notices =
Koha::Notice::Messages->search( { to_address => $catemail } );
is( $notices->count, 1,
'One notification notice queued for the catalogers when ticket reported' );
my $THE_notice = $notices->next;
isnt( $THE_notice->status, 'pending',
'Notification notice is sent immediately' );
$new_ticket->set( { title => "Changed title" } )->store();
$notices =
Koha::Notice::Messages->search( { to_address => $catemail } );
is( $notices->count, 1,
'Further notification notices are not queud on subsequent stores'
);
$schema->storage->txn_rollback;
};
subtest 'assignment notice trigger' => sub {
plan tests => 7;
$schema->storage->txn_begin;
my $patron = $builder->build_object( { class => "Koha::Patrons" } );
my $assignee = $builder->build_object( { class => "Koha::Patrons" } );
my $biblio = $builder->build_sample_biblio();
my $librarian = $builder->build_object( { class => "Koha::Patrons" } );
t::lib::Mocks::mock_userenv( { patron => $librarian } );
my $new_ticket = Koha::Ticket->new(
{
reporter_id => $patron->id,
assignee_id => $assignee->id,
title => "Testing ticket",
body => "Testing ticket message",
biblio_id => $biblio->id
}
)->store();
is(
ref($new_ticket), 'Koha::Ticket',
'Koha::Ticket->store() returned the Koha::Ticket object'
);
my $notices = Koha::Notice::Messages->search( { borrowernumber => $assignee->id } );
is(
$notices->count, 1,
'One assignment notice queued for the ticket assignee at ticket creation'
);
my $THE_notice = $notices->next;
isnt(
$THE_notice->status, 'pending',
'Assignment notice is sent immediately'
);
$new_ticket->set( { title => "Changed title" } )->store();
$notices = Koha::Notice::Messages->search( { borrowernumber => $assignee->id } );
is(
$notices->count, 1,
"Further assignment notices are not queud for subsequent stores that don't set assignee"
);
$new_ticket->set( { assignee_id => $assignee->id } )->store();
$notices = Koha::Notice::Messages->search( { borrowernumber => $assignee->id } );
is(
$notices->count, 1,
"Further assignment notices are not queud for subsequent stores that don't change assignee"
);
my $assignee2 = $builder->build_object( { class => "Koha::Patrons" } );
$new_ticket->set( { assignee_id => $assignee2->id } )->store();
$notices = Koha::Notice::Messages->search( { borrowernumber => $assignee2->id } );
is(
$notices->count, 1,
'New assignment notice queued for a change of ticket assignee'
);
$new_ticket->set( { assignee_id => $librarian->id } )->store();
$notices = Koha::Notice::Messages->search( { borrowernumber => $librarian->id } );
is(
$notices->count, 0,
'Assignment notice not queued for self-assignments'
);
$schema->storage->txn_rollback;
};
};
subtest 'strings_map() tests' => sub {
plan tests => 16;
$schema->storage->txn_begin;
my $status_av = $builder->build_object(
{
class => 'Koha::AuthorisedValues',
value => {
authorised_value => 'TEST',
category => 'TICKET_STATUS',
lib => 'internal description',
lib_opac => 'public description',
}
}
);
my $ticket = $builder->build_object(
{
class => 'Koha::Tickets',
value => { status => 'TEST' }
}
);
my $strings = $ticket->strings_map();
ok( exists $strings->{status}, "'status' entry exists" );
is( $strings->{status}->{str}, $status_av->lib, "'str' set to av->lib" );
is( $strings->{status}->{type}, 'av', "'type' is 'av'" );
is( $strings->{status}->{category}, 'TICKET_STATUS', "'category' exists and set to 'TICKET_STATUS'" );
$strings = $ticket->strings_map( { public => 1 } );
ok( exists $strings->{status}, "'status' entry exists when called in public" );
is( $strings->{status}->{str}, $status_av->lib_opac, "'str' set to av->lib_opac when called in public" );
is( $strings->{status}->{type}, 'av', "'type' is 'av'" );
is( $strings->{status}->{category}, 'TICKET_STATUS', "'category' exists and set to 'TICKET_STATUS'" );
my $resolution_av = $builder->build_object(
{
class => 'Koha::AuthorisedValues',
value => {
authorised_value => 'RES_TEST',
category => 'TICKET_RESOLUTION',
lib => 'internal resolution description',
lib_opac => 'public resolution description',
}
}
);
$ticket = $builder->build_object(
{
class => 'Koha::Tickets',
value => { status => 'RES_TEST' }
}
);
$strings = $ticket->strings_map();
ok( exists $strings->{status}, "'status' entry exists for resolution fallthrough" );
is( $strings->{status}->{str}, $resolution_av->lib, "'str' set to av->lib" );
is( $strings->{status}->{type}, 'av', "'type' is 'av'" );
is( $strings->{status}->{category}, 'TICKET_STATUS', "'category' exists and set to 'TICKET_STATUS'" );
$strings = $ticket->strings_map( { public => 1 } );
ok( exists $strings->{status}, "'status' entry exists for resolution fallthrough when called in public" );
is( $strings->{status}->{str}, $resolution_av->lib_opac, "'str' set to av->lib_opac when called in public" );
is( $strings->{status}->{type}, 'av', "'type' is 'av'" );
is( $strings->{status}->{category}, 'TICKET_STATUS', "'category' exists and set to 'TICKET_STATUS'" );
$schema->storage->txn_rollback;
};