release 0.20
[gitmo/Class-MOP.git] / t / 017_add_method_modifier.t
CommitLineData
ddc8edba 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
96ceced8 6use Test::More tests => 17;
ddc8edba 7use Test::Exception;
8
9BEGIN {
10 use_ok('Class::MOP');
11}
12
13{
14 package BankAccount;
15
16 use strict;
17 use warnings;
18 use metaclass;
19
20 use Carp 'confess';
21
22 BankAccount->meta->add_attribute('$:balance' => (
23 accessor => 'balance',
24 init_arg => 'balance',
25 default => 0
26 ));
27
28 sub new { (shift)->meta->new_object(@_) }
96ceced8 29
ddc8edba 30 sub deposit {
31 my ($self, $amount) = @_;
ddc8edba 32 $self->balance($self->balance + $amount);
33 }
34
35 sub withdraw {
a4258ffd 36 my ($self, $amount) = @_;
37 my $current_balance = $self->balance();
38 ($current_balance >= $amount)
ddc8edba 39 || confess "Account overdrawn";
ddc8edba 40 $self->balance($current_balance - $amount);
41 }
42
43 package CheckingAccount;
44
45 use strict;
46 use warnings;
96ceced8 47 use metaclass;
48
ddc8edba 49 use base 'BankAccount';
50
51 CheckingAccount->meta->add_attribute('$:overdraft_account' => (
52 accessor => 'overdraft_account',
53 init_arg => 'overdraft',
54 ));
55
a4258ffd 56 CheckingAccount->meta->add_before_method_modifier('withdraw' => sub {
ddc8edba 57 my ($self, $amount) = @_;
ddc8edba 58 my $overdraft_amount = $amount - $self->balance();
59 if ($overdraft_amount > 0) {
ddc8edba 60 $self->overdraft_account->withdraw($overdraft_amount);
61 $self->deposit($overdraft_amount);
62 }
ddc8edba 63 });
64
65 ::ok(CheckingAccount->meta->has_method('withdraw'), '... checking account now has a withdraw method');
66}
67
68
69my $savings_account = BankAccount->new(balance => 250);
70isa_ok($savings_account, 'BankAccount');
71
72is($savings_account->balance, 250, '... got the right savings balance');
73lives_ok {
74 $savings_account->withdraw(50);
75} '... withdrew from savings successfully';
76is($savings_account->balance, 200, '... got the right savings balance after withdrawl');
77
78$savings_account->deposit(150);
79is($savings_account->balance, 350, '... got the right savings balance after deposit');
80
81my $checking_account = CheckingAccount->new(
82 balance => 100,
83 overdraft => $savings_account
84 );
85isa_ok($checking_account, 'CheckingAccount');
86isa_ok($checking_account, 'BankAccount');
87
88is($checking_account->overdraft_account, $savings_account, '... got the right overdraft account');
89
90is($checking_account->balance, 100, '... got the right checkings balance');
91
92lives_ok {
96ceced8 93 $checking_account->withdraw(50);
ddc8edba 94} '... withdrew from checking successfully';
96ceced8 95is($checking_account->balance, 50, '... got the right checkings balance after withdrawl');
96is($savings_account->balance, 350, '... got the right savings balance after checking withdrawl (no overdraft)');
ddc8edba 97
96ceced8 98lives_ok {
99 $checking_account->withdraw(200);
100} '... withdrew from checking successfully';
ddc8edba 101is($checking_account->balance, 0, '... got the right checkings balance after withdrawl');
96ceced8 102is($savings_account->balance, 200, '... got the right savings balance after overdraft withdrawl');
ddc8edba 103