Kyle M Hall
1f065a12c2
Test Plan: 1) Apply this patch 2) prove t/db_dependent/Clubs.t Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
234 lines
7.1 KiB
Perl
Executable file
234 lines
7.1 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 => 37;
|
|
use Test::Warn;
|
|
|
|
use C4::Context;
|
|
use Koha::Database;
|
|
use Koha::Patrons;
|
|
|
|
use t::lib::TestBuilder;
|
|
|
|
BEGIN {
|
|
use_ok('Koha::Club');
|
|
use_ok('Koha::Clubs');
|
|
use_ok('Koha::Club::Field');
|
|
use_ok('Koha::Club::Fields');
|
|
use_ok('Koha::Club::Template');
|
|
use_ok('Koha::Club::Templates');
|
|
use_ok('Koha::Club::Template::Field');
|
|
use_ok('Koha::Club::Template::Fields');
|
|
use_ok('Koha::Club::Enrollment::Field');
|
|
use_ok('Koha::Club::Enrollment::Fields');
|
|
use_ok('Koha::Club::Template::EnrollmentField');
|
|
use_ok('Koha::Club::Template::EnrollmentFields');
|
|
}
|
|
|
|
# Start transaction
|
|
my $database = Koha::Database->new();
|
|
my $schema = $database->schema();
|
|
my $dbh = C4::Context->dbh;
|
|
my $builder = t::lib::TestBuilder->new;
|
|
|
|
$schema->storage->txn_begin();
|
|
$dbh->do("DELETE FROM club_templates");
|
|
|
|
my $categorycode = $builder->build( { source => 'Category' } )->{categorycode};
|
|
my $branchcode = $builder->build( { source => 'Branch' } )->{branchcode};
|
|
|
|
my $patron = Koha::Patron->new(
|
|
{
|
|
surname => 'Test 1',
|
|
branchcode => $branchcode,
|
|
categorycode => $categorycode
|
|
}
|
|
);
|
|
$patron->store();
|
|
|
|
my $club_template = Koha::Club::Template->new(
|
|
{
|
|
name => "Test Club Template",
|
|
is_enrollable_from_opac => 0,
|
|
is_email_required => 0,
|
|
}
|
|
)->store();
|
|
is( ref($club_template), 'Koha::Club::Template', 'Club template created' );
|
|
|
|
# Add some template fields
|
|
my $club_template_field_1 = Koha::Club::Template::Field->new(
|
|
{
|
|
club_template_id => $club_template->id,
|
|
name => 'Test Club Template Field 1',
|
|
}
|
|
)->store();
|
|
is( ref($club_template_field_1),
|
|
'Koha::Club::Template::Field', 'Club template field 1 created' );
|
|
|
|
my $club_template_field_2 = Koha::Club::Template::Field->new(
|
|
{
|
|
club_template_id => $club_template->id,
|
|
name => 'Test Club Template Field 2',
|
|
}
|
|
)->store();
|
|
is( ref($club_template_field_2),
|
|
'Koha::Club::Template::Field', 'Club template field 2 created' );
|
|
|
|
is( $club_template->club_template_fields->count,
|
|
2, 'Club template has two fields' );
|
|
|
|
## Add some template enrollment fields
|
|
my $club_template_enrollment_field_1 =
|
|
Koha::Club::Template::EnrollmentField->new(
|
|
{
|
|
club_template_id => $club_template->id,
|
|
name => 'Test Club Template EnrollmentField 1',
|
|
}
|
|
)->store();
|
|
is(
|
|
ref($club_template_enrollment_field_1),
|
|
'Koha::Club::Template::EnrollmentField',
|
|
'Club template field 1 created'
|
|
);
|
|
|
|
my $club_template_enrollment_field_2 =
|
|
Koha::Club::Template::EnrollmentField->new(
|
|
{
|
|
club_template_id => $club_template->id,
|
|
name => 'Test Club Template EnrollmentField 2',
|
|
}
|
|
)->store();
|
|
is(
|
|
ref($club_template_enrollment_field_2),
|
|
'Koha::Club::Template::EnrollmentField',
|
|
'Club template field 2 created'
|
|
);
|
|
|
|
is( $club_template->club_template_enrollment_fields->count,
|
|
2, 'Club template has two enrollment fields' );
|
|
|
|
## Create a club based on this template
|
|
Koha::Club->new(
|
|
{
|
|
club_template_id => $club_template->id,
|
|
name => "Test Expired Club",
|
|
branchcode => $branchcode,
|
|
date_start => '1900-01-01',
|
|
date_end => '1900-01-02',
|
|
}
|
|
)->store();
|
|
|
|
my $club = Koha::Club->new(
|
|
{
|
|
club_template_id => $club_template->id,
|
|
name => "Test Club",
|
|
branchcode => $branchcode,
|
|
date_start => '1900-01-01',
|
|
date_end => '9999-01-01',
|
|
}
|
|
)->store();
|
|
|
|
my $club_field_1 = Koha::Club::Field->new(
|
|
{
|
|
club_template_field_id => $club_template_field_1->id,
|
|
club_id => $club->id,
|
|
value => 'TEST',
|
|
}
|
|
)->store();
|
|
is( ref($club_field_1), 'Koha::Club::Field', 'Club field 1 created' );
|
|
is(
|
|
$club_field_1->club_template_field->id,
|
|
$club_template_field_1->id,
|
|
'Field 2 is linked to correct template field'
|
|
);
|
|
|
|
my $club_field_2 = Koha::Club::Field->new(
|
|
{
|
|
club_template_field_id => $club_template_field_2->id,
|
|
club_id => $club->id,
|
|
value => 'TEST',
|
|
}
|
|
)->store();
|
|
is( ref($club_field_2), 'Koha::Club::Field', 'Club field 2 created' );
|
|
is(
|
|
$club_field_2->club_template_field->id,
|
|
$club_template_field_2->id,
|
|
'Field 2 is linked to correct template field'
|
|
);
|
|
|
|
is( ref($club), 'Koha::Club', 'Club created' );
|
|
is( $club->club_template->id,
|
|
$club_template->id, 'Club is using correct template' );
|
|
is( $club->branch->id, $branchcode, 'Club is using correct branch' );
|
|
is( $club->club_fields->count, 2, 'Club has correct number of fields' );
|
|
is( Koha::Clubs->get_enrollable( { borrower => $patron } )->count,
|
|
1, 'Koha::Clubs->get_enrollable returns 1 enrollable club for patron' );
|
|
is( $patron->get_enrollable_clubs->count,
|
|
1, 'There is 1 enrollable club for patron' );
|
|
|
|
## Create an enrollment for this club
|
|
my $club_enrollment = Koha::Club::Enrollment->new(
|
|
{
|
|
club_id => $club->id,
|
|
borrowernumber => $patron->id,
|
|
branchcode => $branchcode,
|
|
}
|
|
)->store();
|
|
is( ref($club_enrollment), 'Koha::Club::Enrollment',
|
|
'Club enrollment created' );
|
|
|
|
my $club_enrollment_field_1 = Koha::Club::Enrollment::Field->new(
|
|
{
|
|
club_enrollment_id => $club_enrollment->id,
|
|
club_template_enrollment_field_id =>
|
|
$club_template_enrollment_field_1->id,
|
|
value => 'TEST',
|
|
}
|
|
)->store();
|
|
is(
|
|
ref($club_enrollment_field_1),
|
|
'Koha::Club::Enrollment::Field',
|
|
'Enrollment field 1 created'
|
|
);
|
|
|
|
my $club_enrollment_field_2 = Koha::Club::Enrollment::Field->new(
|
|
{
|
|
club_enrollment_id => $club_enrollment->id,
|
|
club_template_enrollment_field_id =>
|
|
$club_template_enrollment_field_2->id,
|
|
value => 'TEST',
|
|
}
|
|
)->store();
|
|
is(
|
|
ref($club_enrollment_field_2),
|
|
'Koha::Club::Enrollment::Field',
|
|
'Enrollment field 2 created'
|
|
);
|
|
|
|
is( $club_enrollment->club->id, $club->id, 'Got correct club for enrollment' );
|
|
is( Koha::Clubs->get_enrollable( { borrower => $patron } )->count,
|
|
0, 'Koha::Clubs->get_enrollable returns 0 enrollable clubs for patron' );
|
|
is( $patron->get_club_enrollments->count,
|
|
1, 'Got 1 club enrollment for patron' );
|
|
is( $patron->get_enrollable_clubs->count,
|
|
0, 'No more enrollable clubs for patron' );
|
|
is( $club->club_enrollments->count, 1, 'There is 1 enrollment for club' );
|
|
|
|
$schema->storage->txn_rollback();
|
|
1;
|