Bug 16849: Move IsDebarred to Koha::Patron->is_debarred
[koha.git] / t / db_dependent / Patron.t
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 => 13;
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 my $object = Koha::Patron->new();
38
39 is( $object->in_storage, 0, "Object is not in storage" );
40
41 $object->categorycode( $categorycode );
42 $object->branchcode( $branchcode );
43 $object->surname("Test Surname");
44 $object->store();
45
46 is( $object->in_storage, 1, "Object is now stored" );
47
48 my $borrowernumber = $object->borrowernumber;
49
50 my $patron = $schema->resultset('Borrower')->find( $borrowernumber );
51 is( $patron->surname(), "Test Surname", "Object found in database" );
52
53 is( $object->is_changed(), 0, "Object is unchanged" );
54 $object->surname("Test Surname");
55 is( $object->is_changed(), 0, "Object is still unchanged" );
56 $object->surname("Test Surname 2");
57 is( $object->is_changed(), 1, "Object is changed" );
58
59 $object->store();
60 is( $object->is_changed(), 0, "Object no longer marked as changed after being stored" );
61
62 $object->set({ firstname => 'Test Firstname' });
63 is( $object->is_changed(), 1, "Object is changed after Set" );
64 $object->store();
65 is( $object->is_changed(), 0, "Object no longer marked as changed after being stored" );
66
67 $object->delete();
68 $patron = $schema->resultset('Borrower')->find( $borrowernumber );
69 ok( ! $patron, "Object no longer found in database" );
70 is( $object->in_storage, 0, "Object is not in storage" );
71
72 1;