0885f69e1486f646d4910e349dd7c6d55a38ca10
[dbsrgits/DBIx-Class.git] / t / cdbi / 02-Film.t
1 use strict;
2 use Test::More;
3 use Scalar::Util 'refaddr';
4 use namespace::clean;
5 $| = 1;
6
7 INIT {
8   use lib 't/cdbi/testlib';
9   use Film;
10 }
11
12 ok(Film->can('db_Main'), 'set_db()');
13 is(Film->__driver, "SQLite", "Driver set correctly");
14
15 {
16   my $nul = eval { Film->retrieve() };
17   is $nul, undef, "Can't retrieve nothing";
18   like $@, qr/./, "retrieve needs parameters";    # TODO fix this...
19 }
20
21 {
22   eval { my $id = Film->id };
23   like $@, qr/class method/, "Can't get id with no object";
24 }
25
26 {
27   eval { my $id = Film->title };
28   #like $@, qr/class method/, "Can't get title with no object";
29   ok $@, "Can't get title with no object";
30 }
31
32 eval { my $duh = Film->insert; };
33 like $@, qr/create needs a hashref/, "needs a hashref";
34
35 ok +Film->create_test_film;
36
37 my $btaste = Film->retrieve('Bad Taste');
38 isa_ok $btaste, 'Film';
39 is($btaste->Title,             'Bad Taste',     'Title() get');
40 is($btaste->Director,          'Peter Jackson', 'Director() get');
41 is($btaste->Rating,            'R',             'Rating() get');
42 is($btaste->NumExplodingSheep, 1,               'NumExplodingSheep() get');
43
44 {
45   my $bt2 = Film->find_or_create(Title => 'Bad Taste');
46   is $bt2->Director, $btaste->Director, "find_or_create";
47   my @bt = Film->search(Title => 'Bad Taste');
48   is @bt, 1, " doesn't create a new one";
49 }
50
51 ok my $gone = Film->find_or_create(
52   {
53     Title             => 'Gone With The Wind',
54     Director          => 'Bob Baggadonuts',
55     Rating            => 'PG',
56     NumExplodingSheep => 0
57   }
58   ),
59   "Add Gone With The Wind";
60 isa_ok $gone, 'Film';
61 ok $gone = Film->retrieve(Title => 'Gone With The Wind'),
62   "Fetch it back again";
63 isa_ok $gone, 'Film';
64
65 # Shocking new footage found reveals bizarre Scarlet/sheep scene!
66 is($gone->NumExplodingSheep, 0, 'NumExplodingSheep() get again');
67 $gone->NumExplodingSheep(5);
68 is($gone->NumExplodingSheep, 5, 'NumExplodingSheep() set');
69 is($gone->numexplodingsheep, 5, 'numexplodingsheep() set');
70
71 is($gone->Rating, 'PG', 'Rating() get again');
72 $gone->Rating('NC-17');
73 is($gone->Rating, 'NC-17', 'Rating() set');
74 $gone->update;
75
76 {
77   my @films = eval { Film->retrieve_all };
78   cmp_ok(@films, '==', 2, "We have 2 films in total");
79 }
80
81 # EXTRA TEST: added by mst to check a bug found by Numa
82 cmp_ok(Film->count_all, '==', 2, "count_all confirms 2 films");
83
84 my $gone_copy = Film->retrieve('Gone With The Wind');
85 ok($gone->NumExplodingSheep == 5, 'update()');
86 ok($gone->Rating eq 'NC-17', 'update() again');
87
88 # Grab the 'Bladerunner' entry.
89 Film->create(
90   {
91     Title    => 'Bladerunner',
92     Director => 'Bob Ridley Scott',
93     Rating   => 'R'
94   }
95 );
96
97 my $blrunner = Film->retrieve('Bladerunner');
98 is(ref $blrunner, 'Film', 'retrieve() again');
99 is $blrunner->Title,    'Bladerunner',      "Correct title";
100 is $blrunner->Director, 'Bob Ridley Scott', " and Director";
101 is $blrunner->Rating,   'R',                " and Rating";
102 is $blrunner->NumExplodingSheep, undef, " and sheep";
103
104 # Make a copy of 'Bladerunner' and create an entry of the directors cut
105 my $blrunner_dc = $blrunner->copy(
106   {
107     title  => "Bladerunner: Director's Cut",
108     rating => "15",
109   }
110 );
111 is(ref $blrunner_dc, 'Film', "copy() produces a film");
112 is($blrunner_dc->Title,    "Bladerunner: Director's Cut", 'Title correct');
113 is($blrunner_dc->Director, 'Bob Ridley Scott',            'Director correct');
114 is($blrunner_dc->Rating,   '15',                          'Rating correct');
115 is($blrunner_dc->NumExplodingSheep, undef, 'Sheep correct');
116
117 # Set up own SQL:
118 {
119   Film->add_constructor(title_asc  => "title LIKE ? ORDER BY title");
120   Film->add_constructor(title_desc => "title LIKE ? ORDER BY title DESC");
121     Film->add_constructor(title_asc_nl => q{
122         title LIKE ?
123         ORDER BY title
124         LIMIT 1
125     });
126
127   {
128     my @films = Film->title_asc("Bladerunner%");
129     is @films, 2, "We have 2 Bladerunners";
130     is $films[0]->Title, $blrunner->Title, "Ordered correctly";
131   }
132   {
133     my @films = Film->title_desc("Bladerunner%");
134     is @films, 2, "We have 2 Bladerunners";
135     is $films[0]->Title, $blrunner_dc->Title, "Ordered correctly";
136   }
137   {
138     my @films = Film->title_asc_nl("Bladerunner%");
139     is @films, 1, "We have 2 Bladerunners";
140     is $films[0]->Title, $blrunner->Title, "Ordered correctly";
141   }
142 }
143
144 # Multi-column search
145 {
146   my @films = $blrunner->search (title => { -like => "Bladerunner%"}, rating => '15');
147   is @films, 1, "Only one Bladerunner is a 15";
148 }
149
150 # Inline SQL
151 {
152   my @films = Film->retrieve_from_sql("numexplodingsheep > 0 ORDER BY title");
153   is @films, 2, "Inline SQL";
154   is $films[0]->id, $btaste->id, "Correct film";
155   is $films[1]->id, $gone->id,   "Correct film";
156 }
157
158 # Inline SQL removes WHERE
159 {
160   my @films =
161     Film->retrieve_from_sql(" WHErE numexplodingsheep > 0 ORDER BY title");
162   is @films, 2, "Inline SQL";
163   is $films[0]->id, $btaste->id, "Correct film";
164   is $films[1]->id, $gone->id,   "Correct film";
165 }
166
167 eval {
168   my $ishtar = Film->insert({ Title => 'Ishtar', Director => 'Elaine May' });
169   my $mandn =
170     Film->insert({ Title => 'Mikey and Nicky', Director => 'Elaine May' });
171   my $new_leaf =
172     Film->insert({ Title => 'A New Leaf', Director => 'Elaine May' });
173
174 #use Data::Dumper; die Dumper(Film->search( Director => 'Elaine May' ));
175   cmp_ok(Film->search(Director => 'Elaine May'), '==', 3,
176     "3 Films by Elaine May");
177   ok(Film->retrieve('Ishtar')->delete,
178     "Ishtar doesn't deserve an entry any more");
179   ok(!Film->retrieve('Ishtar'), 'Ishtar no longer there');
180   {
181     my $deprecated = 0;
182     local $SIG{__WARN__} = sub { $deprecated++ if $_[0] =~ /deprecated/ };
183     ok(
184       Film->delete(Director => 'Elaine May'),
185       "In fact, delete all films by Elaine May"
186     );
187     cmp_ok(Film->search(Director => 'Elaine May'), '==',
188       0, "0 Films by Elaine May");
189     is $deprecated, 0, "No deprecated warnings from compat layer";
190   }
191 };
192 is $@, '', "No problems with deletes";
193
194 # Find all films which have a rating of NC-17.
195 my @films = Film->search('Rating', 'NC-17');
196 is(scalar @films, 1, ' search returns one film');
197 is($films[0]->id, $gone->id, ' ... the correct one');
198
199 # Find all films which were directed by Bob
200 @films = Film->search ( { 'Director' => { -like => 'Bob %' } });
201 is(scalar @films, 3, ' search_like returns 3 films');
202 ok(
203   eq_array(
204     [ sort map { $_->id } @films ],
205     [ sort map { $_->id } $blrunner_dc, $gone, $blrunner ]
206   ),
207   'the correct ones'
208 );
209
210 # Find Ridley Scott films which don't have vomit
211 @films =
212   Film->search(numExplodingSheep => undef, Director => 'Bob Ridley Scott');
213 is(scalar @films, 2, ' search where attribute is null returns 2 films');
214 ok(
215   eq_array(
216     [ sort map { $_->id } @films ],
217     [ sort map { $_->id } $blrunner_dc, $blrunner ]
218   ),
219   'the correct ones'
220 );
221
222 # Test that a disconnect doesnt harm anything.
223 {
224     # SQLite is loud on disconnect/reconnect.
225     # This is solved in DBIC but not in ContextualFetch
226     local $SIG{__WARN__} = sub {
227       warn @_ unless $_[0] =~
228         /active statement handles|inactive database handle/;
229     };
230
231     Film->db_Main->disconnect;
232     @films = Film->search({ Rating => 'NC-17' });
233     ok(@films == 1 && $films[0]->id eq $gone->id, 'auto reconnection');
234
235     # Test discard_changes().
236     my $orig_director = $btaste->Director;
237     $btaste->Director('Lenny Bruce');
238     is($btaste->Director, 'Lenny Bruce', 'set new Director');
239     $btaste->discard_changes;
240     is($btaste->Director, $orig_director, 'discard_changes()');
241 }
242
243 SKIP: {
244   skip "ActiveState perl produces additional warnings", 3
245           if ($^O eq 'MSWin32');
246
247   Film->autoupdate(1);
248   my $btaste2 = Film->retrieve($btaste->id);
249   $btaste->NumExplodingSheep(18);
250   my @warnings;
251   local $SIG{__WARN__} = sub { push(@warnings, @_); };
252   {
253
254     # unhook from live object cache, so next one is not from cache
255     $btaste2->remove_from_object_index;
256     my $btaste3 = Film->retrieve($btaste->id);
257     is $btaste3->NumExplodingSheep, 18, "Class based AutoCommit";
258     $btaste3->autoupdate(0);    # obj a/c should override class a/c
259     is @warnings, 0, "No warnings so far";
260     $btaste3->NumExplodingSheep(13);
261   }
262   is @warnings, 1, "DESTROY without update warns";
263   Film->autoupdate(0);
264 }
265
266 {                               # update unchanged object
267   my $film   = Film->retrieve($btaste->id);
268   my $retval = $film->update;
269   is $retval, -1, "Unchanged object";
270 }
271
272 {                               # update deleted object
273   my $rt = "Royal Tenenbaums";
274   my $ten = Film->insert({ title => $rt, Rating => "R" });
275   $ten->rating(18);
276   Film->set_sql(drt => "DELETE FROM __TABLE__ WHERE title = ?");
277   Film->sql_drt->execute($rt);
278   my @films = Film->search({ title => $rt });
279   is @films, 0, "RT gone";
280   my $retval = eval { $ten->update };
281   like $@, qr/row not found/, "Update deleted object throws error";
282   $ten->discard_changes;
283 }
284
285 {
286   $btaste->autoupdate(1);
287   $btaste->NumExplodingSheep(32);
288   my $btaste2 = Film->retrieve($btaste->id);
289   is $btaste2->NumExplodingSheep, 32, "Object based AutoCommit";
290   $btaste->autoupdate(0);
291 }
292
293 # Primary key of 0
294 {
295   my $zero = Film->insert({ Title => 0, Rating => "U" });
296   ok defined $zero, "Create 0";
297   ok my $ret = Film->retrieve(0), "Retrieve 0";
298   is $ret->Title,  0,   "Title OK";
299   is $ret->Rating, "U", "Rating OK";
300 }
301
302 # Change after_update policy
303 SKIP: {
304         skip "DBIx::Class compat doesn't handle the exists stuff quite right yet", 4;
305   my $bt = Film->retrieve($btaste->id);
306   $bt->autoupdate(1);
307
308   $bt->rating("17");
309   ok !$bt->_attribute_exists('rating'), "changed column needs reloaded";
310   ok $bt->_attribute_exists('title'), "but we still have the title";
311
312   # Don't re-load
313   $bt->add_trigger(
314     after_update => sub {
315       my ($self, %args) = @_;
316       my $discard_columns = $args{discard_columns};
317       @$discard_columns = qw/title/;
318     }
319   );
320   $bt->rating("19");
321   ok $bt->_attribute_exists('rating'), "changed column needs reloaded";
322   ok !$bt->_attribute_exists('title'), "but no longer have the title";
323 }
324
325 # Make sure that we can have other accessors. (Bugfix in 0.28)
326 if (0) {
327   Film->mk_accessors(qw/temp1 temp2/);
328   my $blrunner = Film->retrieve('Bladerunner');
329   $blrunner->temp1("Foo");
330   $blrunner->NumExplodingSheep(2);
331   eval { $blrunner->update };
332   ok(!$@, "Other accessors");
333 }
334
335 # overloading
336 {
337   is "$blrunner", "Bladerunner", "stringify";
338
339   ok(Film->columns(Stringify => 'rating'), "Can change stringify column");
340   is "$blrunner", "R", "And still stringifies correctly";
341
342   ok(
343     Film->columns(Stringify => qw/title rating/),
344     "Can have multiple stringify columns"
345   );
346   is "$blrunner", "Bladerunner/R", "And still stringifies correctly";
347
348   no warnings 'once';
349   local *Film::stringify_self = sub { join ":", $_[0]->title, $_[0]->rating };
350   is "$blrunner", "Bladerunner:R", "Provide stringify_self()";
351 }
352
353 {
354   {
355     ok my $byebye = DeletingFilm->insert(
356       {
357         Title  => 'Goodbye Norma Jean',
358         Rating => 'PG',
359       }
360       ),
361       "Add a deleting Film";
362
363     isa_ok $byebye, 'DeletingFilm';
364     isa_ok $byebye, 'Film';
365     ok(Film->retrieve('Goodbye Norma Jean'), "Fetch it back again");
366   }
367   my $film;
368   eval { $film = Film->retrieve('Goodbye Norma Jean') };
369   ok !$film, "It destroys itself";
370 }
371
372 SKIP: {
373     skip "Caching has been removed", 5
374         if Film->isa("DBIx::Class::CDBICompat::NoObjectIndex");
375
376   # my bad taste is your bad taste
377   my $btaste  = Film->retrieve('Bad Taste');
378   my $btaste2 = Film->retrieve('Bad Taste');
379   is refaddr $btaste, refaddr $btaste2,
380     "Retrieving twice gives ref to same object";
381
382   my ($btaste5) = Film->search(title=>'Bad Taste');
383   is refaddr $btaste, refaddr $btaste5,
384     "Searching also gives ref to same object";
385
386   $btaste2->remove_from_object_index;
387   my $btaste3 = Film->retrieve('Bad Taste');
388   isnt refaddr $btaste2, refaddr $btaste3,
389     "Removing from object_index and retrieving again gives new object";
390
391   $btaste3->clear_object_index;
392   my $btaste4 = Film->retrieve('Bad Taste');
393   isnt refaddr $btaste2, refaddr $btaste4,
394     "Clearing cache and retrieving again gives new object";
395
396   $btaste=Film->insert({
397     Title             => 'Bad Taste 2',
398     Director          => 'Peter Jackson',
399     Rating            => 'R',
400     NumExplodingSheep => 2,
401   });
402   $btaste2 = Film->retrieve('Bad Taste 2');
403   is refaddr $btaste, refaddr $btaste2,
404     "Creating and retrieving gives ref to same object";
405
406 }
407
408 done_testing;