|
Line 0
Link Here
|
|
|
1 |
#!/usr/bin/perl |
| 2 |
|
| 3 |
# This file is part of Koha. |
| 4 |
# |
| 5 |
# Koha is free software; you can redistribute it and/or modify it |
| 6 |
# under the terms of the GNU General Public License as published by |
| 7 |
# the Free Software Foundation; either version 3 of the License, or |
| 8 |
# (at your option) any later version. |
| 9 |
# |
| 10 |
# Koha is distributed in the hope that it will be useful, but |
| 11 |
# WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 |
# GNU General Public License for more details. |
| 14 |
# |
| 15 |
# You should have received a copy of the GNU General Public License |
| 16 |
# along with Koha; if not, see <http://www.gnu.org/licenses>. |
| 17 |
|
| 18 |
use Modern::Perl; |
| 19 |
|
| 20 |
use Test::More tests => 5; |
| 21 |
use Test::Warn; |
| 22 |
|
| 23 |
use C4::Context; |
| 24 |
use Koha::Database; |
| 25 |
|
| 26 |
BEGIN { |
| 27 |
use_ok('Koha::Object'); |
| 28 |
use_ok('Koha::Patron'); |
| 29 |
} |
| 30 |
|
| 31 |
my $schema = Koha::Database->new->schema; |
| 32 |
$schema->storage->txn_begin; |
| 33 |
|
| 34 |
my $categorycode = $schema->resultset('Category')->first()->categorycode(); |
| 35 |
my $branchcode = $schema->resultset('Branch')->first()->branchcode(); |
| 36 |
|
| 37 |
subtest 'is_changed' => sub { |
| 38 |
plan tests => 6; |
| 39 |
my $object = Koha::Patron->new(); |
| 40 |
$object->categorycode( $categorycode ); |
| 41 |
$object->branchcode( $branchcode ); |
| 42 |
$object->surname("Test Surname"); |
| 43 |
$object->store(); |
| 44 |
is( $object->is_changed(), 0, "Object is unchanged" ); |
| 45 |
$object->surname("Test Surname"); |
| 46 |
is( $object->is_changed(), 0, "Object is still unchanged" ); |
| 47 |
$object->surname("Test Surname 2"); |
| 48 |
is( $object->is_changed(), 1, "Object is changed" ); |
| 49 |
|
| 50 |
$object->store(); |
| 51 |
is( $object->is_changed(), 0, "Object no longer marked as changed after being stored" ); |
| 52 |
|
| 53 |
$object->set({ firstname => 'Test Firstname' }); |
| 54 |
is( $object->is_changed(), 1, "Object is changed after Set" ); |
| 55 |
$object->store(); |
| 56 |
is( $object->is_changed(), 0, "Object no longer marked as changed after being stored" ); |
| 57 |
}; |
| 58 |
|
| 59 |
subtest 'in_storage' => sub { |
| 60 |
plan tests => 6; |
| 61 |
my $object = Koha::Patron->new(); |
| 62 |
is( $object->in_storage, 0, "Object is not in storage" ); |
| 63 |
$object->categorycode( $categorycode ); |
| 64 |
$object->branchcode( $branchcode ); |
| 65 |
$object->surname("Test Surname"); |
| 66 |
$object->store(); |
| 67 |
is( $object->in_storage, 1, "Object is now stored" ); |
| 68 |
$object->surname("another surname"); |
| 69 |
is( $object->in_storage, 1 ); |
| 70 |
|
| 71 |
my $borrowernumber = $object->borrowernumber; |
| 72 |
my $patron = $schema->resultset('Borrower')->find( $borrowernumber ); |
| 73 |
is( $patron->surname(), "Test Surname", "Object found in database" ); |
| 74 |
|
| 75 |
$object->delete(); |
| 76 |
$patron = $schema->resultset('Borrower')->find( $borrowernumber ); |
| 77 |
ok( ! $patron, "Object no longer found in database" ); |
| 78 |
is( $object->in_storage, 0, "Object is not in storage" ); |
| 79 |
}; |
| 80 |
|
| 81 |
subtest 'id' => sub { |
| 82 |
plan tests => 1; |
| 83 |
my $patron = Koha::Patron->new({categorycode => $categorycode, branchcode => $branchcode })->store; |
| 84 |
is( $patron->id, $patron->borrowernumber ); |
| 85 |
}; |
| 86 |
|
| 87 |
1; |