Two failing multicreate tests (the root cause of castaway's problem)
[dbsrgits/DBIx-Class.git] / t / cdbi-t / 15-accessor.t
CommitLineData
9bc6db13 1use strict;
2use Test::More;
3
4BEGIN {
134ea846 5 eval "use DBIx::Class::CDBICompat;";
6 if ($@) {
7 plan (skip_all => 'Class::Trigger and DBIx::ContextualFetch required');
8 next;
9 }
10 eval "use DBD::SQLite";
48cb8be4 11 plan $@ ? (skip_all => 'needs DBD::SQLite for testing') : (tests => 55);
9bc6db13 12}
13
14INIT {
d4519f23 15 #local $SIG{__WARN__} =
16 #sub { like $_[0], qr/clashes with built-in method/, $_[0] };
17 use lib 't/testlib';
18 require Film;
19 require Actor;
48cb8be4 20 require Director;
21
d4519f23 22 Actor->has_a(film => 'Film');
48cb8be4 23 Film->has_a(director => 'Director');
24
d4519f23 25 sub Class::DBI::sheep { ok 0; }
9bc6db13 26}
27
28sub Film::mutator_name {
d4519f23 29 my ($class, $col) = @_;
30 return "set_sheep" if lc $col eq "numexplodingsheep";
31 return $col;
9bc6db13 32}
33
34sub Film::accessor_name {
d4519f23 35 my ($class, $col) = @_;
36 return "sheep" if lc $col eq "numexplodingsheep";
37 return $col;
9bc6db13 38}
39
e60dc79f 40sub Actor::accessor_name_for {
d4519f23 41 my ($class, $col) = @_;
42 return "movie" if lc $col eq "film";
43 return $col;
9bc6db13 44}
45
5e85c671 46# This is a class with accessor_name_for() but no corresponding mutator_name_for()
e60dc79f 47sub Director::accessor_name_for {
48 my($class, $col) = @_;
49 return "nutty_as_a_fruitcake" if lc $col eq "isinsane";
50 return $col;
51}
52
9bc6db13 53my $data = {
d4519f23 54 Title => 'Bad Taste',
55 Director => 'Peter Jackson',
56 Rating => 'R',
9bc6db13 57};
58
59eval {
d4519f23 60 my $data = $data;
61 $data->{NumExplodingSheep} = 1;
62 ok my $bt = Film->create($data), "Modified accessor - with column name";
63 isa_ok $bt, "Film";
9bc6db13 64};
65is $@, '', "No errors";
66
67eval {
d4519f23 68 my $data = $data;
69 $data->{sheep} = 1;
70 ok my $bt = Film->create($data), "Modified accessor - with accessor";
71 isa_ok $bt, "Film";
9bc6db13 72};
73is $@, '', "No errors";
74
75eval {
d4519f23 76 my @film = Film->search({ sheep => 1 });
77 is @film, 2, "Can search with modified accessor";
9bc6db13 78};
79
80{
81
d4519f23 82 eval {
83 local $data->{set_sheep} = 1;
84 ok my $bt = Film->create($data), "Modified mutator - with mutator";
85 isa_ok $bt, "Film";
86 };
87 is $@, '', "No errors";
88
89 eval {
90 local $data->{NumExplodingSheep} = 1;
91 ok my $bt = Film->create($data), "Modified mutator - with column name";
92 isa_ok $bt, "Film";
93 };
94 is $@, '', "No errors";
95
96 eval {
97 local $data->{sheep} = 1;
98 ok my $bt = Film->create($data), "Modified mutator - with accessor";
99 isa_ok $bt, "Film";
100 };
101 is $@, '', "No errors";
9bc6db13 102
103}
104
105{
d4519f23 106 my $p_data = {
107 name => 'Peter Jackson',
108 film => 'Bad Taste',
109 };
110 my $bt = Film->create($data);
111 my $ac = Actor->create($p_data);
112
48cb8be4 113 ok !eval { my $f = $ac->film; 1 };
d4519f23 114 like $@, qr/film/, "no hasa film";
115
116 eval {
117 ok my $f = $ac->movie, "hasa movie";
118 isa_ok $f, "Film";
119 is $f->id, $bt->id, " - Bad Taste";
120 };
121 is $@, '', "No errors";
122
123 {
124 local $data->{Title} = "Another film";
125 my $film = Film->create($data);
126
127 eval { $ac->film($film) };
128 ok $@, $@;
129
130 eval { $ac->movie($film) };
131 ok $@, $@;
132
133 eval {
134 ok $ac->set_film($film), "Set movie through hasa";
135 $ac->update;
136 ok my $f = $ac->movie, "hasa movie";
137 isa_ok $f, "Film";
138 is $f->id, $film->id, " - Another Film";
139 };
140 is $@, '', "No problem";
141 }
9bc6db13 142
143}
144
e60dc79f 145
146# Make sure a class with an accessor_name() method has a similar mutator.
147{
148 my $aki = Director->create({
149 name => "Aki Kaurismaki",
150 });
151
152 $aki->nutty_as_a_fruitcake(1);
153 is $aki->nutty_as_a_fruitcake, 1,
154 "a custom accessor without a custom mutator is setable";
155 $aki->update;
156}
157
158{
d4519f23 159 Film->columns(TEMP => qw/nonpersistent/);
160 ok(Film->find_column('nonpersistent'), "nonpersistent is a column");
161 ok(!Film->has_real_column('nonpersistent'), " - but it's not real");
162
163 {
164 my $film = Film->create({ Title => "Veronique", nonpersistent => 42 });
165 is $film->title, "Veronique", "Title set OK";
166 is $film->nonpersistent, 42, "As is non persistent value";
167 $film->remove_from_object_index;
168 ok $film = Film->retrieve('Veronique'), "Re-retrieve film";
169 is $film->title, "Veronique", "Title still OK";
170 is $film->nonpersistent, undef, "Non persistent value gone";
171 ok $film->nonpersistent(40), "Can set it";
172 is $film->nonpersistent, 40, "And it's there again";
173 ok $film->update, "Commit the film";
174 is $film->nonpersistent, 40, "And it's still there";
175 }
9bc6db13 176}
177
e60dc79f 178{
d4519f23 179 is_deeply(
180 [Actor->columns('Essential')],
181 [Actor->columns('Primary')],
182 "Actor has no specific essential columns"
183 );
184 ok(Actor->find_column('nonpersistent'), "nonpersistent is a column");
185 ok(!Actor->has_real_column('nonpersistent'), " - but it's not real");
186 my $pj = eval { Actor->search(name => "Peter Jackson")->first };
187 is $@, '', "no problems retrieving actors";
188 isa_ok $pj => "Actor";
9bc6db13 189}
190
e60dc79f 191{
d4519f23 192 Film->autoupdate(1);
193 my $naked = Film->create({ title => 'Naked' });
194 my $sandl = Film->create({ title => 'Secrets and Lies' });
195
196 my $rating = 1;
197 my $update_failure = sub {
198 my $obj = shift;
199 eval { $obj->rating($rating++) };
200 return $@ =~ /read only/;
201 };
202
203 ok !$update_failure->($naked), "Can update Naked";
204 ok $naked->make_read_only, "Make Naked read only";
205 ok $update_failure->($naked), "Can't update Naked any more";
206 ok !$update_failure->($sandl), "But can still update Secrets and Lies";
207 my $july4 = eval { Film->create({ title => "4 Days in July" }) };
208 isa_ok $july4 => "Film", "And can still create new films";
209
210 ok(Film->make_read_only, "Make all Films read only");
211 ok $update_failure->($naked), "Still can't update Naked";
212 ok $update_failure->($sandl), "And can't update S&L any more";
213 eval { $july4->delete };
214 like $@, qr/read only/, "And can't delete 4 Days in July";
215 my $abigail = eval { Film->create({ title => "Abigail's Party" }) };
216 like $@, qr/read only/, "Or create new films";
48cb8be4 217
218 $sandl->discard_changes;
9bc6db13 219}