Fix TODO tests to only mark exactly the failing tests as TODO
[dbsrgits/DBIx-Class.git] / t / cdbi / 15-accessor.t
CommitLineData
9bc6db13 1use strict;
2use Test::More;
3
9bc6db13 4INIT {
d4519f23 5 #local $SIG{__WARN__} =
6 #sub { like $_[0], qr/clashes with built-in method/, $_[0] };
50891152 7 use lib 't/cdbi/testlib';
d4519f23 8 require Film;
9 require Actor;
48cb8be4 10 require Director;
11
d4519f23 12 Actor->has_a(film => 'Film');
48cb8be4 13 Film->has_a(director => 'Director');
14
d4519f23 15 sub Class::DBI::sheep { ok 0; }
9bc6db13 16}
17
9381840d 18# Install the deprecation warning intercept here for the rest of the 08 dev cycle
19local $SIG{__WARN__} = sub {
20 warn @_ unless (DBIx::Class->VERSION < 0.09 and $_[0] =~ /Query returned more than one row/);
21};
22
9bc6db13 23sub Film::mutator_name {
d4519f23 24 my ($class, $col) = @_;
25 return "set_sheep" if lc $col eq "numexplodingsheep";
26 return $col;
9bc6db13 27}
28
29sub Film::accessor_name {
d4519f23 30 my ($class, $col) = @_;
31 return "sheep" if lc $col eq "numexplodingsheep";
32 return $col;
9bc6db13 33}
34
e60dc79f 35sub Actor::accessor_name_for {
d4519f23 36 my ($class, $col) = @_;
37 return "movie" if lc $col eq "film";
38 return $col;
9bc6db13 39}
40
5e85c671 41# This is a class with accessor_name_for() but no corresponding mutator_name_for()
e60dc79f 42sub Director::accessor_name_for {
43 my($class, $col) = @_;
44 return "nutty_as_a_fruitcake" if lc $col eq "isinsane";
45 return $col;
46}
47
9bc6db13 48my $data = {
d4519f23 49 Title => 'Bad Taste',
50 Director => 'Peter Jackson',
51 Rating => 'R',
9bc6db13 52};
53
54eval {
c73f755d 55 my $data = { %$data };
d4519f23 56 $data->{NumExplodingSheep} = 1;
57 ok my $bt = Film->create($data), "Modified accessor - with column name";
58 isa_ok $bt, "Film";
c73f755d 59 is $bt->sheep, 1, 'sheep bursting violently';
9bc6db13 60};
61is $@, '', "No errors";
62
63eval {
c73f755d 64 my $data = { %$data };
65 $data->{sheep} = 2;
d4519f23 66 ok my $bt = Film->create($data), "Modified accessor - with accessor";
67 isa_ok $bt, "Film";
c73f755d 68 is $bt->sheep, 2, 'sheep bursting violently';
69};
70is $@, '', "No errors";
71
72eval {
73 my $data = { %$data };
74 $data->{NumExplodingSheep} = 1;
75 ok my $bt = Film->find_or_create($data),
6a3bf251 76 "find_or_create Modified accessor - find with column name";
c73f755d 77 isa_ok $bt, "Film";
78 is $bt->sheep, 1, 'sheep bursting violently';
79};
80is $@, '', "No errors";
81
82eval {
83 my $data = { %$data };
84 $data->{sheep} = 1;
85 ok my $bt = Film->find_or_create($data),
6a3bf251 86 "find_or_create Modified accessor - find with accessor";
c73f755d 87 isa_ok $bt, "Film";
88 is $bt->sheep, 1, 'sheep bursting violently';
89};
90is $@, '', "No errors";
91
92eval {
93 my $data = { %$data };
94 $data->{NumExplodingSheep} = 3;
95 ok my $bt = Film->find_or_create($data),
6a3bf251 96 "find_or_create Modified accessor - create with column name";
c73f755d 97 isa_ok $bt, "Film";
9fd5c112 98
99 local $TODO = 'TODOifying failing tests, waiting for Schwern';
c73f755d 100 is $bt->sheep, 3, 'sheep bursting violently';
101};
102is $@, '', "No errors";
103
104eval {
105 my $data = { %$data };
106 $data->{sheep} = 4;
107 ok my $bt = Film->find_or_create($data),
6a3bf251 108 "find_or_create Modified accessor - create with accessor";
c73f755d 109 isa_ok $bt, "Film";
9fd5c112 110
111 local $TODO = 'TODOifying failing tests, waiting for Schwern';
c73f755d 112 is $bt->sheep, 4, 'sheep bursting violently';
9bc6db13 113};
114is $@, '', "No errors";
115
116eval {
d4519f23 117 my @film = Film->search({ sheep => 1 });
118 is @film, 2, "Can search with modified accessor";
9bc6db13 119};
9fd5c112 120{
121 local $TODO = 'TODOifying failing tests, waiting for Schwern';
122 is $@, '', "No errors";
1fecf835 123}
124
9bc6db13 125{
126
d4519f23 127 eval {
128 local $data->{set_sheep} = 1;
129 ok my $bt = Film->create($data), "Modified mutator - with mutator";
130 isa_ok $bt, "Film";
131 };
132 is $@, '', "No errors";
133
134 eval {
135 local $data->{NumExplodingSheep} = 1;
136 ok my $bt = Film->create($data), "Modified mutator - with column name";
137 isa_ok $bt, "Film";
138 };
139 is $@, '', "No errors";
140
141 eval {
142 local $data->{sheep} = 1;
143 ok my $bt = Film->create($data), "Modified mutator - with accessor";
144 isa_ok $bt, "Film";
145 };
146 is $@, '', "No errors";
9bc6db13 147
148}
149
150{
d4519f23 151 my $p_data = {
152 name => 'Peter Jackson',
153 film => 'Bad Taste',
154 };
155 my $bt = Film->create($data);
156 my $ac = Actor->create($p_data);
157
48cb8be4 158 ok !eval { my $f = $ac->film; 1 };
d4519f23 159 like $@, qr/film/, "no hasa film";
160
161 eval {
162 ok my $f = $ac->movie, "hasa movie";
163 isa_ok $f, "Film";
164 is $f->id, $bt->id, " - Bad Taste";
165 };
166 is $@, '', "No errors";
167
168 {
169 local $data->{Title} = "Another film";
170 my $film = Film->create($data);
171
172 eval { $ac->film($film) };
173 ok $@, $@;
174
175 eval { $ac->movie($film) };
176 ok $@, $@;
177
178 eval {
179 ok $ac->set_film($film), "Set movie through hasa";
180 $ac->update;
181 ok my $f = $ac->movie, "hasa movie";
182 isa_ok $f, "Film";
183 is $f->id, $film->id, " - Another Film";
184 };
185 is $@, '', "No problem";
186 }
9bc6db13 187
188}
189
e60dc79f 190
191# Make sure a class with an accessor_name() method has a similar mutator.
192{
193 my $aki = Director->create({
194 name => "Aki Kaurismaki",
195 });
196
197 $aki->nutty_as_a_fruitcake(1);
198 is $aki->nutty_as_a_fruitcake, 1,
199 "a custom accessor without a custom mutator is setable";
200 $aki->update;
201}
202
203{
d4519f23 204 Film->columns(TEMP => qw/nonpersistent/);
205 ok(Film->find_column('nonpersistent'), "nonpersistent is a column");
206 ok(!Film->has_real_column('nonpersistent'), " - but it's not real");
207
208 {
209 my $film = Film->create({ Title => "Veronique", nonpersistent => 42 });
210 is $film->title, "Veronique", "Title set OK";
211 is $film->nonpersistent, 42, "As is non persistent value";
212 $film->remove_from_object_index;
213 ok $film = Film->retrieve('Veronique'), "Re-retrieve film";
214 is $film->title, "Veronique", "Title still OK";
215 is $film->nonpersistent, undef, "Non persistent value gone";
216 ok $film->nonpersistent(40), "Can set it";
217 is $film->nonpersistent, 40, "And it's there again";
218 ok $film->update, "Commit the film";
219 is $film->nonpersistent, 40, "And it's still there";
220 }
9bc6db13 221}
222
e60dc79f 223{
d4519f23 224 is_deeply(
225 [Actor->columns('Essential')],
226 [Actor->columns('Primary')],
227 "Actor has no specific essential columns"
228 );
229 ok(Actor->find_column('nonpersistent'), "nonpersistent is a column");
230 ok(!Actor->has_real_column('nonpersistent'), " - but it's not real");
231 my $pj = eval { Actor->search(name => "Peter Jackson")->first };
232 is $@, '', "no problems retrieving actors";
233 isa_ok $pj => "Actor";
9bc6db13 234}
235
e60dc79f 236{
d4519f23 237 Film->autoupdate(1);
238 my $naked = Film->create({ title => 'Naked' });
239 my $sandl = Film->create({ title => 'Secrets and Lies' });
240
241 my $rating = 1;
242 my $update_failure = sub {
243 my $obj = shift;
244 eval { $obj->rating($rating++) };
245 return $@ =~ /read only/;
246 };
247
248 ok !$update_failure->($naked), "Can update Naked";
249 ok $naked->make_read_only, "Make Naked read only";
250 ok $update_failure->($naked), "Can't update Naked any more";
251 ok !$update_failure->($sandl), "But can still update Secrets and Lies";
252 my $july4 = eval { Film->create({ title => "4 Days in July" }) };
253 isa_ok $july4 => "Film", "And can still create new films";
254
255 ok(Film->make_read_only, "Make all Films read only");
256 ok $update_failure->($naked), "Still can't update Naked";
257 ok $update_failure->($sandl), "And can't update S&L any more";
258 eval { $july4->delete };
259 like $@, qr/read only/, "And can't delete 4 Days in July";
260 my $abigail = eval { Film->create({ title => "Abigail's Party" }) };
261 like $@, qr/read only/, "Or create new films";
48cb8be4 262
9381840d 263 $_->discard_changes for ($naked, $sandl);
9bc6db13 264}
d9bd5195 265
266done_testing;