Test belongs_to accessor in-memory tie
[dbsrgits/DBIx-Class.git] / t / multi_create / in_memory.t
CommitLineData
d4d6aae3 1use strict;
2use warnings;
3
4use Test::More;
5use Test::Exception;
6use lib qw(t/lib);
7use DBICTest;
8
d4d6aae3 9my $schema = DBICTest->init_schema();
10
11# Test various new() invocations - this is all about backcompat, making
12# sure that insert() still works as expected by legacy code.
13#
14# What we essentially do is multi-instantiate objects, making sure nothing
15# gets inserted. Then we add some more objects to the mix either via
16# new_related() or by setting an accessor directly (or both) - again
17# expecting no inserts. Then after calling insert() on the starter object
a6a1ec32 18# we expect everything supplied to new() to get inserted, as well as any
19# relations whose PK's are necessary to complete the objects supplied
20# to new(). All other objects should be insert()able afterwards too.
d4d6aae3 21
22
9ffcb5b8 23{
24 my $new_artist = $schema->resultset("Artist")->new_result({ 'name' => 'Depeche Mode' });
25 my $new_related_cd = $new_artist->new_related('cds', { 'title' => 'Leave in Silence', 'year' => 1982});
26 eval {
27 $new_artist->insert;
28 $new_related_cd->insert;
29 };
30 is ($@, '', 'Staged insertion successful');
31 ok($new_artist->in_storage, 'artist inserted');
32 ok($new_related_cd->in_storage, 'new_related_cd inserted');
33}
34
35{
d3244de8 36 my $new_artist = $schema->resultset("Artist")->new_result({ 'name' => 'Depeche Mode' });
8cfe052c 37 my $new_related_cd = $new_artist->new_related('cds', { 'title' => 'Leave Slightly Noisily', 'year' => 1982});
38 eval {
39 $new_related_cd->insert;
40 };
41 is ($@, '', 'CD insertion survives by finding artist');
42 ok($new_artist->in_storage, 'artist inserted');
43 ok($new_related_cd->in_storage, 'new_related_cd inserted');
44}
45
46{
74608195 47 my $new_cd = $schema->resultset('CD')->new ({ 'title' => 'Leave Loudly While Singing Off Key', 'year' => 1982});
48 my $new_artist = $schema->resultset("Artist")->new ({ 'name' => 'Depeche Mode 2: Insertion Boogaloo' });
49 $new_cd->artist ($new_artist);
50
51 eval {
52 $new_cd->insert;
53 };
54 is ($@, '', 'CD insertion survives by inserting artist');
55 ok($new_cd->in_storage, 'new_related_cd inserted');
56 ok($new_artist->in_storage, 'artist inserted');
57
58 my $retrieved_cd = $schema->resultset('CD')->find ({ 'title' => 'Leave Loudly While Singing Off Key'});
59 ok ($retrieved_cd, 'CD found in db');
60 is ($retrieved_cd->artist->name, 'Depeche Mode 2: Insertion Boogaloo', 'Correct artist attached to cd');
61}
62
63{
9ffcb5b8 64 my $new_cd = $schema->resultset("CD")->new_result({});
65 my $new_related_artist = $new_cd->new_related('artist', { 'name' => 'Marillion',});
66 lives_ok (
67 sub {
68 $new_related_artist->insert;
69 $new_cd->title( 'Misplaced Childhood' );
70 $new_cd->year ( 1985 );
71 $new_cd->artist( $new_related_artist ); # For exact backward compatibility
72 $new_cd->insert;
73 },
74 'Reversed staged insertion successful'
75 );
76 ok($new_related_artist->in_storage, 'related artist inserted');
77 ok($new_cd->in_storage, 'cd inserted');
78}
74608195 79
80done_testing;