Ensure ::Schema::Versioned connects only once by reusing the main connection
[dbsrgits/DBIx-Class.git] / t / 60core.t
CommitLineData
70350518 1use strict;
be83e9ec 2use warnings;
70350518 3
4use Test::More;
d6df786a 5use Test::Exception;
00f3b1c7 6use Test::Warn;
70350518 7use lib qw(t/lib);
a5a7bb73 8use DBICTest ':DiffSQL';
70350518 9
ae515736 10my $schema = DBICTest->init_schema();
0567538f 11
f9db5527 12my @art = $schema->resultset("Artist")->search({ }, { order_by => 'name DESC'});
0567538f 13
d2f21b37 14is(@art, 3, "Three artists returned");
0567538f 15
16my $art = $art[0];
17
18is($art->name, 'We Are Goth', "Correct order too");
19
20$art->name('We Are In Rehab');
21
22is($art->name, 'We Are In Rehab', "Accessor update ok");
23
6dbea98e 24my %dirty = $art->get_dirty_columns();
d2f21b37 25is(scalar(keys(%dirty)), 1, '1 dirty column');
6dbea98e 26ok(grep($_ eq 'name', keys(%dirty)), 'name is dirty');
27
0567538f 28is($art->get_column("name"), 'We Are In Rehab', 'And via get_column');
29
30ok($art->update, 'Update run');
31
6dbea98e 32my %not_dirty = $art->get_dirty_columns();
d2f21b37 33is(scalar(keys(%not_dirty)), 0, 'Nothing is dirty');
6dbea98e 34
00f3b1c7 35throws_ok ( sub {
6dbea98e 36 my $ret = $art->make_column_dirty('name2');
00f3b1c7 37}, qr/No such column 'name2'/, 'Failed to make non-existent column dirty');
38
6dbea98e 39$art->make_column_dirty('name');
40my %fake_dirty = $art->get_dirty_columns();
d2f21b37 41is(scalar(keys(%fake_dirty)), 1, '1 fake dirty column');
6dbea98e 42ok(grep($_ eq 'name', keys(%fake_dirty)), 'name is fake dirty');
43
de5ce481 44ok($art->update, 'Update run');
45
ae515736 46my $record_jp = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search(undef, { prefetch => 'cds' })->next;
47
48ok($record_jp, "prefetch on same rel okay");
49
50my $record_fn = $schema->resultset("Artist")->search(undef, { join => 'cds' })->search({'cds.cdid' => '1'}, {join => 'artist_undirected_maps'})->next;
51
52ok($record_fn, "funny join is okay");
53
f9db5527 54@art = $schema->resultset("Artist")->search({ name => 'We Are In Rehab' });
0567538f 55
d2f21b37 56is(@art, 1, "Changed artist returned by search");
0567538f 57
d2f21b37 58is($art[0]->artistid, 3,'Correct artist too');
0567538f 59
d6df786a 60lives_ok (sub { $art->delete }, 'Cascading delete on Ordered has_many works' ); # real test in ordered.t
0567538f 61
f9db5527 62@art = $schema->resultset("Artist")->search({ });
0567538f 63
d2f21b37 64is(@art, 2, 'And then there were two');
0567538f 65
63bb9738 66is($art->in_storage, 0, "It knows it's dead");
0567538f 67
de5ce481 68lives_ok { $art->update } 'No changes so update should be OK';
69
d6df786a 70dies_ok ( sub { $art->delete }, "Can't delete twice");
0567538f 71
72is($art->name, 'We Are In Rehab', 'But the object is still live');
73
74$art->insert;
75
76ok($art->in_storage, "Re-created");
77
f9db5527 78@art = $schema->resultset("Artist")->search({ });
0567538f 79
d2f21b37 80is(@art, 3, 'And now there are three again');
0567538f 81
f9db5527 82my $new = $schema->resultset("Artist")->create({ artistid => 4 });
0567538f 83
d2f21b37 84is($new->artistid, 4, 'Create produced record ok');
0567538f 85
f9db5527 86@art = $schema->resultset("Artist")->search({ });
0567538f 87
d2f21b37 88is(@art, 4, "Oh my god! There's four of them!");
0567538f 89
90$new->set_column('name' => 'Man With A Fork');
91
92is($new->name, 'Man With A Fork', 'set_column ok');
93
94$new->discard_changes;
95
96ok(!defined $new->name, 'Discard ok');
97
98$new->name('Man With A Spoon');
99
100$new->update;
101
70350518 102my $new_again = $schema->resultset("Artist")->find(4);
0567538f 103
104is($new_again->name, 'Man With A Spoon', 'Retrieved correctly');
105
9bbd8963 106is($new_again->ID, 'DBICTest::Artist|artist|artistid=4', 'unique object id generated correctly');
1f6715ab 107
8273e845 108# test that store_column is called once for create() for non sequence columns
52c53388 109{
110 ok(my $artist = $schema->resultset('Artist')->create({name => 'store_column test'}));
111 is($artist->name, 'X store_column test'); # used to be 'X X store...'
b236052f 112
a22688ab 113 # call store_column even though the column doesn't seem to be dirty
b236052f 114 $artist->name($artist->name);
a22688ab 115 is($artist->name, 'X X store_column test');
b236052f 116 ok($artist->is_column_changed('name'), 'changed column marked as dirty');
117
52c53388 118 $artist->delete;
119}
120
450e6dbf 121# deprecation of rolled-out search
122warnings_exist {
123 $schema->resultset('Artist')->search_rs(id => 4)
124} qr/\Qsearch( %condition ) is deprecated/, 'Deprecation warning on ->search( %condition )';
125
49ca473e 126# this has been warning for 4 years, killing
127throws_ok {
128 $schema->resultset('Artist')->find(artistid => 4);
129} qr|expects either a column/value hashref, or a list of values corresponding to the columns of the specified unique constraint|;
a87eb971 130
f9db5527 131is($schema->resultset("Artist")->count, 4, 'count ok');
0567538f 132
b3e1f1f5 133# test find_or_new
134{
135 my $existing_obj = $schema->resultset('Artist')->find_or_new({
136 artistid => 4,
137 });
138
139 is($existing_obj->name, 'Man With A Spoon', 'find_or_new: found existing artist');
140 ok($existing_obj->in_storage, 'existing artist is in storage');
141
142 my $new_obj = $schema->resultset('Artist')->find_or_new({
143 artistid => 5,
144 name => 'find_or_new',
145 });
146
147 is($new_obj->name, 'find_or_new', 'find_or_new: instantiated a new artist');
63bb9738 148 is($new_obj->in_storage, 0, 'new artist is not in storage');
b3e1f1f5 149}
150
f9db5527 151my $cd = $schema->resultset("CD")->find(1);
076a6864 152my %cols = $cd->get_columns;
153
d2f21b37 154is(keys %cols, 6, 'get_columns number of columns ok');
076a6864 155
156is($cols{title}, 'Spoonful of bees', 'get_columns values ok');
157
158%cols = ( title => 'Forkful of bees', year => 2005);
159$cd->set_columns(\%cols);
160
161is($cd->title, 'Forkful of bees', 'set_columns ok');
162
163is($cd->year, 2005, 'set_columns ok');
164
165$cd->discard_changes;
166
20518cb4 167# check whether ResultSource->columns returns columns in order originally supplied
168my @cd = $schema->source("CD")->columns;
571dced3 169
a1cb5921 170is_deeply( \@cd, [qw/cdid artist title year genreid single_track/], 'column order');
571dced3 171
82a96700 172$cd = $schema->resultset("CD")->search({ title => 'Spoonful of bees' }, { columns => ['title'] })->next;
90f3f5ff 173is($cd->title, 'Spoonful of bees', 'subset of columns returned correctly');
174
02ddfe6e 175$cd = $schema->resultset("CD")->search(undef, { '+columns' => [ { name => 'artist.name' } ], join => [ 'artist' ] })->find(1);
5ac6a044 176
177is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
178is($cd->get_column('name'), 'Caterwauler McCrae', 'Additional column returned');
179
67ba6646 180# check if new syntax +columns also works for this
53998003 181$cd = $schema->resultset("CD")->search(undef, { '+columns' => [ { name => 'artist.name' } ], join => [ 'artist' ] })->find(1);
67ba6646 182
183is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
184is($cd->get_column('name'), 'Caterwauler McCrae', 'Additional column returned');
185
186# check if new syntax for +columns select specifiers works for this
187$cd = $schema->resultset("CD")->search(undef, { '+columns' => [ {artist_name => 'artist.name'} ], join => [ 'artist' ] })->find(1);
188
189is($cd->title, 'Spoonful of bees', 'Correct CD returned with include');
190is($cd->get_column('artist_name'), 'Caterwauler McCrae', 'Additional column returned');
5ac6a044 191
82a96700 192# update_or_insert
f9db5527 193$new = $schema->resultset("Track")->new( {
0567538f 194 trackid => 100,
195 cd => 1,
0567538f 196 title => 'Insert or Update',
43556c5d 197 last_updated_on => '1973-07-19 12:01:02'
0567538f 198} );
82a96700 199$new->update_or_insert;
200ok($new->in_storage, 'update_or_insert insert ok');
0567538f 201
202# test in update mode
d6df786a 203$new->title('Insert or Update - updated');
82a96700 204$new->update_or_insert;
d6df786a 205is( $schema->resultset("Track")->find(100)->title, 'Insert or Update - updated', 'update_or_insert update ok');
0567538f 206
03a1819f 207SKIP: {
cb566613 208 skip "Tests require " . DBIx::Class::Optional::Dependencies->req_missing_for ('test_dt_sqlite'), 13
209 unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_dt_sqlite');
210
211 # test get_inflated_columns with objects
212 my $event = $schema->resultset('Event')->search->first;
213 my %edata = $event->get_inflated_columns;
214 is($edata{'id'}, $event->id, 'got id');
215 isa_ok($edata{'starts_at'}, 'DateTime', 'start_at is DateTime object');
216 isa_ok($edata{'created_on'}, 'DateTime', 'create_on DateTime object');
217 is($edata{'starts_at'}, $event->starts_at, 'got start date');
218 is($edata{'created_on'}, $event->created_on, 'got created date');
219
03a1819f 220
cb566613 221 # get_inflated_columns w/relation and accessor alias
03a1819f 222 isa_ok($new->updated_date, 'DateTime', 'have inflated object via accessor');
223 my %tdata = $new->get_inflated_columns;
224 is($tdata{'trackid'}, 100, 'got id');
225 isa_ok($tdata{'cd'}, 'DBICTest::CD', 'cd is CD object');
226 is($tdata{'cd'}->id, 1, 'cd object is id 1');
d6df786a 227 is(
228 $tdata{'position'},
229 $schema->resultset ('Track')->search ({cd => 1})->count,
230 'Ordered assigned proper position',
231 );
232 is($tdata{'title'}, 'Insert or Update - updated');
03a1819f 233 is($tdata{'last_updated_on'}, '1973-07-19T12:01:02');
234 isa_ok($tdata{'last_updated_on'}, 'DateTime', 'inflated accessored column');
235}
ba4a6453 236
00f3b1c7 237throws_ok (sub {
238 $schema->class("Track")->load_components('DoesNotExist');
239}, qr!Can't locate DBIx/Class/DoesNotExist.pm!, 'exception on nonexisting component');
0567538f 240
1edaf6fe 241is($schema->class("Artist")->field_name_for->{name}, 'artist name', 'mk_classdata usage ok');
90e6de6c 242
54540863 243my $search = [ { 'tags.tag' => 'Cheesy' }, { 'tags.tag' => 'Blue' } ];
244
fb88ca2c 245my $or_rs = $schema->resultset("CD")->search_rs($search, { join => 'tags',
6aeb9185 246 order_by => 'cdid' });
a258ee5d 247is($or_rs->all, 5, 'Joined search with OR returned correct number of rows');
248is($or_rs->count, 5, 'Search count with OR ok');
54540863 249
a258ee5d 250my $collapsed_or_rs = $or_rs->search ({}, { distinct => 1 }); # induce collapse
251is ($collapsed_or_rs->all, 4, 'Collapsed joined search with OR returned correct number of rows');
252is ($collapsed_or_rs->count, 4, 'Collapsed search count with OR ok');
6aeb9185 253
00f3b1c7 254# make sure sure distinct on a grouped rs is warned about
a2f22854 255{
256 my $cd_rs = $schema->resultset ('CD')
257 ->search ({}, { distinct => 1, group_by => 'title' });
258 warnings_exist (sub {
259 $cd_rs->next;
260 }, qr/Useless use of distinct/, 'UUoD warning');
261}
00f3b1c7 262
1cc3ce1e 263{
d2f21b37 264 my $tcount = $schema->resultset('Track')->search(
286f32b3 265 {},
d2f21b37 266 {
11d68671 267 select => [ qw/position title/ ],
268 distinct => 1,
286f32b3 269 }
270 );
d2f21b37 271 is($tcount->count, 13, 'multiple column COUNT DISTINCT ok');
272
11d68671 273 $tcount = $schema->resultset('Track')->search(
274 {},
275 {
276 columns => [ qw/position title/ ],
277 distinct => 1,
278 }
279 );
280 is($tcount->count, 13, 'multiple column COUNT DISTINCT ok');
281
282 $tcount = $schema->resultset('Track')->search(
283 {},
284 {
285 group_by => [ qw/position title/ ]
286 }
287 );
8273e845 288 is($tcount->count, 13, 'multiple column COUNT DISTINCT using column syntax ok');
f2de4889 289}
584e74ed 290
f9db5527 291my $tag_rs = $schema->resultset('Tag')->search(
6aeb9185 292 [ { 'me.tag' => 'Cheesy' }, { 'me.tag' => 'Blue' } ]);
293
fb88ca2c 294my $rel_rs = $tag_rs->search_related('cd', {}, { order_by => 'cd.cdid'} );
6aeb9185 295
a258ee5d 296is($rel_rs->count, 5, 'Related search ok');
6aeb9185 297
d2f21b37 298is($or_rs->next->cdid, $rel_rs->next->cdid, 'Related object ok');
a4731ae0 299$or_rs->reset;
300$rel_rs->reset;
a953d8d9 301
a2f22854 302# at this point there should be no active statements
303# (finish() was called everywhere, either explicitly via
304# reset() or on DESTROY)
305for (keys %{$schema->storage->dbh->{CachedKids}}) {
306 fail("Unreachable cached statement still active: $_")
307 if $schema->storage->dbh->{CachedKids}{$_}->FETCH('Active');
308}
309
4c4ccf29 310my $tag = $schema->resultset('Tag')->search(
02ddfe6e 311 [ { 'me.tag' => 'Blue' } ],
312 { columns => 'tagid' }
313)->next;
4c4ccf29 314
d2f21b37 315ok($tag->has_column_loaded('tagid'), 'Has tagid loaded');
316ok(!$tag->has_column_loaded('tag'), 'Has not tag loaded');
4c4ccf29 317
a953d8d9 318ok($schema->storage(), 'Storage available');
319
16b4fd26 320{
321 my $rs = $schema->resultset("Artist")->search({
322 -and => [
323 artistid => { '>=', 1 },
324 artistid => { '<', 3 }
325 ]
326 });
327
84f7e8a1 328 $rs->update({ rank => 6134 });
16b4fd26 329
330 my $art;
331
332 $art = $schema->resultset("Artist")->find(1);
84f7e8a1 333 is($art->rank, 6134, 'updated first artist rank');
16b4fd26 334
335 $art = $schema->resultset("Artist")->find(2);
84f7e8a1 336 is($art->rank, 6134, 'updated second artist rank');
16b4fd26 337}
338
825135d8 339# test source_name
340{
341 # source_name should be set for normal modules
342 is($schema->source('CD')->source_name, 'CD', 'source_name is set to moniker');
a4731ae0 343
825135d8 344 # test the result source that sets source_name explictly
345 ok($schema->source('SourceNameArtists'), 'SourceNameArtists result source exists');
0009fa49 346
825135d8 347 my @artsn = $schema->resultset('SourceNameArtists')->search({}, { order_by => 'name DESC' });
d2f21b37 348 is(@artsn, 4, "Four artists returned");
8273e845 349
b1fb2c94 350 # make sure subclasses that don't set source_name are ok
93405cf0 351 ok($schema->source('ArtistSubclass'), 'ArtistSubclass exists');
825135d8 352}
bab77431 353
9c2c91ea 354my $newbook = $schema->resultset( 'Bookmark' )->find(1);
355
d6df786a 356lives_ok (sub { my $newlink = $newbook->link}, "stringify to false value doesn't cause error");
9c2c91ea 357
825135d8 358# test cascade_delete through many_to_many relations
359{
360 my $art_del = $schema->resultset("Artist")->find({ artistid => 1 });
d6df786a 361 lives_ok (sub { $art_del->delete }, 'Cascading delete on Ordered has_many works' ); # real test in ordered.t
d2f21b37 362 is( $schema->resultset("CD")->search({artist => 1}), 0, 'Cascading through has_many top level.');
363 is( $schema->resultset("CD_to_Producer")->search({cd => 1}), 0, 'Cascading through has_many children.');
825135d8 364}
bab77431 365
825135d8 366# test column_info
367{
368 $schema->source("Artist")->{_columns}{'artistid'} = {};
d9916234 369 $schema->source("Artist")->column_info_from_storage(1);
bab77431 370
825135d8 371 my $typeinfo = $schema->source("Artist")->column_info('artistid');
372 is($typeinfo->{data_type}, 'INTEGER', 'column_info ok');
373 $schema->source("Artist")->column_info('artistid');
52416317 374 ok($schema->source("Artist")->{_columns_info_loaded} == 1, 'Columns info loaded flag set');
375}
376
377# test columns_info
378{
379 $schema->source("Artist")->{_columns}{'artistid'} = {};
380 $schema->source("Artist")->column_info_from_storage(1);
381 $schema->source("Artist")->{_columns_info_loaded} = 0;
382
383 is_deeply (
384 $schema->source('Artist')->columns_info,
385 {
386 artistid => {
387 data_type => "INTEGER",
388 default_value => undef,
389 is_nullable => 0,
390 size => undef
391 },
392 charfield => {
393 data_type => "char",
394 default_value => undef,
395 is_nullable => 1,
396 size => 10
397 },
398 name => {
399 data_type => "varchar",
400 default_value => undef,
401 is_nullable => 1,
402 is_numeric => 0,
403 size => 100
404 },
405 rank => {
406 data_type => "integer",
407 default_value => 13,
408 is_nullable => 0,
409 size => undef
410 },
411 },
412 'columns_info works',
413 );
414
415 ok($schema->source("Artist")->{_columns_info_loaded} == 1, 'Columns info loaded flag set');
416
417 is_deeply (
418 $schema->source('Artist')->columns_info([qw/artistid rank/]),
419 {
420 artistid => {
421 data_type => "INTEGER",
422 default_value => undef,
423 is_nullable => 0,
424 size => undef
425 },
426 rank => {
427 data_type => "integer",
428 default_value => 13,
429 is_nullable => 0,
430 size => undef
431 },
432 },
433 'limited columns_info works',
434 );
825135d8 435}
bab77431 436
a48e92d7 437# test source_info
438{
439 my $expected = {
440 "source_info_key_A" => "source_info_value_A",
441 "source_info_key_B" => "source_info_value_B",
442 "source_info_key_C" => "source_info_value_C",
443 };
444
445 my $sinfo = $schema->source("Artist")->source_info;
446
447 is_deeply($sinfo, $expected, 'source_info data works');
448}
449
825135d8 450# test remove_columns
451{
4738027b 452 is_deeply(
453 [$schema->source('CD')->columns],
454 [qw/cdid artist title year genreid single_track/],
455 'initial columns',
456 );
457
458 $schema->source('CD')->remove_columns('coolyear'); #should not delete year
459 is_deeply(
460 [$schema->source('CD')->columns],
461 [qw/cdid artist title year genreid single_track/],
462 'nothing removed when removing a non-existent column',
463 );
464
465 $schema->source('CD')->remove_columns('genreid', 'year');
466 is_deeply(
467 [$schema->source('CD')->columns],
468 [qw/cdid artist title single_track/],
469 'removed two columns',
470 );
471
472 my $priv_columns = $schema->source('CD')->_columns;
473 ok(! exists $priv_columns->{'year'}, 'year purged from _columns');
474 ok(! exists $priv_columns->{'genreid'}, 'genreid purged from _columns');
825135d8 475}
bab77431 476
ade8df5b 477# test resultsource->table return value when setting
478{
479 my $class = $schema->class('Event');
ade8df5b 480 my $table = $class->table($class->table);
481 is($table, $class->table, '->table($table) returns $table');
482}
0e80c4ca 483
484#make sure insert doesn't use set_column
485{
486 my $en_row = $schema->resultset('Encoded')->new_result({encoded => 'wilma'});
487 is($en_row->encoded, 'amliw', 'new encodes');
488 $en_row->insert;
489 is($en_row->encoded, 'amliw', 'insert does not encode again');
490}
3bb4eb8f 491
68888c09 492#make sure multicreate encoding still works
493{
494 my $empl_rs = $schema->resultset('Employee');
495
496 my $empl = $empl_rs->create ({
497 name => 'Secret holder',
498 secretkey => {
499 encoded => 'CAN HAZ',
500 },
501 });
502 is($empl->secretkey->encoded, 'ZAH NAC', 'correctly encoding on multicreate');
503
504 my $empl2 = $empl_rs->create ({
505 name => 'Same secret holder',
506 secretkey => {
507 encoded => 'CAN HAZ',
508 },
509 });
510 is($empl2->secretkey->encoded, 'ZAH NAC', 'correctly encoding on preexisting multicreate');
511
512 $empl_rs->create ({
513 name => 'cat1',
514 secretkey => {
515 encoded => 'CHEEZBURGER',
516 keyholders => [
517 {
518 name => 'cat2',
519 },
520 {
521 name => 'cat3',
522 },
523 ],
524 },
525 });
526
527 is($empl_rs->find({name => 'cat1'})->secretkey->encoded, 'REGRUBZEEHC', 'correct secret in database for empl1');
528 is($empl_rs->find({name => 'cat2'})->secretkey->encoded, 'REGRUBZEEHC', 'correct secret in database for empl2');
529 is($empl_rs->find({name => 'cat3'})->secretkey->encoded, 'REGRUBZEEHC', 'correct secret in database for empl3');
530
531}
532
4376a157 533# make sure that obsolete handle-based source tracking continues to work for the time being
534{
535 my $handle = $schema->source('Artist')->handle;
536
51c9ead2 537 my $rowdata = { $schema->resultset('Artist')->next->get_columns };
4376a157 538
539 my $rs = DBIx::Class::ResultSet->new($handle);
540 my $rs_result = $rs->next;
541 isa_ok( $rs_result, 'DBICTest::Artist' );
542 is_deeply (
543 { $rs_result->get_columns },
544 $rowdata,
545 'Correct columns retrieved (rset/source link healthy)'
546 );
547
548 my $row = DBICTest::Artist->new({ -source_handle => $handle });
549 is_deeply(
550 { $row->get_columns },
551 {},
552 'No columns yet'
553 );
554
555 # store_column to fool the _orig_ident tracker
556 $row->store_column('artistid', $rowdata->{artistid});
557 $row->in_storage(1);
558
559 $row->discard_changes;
560 is_deeply(
561 { $row->get_columns },
562 $rowdata,
563 'Storage refetch successful'
564 );
565}
566
3f1d61d0 567# test to make sure that calling ->new() on a resultset object gives
568# us a row object
569{
570 my $new_artist = $schema->resultset('Artist')->new({});
571 isa_ok( $new_artist, 'DBIx::Class::Row', '$rs->new gives a row object' );
572}
573
574
3bb4eb8f 575# make sure we got rid of the compat shims
576SKIP: {
7f08eb01 577 my $remove_version = 0.083;
578 skip "Remove in $remove_version", 3 if $DBIx::Class::VERSION < $remove_version;
3bb4eb8f 579
1225a9e0 580 for (qw/compare_relationship_keys pk_depends_on resolve_condition/) {
7f08eb01 581 ok (! DBIx::Class::ResultSource->can ($_), "$_ no longer provided by DBIx::Class::ResultSource, removed before $remove_version");
3bb4eb8f 582 }
583}
42a87bbb 584
585#------------------------------
586# READ THIS BEFORE "FIXING"
587#------------------------------
588#
589# make sure we got rid of discard_changes mess - this is a mess and a source
590# of great confusion. Here I simply die if the methods are available, which
591# is wrong on its own (we *have* to provide some sort of back-compat, even
592# if with warnings). Here is how I envision things should actually be. Also
593# note that a lot of the deprecation can be started today (i.e. the switch
594# from get_from_storage to copy_from_storage). So:
595#
596# $row->discard_changes =>
597# warning, and delegation to reload_from_storage
598#
599# $row->reload_from_storage =>
600# does what discard changes did in 0.08 - issues a query to the db
601# and repopulates all column slots, regardless of dirty states etc.
602#
603# $row->revert_changes =>
604# does what discard_changes should have done initially (before it became
605# a dual-purpose call). In order to make this work we will have to
606# augment $row to carry its own initial-state, much like svn has a
607# copy of the current checkout in contrast to cvs.
608#
609# my $db_row = $row->get_from_storage =>
610# warns and delegates to an improved name copy_from_storage, with the
611# same semantics
612#
613# my $db_row = $row->copy_from_storage =>
614# a much better/descriptive name than get_from_storage
615#
616#------------------------------
617# READ THIS BEFORE "FIXING"
618#------------------------------
619#
620SKIP: {
621 skip "Something needs to be done before 0.09", 2 if $DBIx::Class::VERSION < 0.09;
622
623 my $row = $schema->resultset ('Artist')->next;
624
625 for (qw/discard_changes get_from_storage/) {
626 ok (! $row->can ($_), "$_ needs *some* sort of facelift before 0.09 ships - current state of affairs is unacceptable");
627 }
628}
629
73d47f9f 630throws_ok { $schema->resultset} qr/resultset\(\) expects a source name/, 'resultset with no argument throws exception';
631
42a87bbb 632done_testing;