use lib qw(t/lib);
use DBICTest;
+sub mc_diag { diag (@_) if $ENV{DBIC_MULTICREATE_DEBUG} };
+
plan tests => 77;
my $schema = DBICTest->init_schema();
-diag '* simple create + parent (the stuff $rs belongs_to)';
+mc_diag '* simple create + parent (the stuff $rs belongs_to)';
eval {
my $cd = $schema->resultset('CD')->create({
artist => {
isa_ok($cd->artist, 'DBICTest::Artist', 'Created related Artist');
is($cd->artist->name, 'Fred Bloggs', 'Artist created correctly');
};
-diag $@ if $@;
+mc_diag $@ if $@;
-diag '* same as above but the child and parent have no values, except for an explicit parent pk';
+mc_diag '* same as above but the child and parent have no values, except for an explicit parent pk';
eval {
my $bm_rs = $schema->resultset('Bookmark');
my $bookmark = $bm_rs->create({
'Bookmark and link made it to the DB',
);
};
-diag $@ if $@;
+mc_diag $@ if $@;
-diag '* create over > 1 levels of has_many create (A => { has_many => { B => has_many => C } } )';
+mc_diag '* create over > 1 levels of has_many create (A => { has_many => { B => has_many => C } } )';
eval {
my $artist = $schema->resultset('Artist')->first;
my $cd = $artist->create_related (cds => {
is($cd->tags->first->tag, 'rock', 'Tag created correctly');
};
-diag $@ if $@;
+mc_diag $@ if $@;
throws_ok (
sub {
'create via update of multi relationships throws an exception'
);
-diag '* Create m2m while originating in the linker table';
+mc_diag '* Create m2m while originating in the linker table';
eval {
my $artist = $schema->resultset('Artist')->first;
my $c2p = $schema->resultset('CD_to_Producer')->create ({
is ($cd->tracks->count, 3, 'CD has 3 tracks');
};
-diag $@ if $@;
+mc_diag $@ if $@;
-diag (<<'DG');
+mc_diag (<<'DG');
* Create over > 1 levels of might_have with multiple has_many and multiple m2m
but starting at a has_many level
'Producers named correctly',
);
};
-diag $@ if $@;
+mc_diag $@ if $@;
-diag (<<'DG');
+mc_diag (<<'DG');
* Same as above but starting at the might_have directly
Track -> might have -> Single -> has_many -> Tracks
'Producers named correctly',
);
};
-diag $@ if $@;
+mc_diag $@ if $@;
-diag '* Test might_have again but with a PK == FK in the middle (obviously not specified)';
+mc_diag '* Test might_have again but with a PK == FK in the middle (obviously not specified)';
eval {
my $artist = $schema->resultset('Artist')->first;
my $cd = $schema->resultset('CD')->create ({
'Images named correctly after search',
);
};
-diag $@ if $@;
+mc_diag $@ if $@;
-diag '* Test might_have again but with just a PK and FK (neither specified) in the mid-table';
+mc_diag '* Test might_have again but with just a PK and FK (neither specified) in the mid-table';
eval {
my $cd = $schema->resultset('CD')->first;
my $track = $schema->resultset ('Track')->create ({
'Lyrics text via search matches',
);
};
-diag $@ if $@;
+mc_diag $@ if $@;
-diag (<<'DG');
+mc_diag (<<'DG');
* Test a multilevel might-have with a PK == FK in the might_have/has_many table
CD -> might have -> Artwork
'Artists named correctly queried via a new search',
);
};
-diag $@ if $@;
+mc_diag $@ if $@;
-diag '* Nested find_or_create';
+mc_diag '* Nested find_or_create';
eval {
my $newartist2 = $schema->resultset('Artist')->find_or_create({
name => 'Fred 3',
});
is($newartist2->name, 'Fred 3', 'Created new artist with cds via find_or_create');
};
-diag $@ if $@;
+mc_diag $@ if $@;
-diag '* Multiple same level has_many create';
+mc_diag '* Multiple same level has_many create';
eval {
my $artist2 = $schema->resultset('Artist')->create({
name => 'Fred 4',
is($artist2->in_storage, 1, 'artist with duplicate rels inserted okay');
};
-diag $@ if $@;
+mc_diag $@ if $@;
-diag '* First create_related pass';
+mc_diag '* First create_related pass';
eval {
my $artist = $schema->resultset('Artist')->first;
ok( $track && ref $track eq 'DBICTest::Track', 'Got Expected Track Class');
}
};
-diag $@ if $@;
+mc_diag $@ if $@;
-diag '* second create_related with same arguments';
+mc_diag '* second create_related with same arguments';
eval {
my $artist = $schema->resultset('Artist')->first;
ok( $track && ref $track eq 'DBICTest::Track', 'Got Expected Track Class');
}
};
-diag $@ if $@;
+mc_diag $@ if $@;
-diag '* create of parents of a record linker table';
+mc_diag '* create of parents of a record linker table';
eval {
my $cdp = $schema->resultset('CD_to_Producer')->create({
cd => { artist => 1, title => 'foo', year => 2000 },
});
ok($cdp, 'join table record created ok');
};
-diag $@ if $@;
+mc_diag $@ if $@;
eval {
my $kurt_cobain = { name => 'Kurt Cobain' };
is($a->cds && $a->cds->first && $a->cds->first->title,
'In Utero', 'CD insertion ok');
};
-diag $@ if $@;
+mc_diag $@ if $@;
=pod
# This test case has been moved to t/96multi_create/cd_single.t
is($a->name, 'Pink Floyd', 'Artist insertion ok');
is($a->cds && $a->cds->first->title, 'The Wall', 'CD insertion ok');
};
-diag $@ if $@;
+mc_diag $@ if $@;
=cut
-diag '* Create foreign key col obj including PK (See test 20 in 66relationships.t)';
+mc_diag '* Create foreign key col obj including PK (See test 20 in 66relationships.t)';
## Create foreign key col obj including PK
## See test 20 in 66relationships.t
eval {
my $new_cd = $schema->resultset("CD")->create($new_cd_hashref);
is($new_cd->artist->id, 17, 'new id retained okay');
};
-diag $@ if $@;
+mc_diag $@ if $@;
eval {
$schema->resultset("CD")->create({
};
is($@, '', 'new cd created without clash on related artist');
-diag '* Make sure exceptions from errors in created rels propogate';
+mc_diag '* Make sure exceptions from errors in created rels propogate';
eval {
my $t = $schema->resultset("Track")->new({ cd => { artist => undef } });
#$t->cd($t->new_related('cd', { artist => undef } ) );
};
like($@, qr/cd.artist may not be NULL/, "Exception propogated properly");
-diag '* Test multi create over many_to_many';
+mc_diag '* Test multi create over many_to_many';
eval {
$schema->resultset('CD')->create ({
artist => {