Fix find() with an explicit constraint name (... { key => $cname } )
[dbsrgits/DBIx-Class.git] / t / relationship / update_or_create_multi.t
CommitLineData
2284af7e 1use strict;
2use warnings;
3
4use Test::More;
5use Test::Exception;
b7743dab 6use Test::Warn;
2284af7e 7use lib qw(t/lib);
8use DBICTest;
9use DBIC::SqlMakerTest;
10
11my $schema = DBICTest->init_schema();
a2287768 12my $sdebug = $schema->storage->debug;
2284af7e 13
2284af7e 14my $artist = $schema->resultset ('Artist')->first;
15
16my $genre = $schema->resultset ('Genre')
17 ->create ({ name => 'par excellence' });
b7743dab 18my $genre_cds = $genre->cds;
2284af7e 19
b7743dab 20is ($genre_cds->count, 0, 'No cds yet');
2284af7e 21
22# expect a create
23$genre->update_or_create_related ('cds', {
24 artist => $artist,
25 year => 2009,
26 title => 'the best thing since sliced bread',
27});
28
29# verify cd was inserted ok
b7743dab 30is ($genre_cds->count, 1, 'One cd');
31my $cd = $genre_cds->first;
2284af7e 32is_deeply (
33 { map { $_, $cd->get_column ($_) } qw/artist year title/ },
34 {
35 artist => $artist->id,
36 year => 2009,
37 title => 'the best thing since sliced bread',
38 },
39 'CD created correctly',
40);
41
42# expect a year update on the only related row
b7743dab 43# (non-qunique column + unique column set as disambiguator)
2284af7e 44$genre->update_or_create_related ('cds', {
45 year => 2010,
46 title => 'the best thing since sliced bread',
b7743dab 47 artist => 1,
2284af7e 48});
49
50# re-fetch the cd, verify update
51is ($genre->search_related( 'cds' )->count, 1, 'Still one cd');
b7743dab 52$cd = $genre_cds->first;
2284af7e 53is_deeply (
54 { map { $_, $cd->get_column ($_) } qw/artist year title/ },
55 {
56 artist => $artist->id,
57 year => 2010,
58 title => 'the best thing since sliced bread',
59 },
60 'CD year column updated correctly',
61);
62
b7743dab 63# expect a failing create:
64# the unique constraint is not complete, and there is nothing
65# in the database with such a year yet - insertion will fail due
66# to missing artist fk
67throws_ok {
68 $genre->update_or_create_related ('cds', {
69 year => 2020,
70 title => 'the best thing since sliced bread',
71 })
72} qr/\Qcd.artist may not be NULL/, 'ambiguous find + create failed';
2284af7e 73
74# expect a create, after a failed search using *only* the
75# *current* relationship and the unique column constraints
76# (so no year)
77my @sql;
78$schema->storage->debugcb(sub { push @sql, $_[1] });
79$schema->storage->debug (1);
80
81$genre->update_or_create_related ('cds', {
82 title => 'the best thing since vertical toasters',
83 artist => $artist,
84 year => 2012,
85});
86
87$schema->storage->debugcb(undef);
a2287768 88$schema->storage->debug ($sdebug);
2284af7e 89
0be2023f 90my ($search_sql) = $sql[0] =~ /^(SELECT .+?)\:/;
2284af7e 91is_same_sql (
0be2023f 92 $search_sql,
2284af7e 93 'SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track
94 FROM cd me
95 WHERE ( me.artist = ? AND me.title = ? AND me.genreid = ? )
96 ',
97 'expected select issued',
98);
99
100# a has_many search without a unique constraint makes no sense
101# but I am not sure what to test for - leaving open
b7743dab 102
103done_testing;