Fixed the pod path in archive
[sdlgit/SDL_perl.git] / t / sdlgamerect.t
1 use Test::More tests => 87;
2 use strict;
3 use SDL;
4
5 use_ok( 'SDL::Game::Rect' ); 
6   
7 can_ok ('SDL::Game::Rect', qw/
8         new
9         x 
10         y 
11         width 
12         height
13         w
14         h
15         top
16         left
17         centerx
18         centery
19          /);
20
21
22 my $rect = SDL::Game::Rect->new( 0, 0, 0, 0);
23
24 isa_ok ($rect, 'SDL::Game::Rect','new went ok');
25
26 foreach my $attr (qw(x y top    left  width   height 
27                      w h bottom right centerx centery)
28                  ) {
29     is ($rect->$attr, 0, "$attr is 0");
30 }
31
32 # set and get at the same time (and testing method aliases)
33 is ($rect->left(15), 15, 'left is now 15');
34 is ($rect->x, 15, 'x and left point to the same place');
35 is ($rect->x(12), 12, 'x is now 12');
36 is ($rect->left, 12, 'left is an alias to x');
37
38 is ($rect->top(132), 132, 'top is now 132');
39 is ($rect->y, 132, 'y and top point to the same place');
40 is ($rect->y(123), 123, 'y is now 123');
41 is ($rect->top, 123, 'top is an alias to y');
42
43
44
45 is ($rect->w(54), 54, 'w is now 54');
46 is ($rect->width, 54, 'w and width point to the same place');
47 is ($rect->width(45), 45, 'w is now 45');
48 is ($rect->w, 45, 'w is an alias to width');
49
50
51 is ($rect->h(76), 76, 'h is now 76');
52 is ($rect->height, 76, 'h and height point to the same place');
53 is ($rect->height(67), 67, 'h is now 67');
54 is ($rect->h, 67, 'h is an alias to height');
55
56 # get alone
57 is ($rect->x(), 12, 'x is 12');
58 is ($rect->left(), 12, 'left is 12');
59 is ($rect->y(), 123, 'y is 123');
60 is ($rect->top(), 123, 'top is 123');
61 is ($rect->width(), 45, 'width is 45');
62 is ($rect->w(), 45, 'w is 45');
63 is ($rect->height(), 67, 'height is 67');
64 is ($rect->h(), 67, 'h is 67');
65
66 # other helpers
67 is ($rect->bottom, 190, 'bottom should be relative to heigth and top');
68 is ($rect->bottom(189), 189, 'changing bottom value');
69 is ($rect->bottom, 189, 'checking bottom value again');
70 is ($rect->top, 122, 'top value should have been updated after bottom change');
71 is ($rect->height, 67, 'height should have stayed the same');
72
73 is ($rect->centery, 155, 'checking vertical center');
74 is ($rect->centery(154), 154, 'changing centery value');
75 is ($rect->centery, 154, 'checking centery value again');
76 is ($rect->top, 121, 'top value should have been updated after centery change');
77 is ($rect->height, 67, 'height should have stayed the same');
78
79 is ($rect->right, 57, 'right should be relative to width and left');
80 is ($rect->right(56), 56, 'changing right value');
81 is ($rect->right, 56, 'checking right value again');
82 is ($rect->left, 11, 'left value should have been updated after bottom change');
83 is ($rect->width, 45, 'width should have stayed the same');
84
85 is ($rect->centerx, 33, 'checking horizontal center');
86 is ($rect->centerx(32), 32, 'changing centerx value');
87 is ($rect->centerx, 32, 'checking centerx value again');
88 is ($rect->left, 10, 'left value should have been updated after bottom change');
89 is ($rect->width, 45, 'width should have stayed the same');
90
91 # checking two-valued accessors
92 can_ok ('SDL::Game::Rect', qw/
93     size
94         center
95         topleft
96         midleft
97         bottomleft
98         topright
99         midright
100         bottomright
101         midtop
102         midbottom
103          /);
104
105
106 is_deeply ( [$rect->center], [32, 154], 'checking center pair');
107 $rect->center(undef, undef);
108 is($rect->centerx, 32, 'center() does nothing when passed undef');
109 is($rect->centery, 154, 'center() does nothing when passed undef');
110 $rect->center(undef, 200);
111 is($rect->centerx, 32, 'center() does nothing for X when passed undef');
112 is($rect->centery, 200, 'center() works on one-parameter (y)');
113 $rect->center(7, undef);
114 is($rect->centerx, 7, 'center() works on one-parameter (x)');
115 is($rect->centery, 200, 'center() does nothing for Y when passed undef');
116 $rect->center(32, 154);
117 is($rect->centerx, 32, 'center() can be used as an acessor for x');
118 is($rect->centery, 154, 'center() can be used as an acessor for y');
119
120 is_deeply ( [$rect->topleft], [121, 10], 'checking topleft pair');
121 $rect->topleft(undef, undef);
122 is($rect->top, 121, 'topleft() does nothing when passed undef');
123 is($rect->left, 10, 'topleft() does nothing when passed undef');
124 $rect->topleft(undef, 200);
125 is($rect->top, 121, 'topleft() does nothing for Y when passed undef');
126 is($rect->left, 200, 'topleft() works on one-parameter (x)');
127 $rect->topleft(7, undef);
128 is($rect->top, 7, 'topleft() works on one-parameter (y)');
129 is($rect->left, 200, 'topleft() does nothing for X when passed undef');
130 $rect->topleft(121, 10);
131 is($rect->top, 121, 'topleft() can be used as an acessor for y');
132 is($rect->left, 10, 'topleft() can be used as an acessor for x');
133
134 is_deeply ( [$rect->midleft], [154, 10], 'checking midleft pair');
135 $rect->midleft(undef, undef);
136 is($rect->centery, 154, 'midleft() does nothing when passed undef');
137 is($rect->left, 10, 'midleft() does nothing when passed undef');
138 $rect->midleft(undef, 200);
139 is($rect->centery, 154, 'midleft() does nothing for Y when passed undef');
140 is($rect->left, 200, 'midleft() works on one-parameter (x)');
141 $rect->midleft(7, undef);
142 is($rect->centery, 7, 'midleft() works on one-parameter (y)');
143 is($rect->left, 200, 'midleft() does nothing for X when passed undef');
144 $rect->midleft(154, 10);
145 is($rect->centery, 154, 'midleft() can be used as an acessor for y');
146 is($rect->left, 10, 'midleft() can be used as an acessor for x');