8 use Path::Class::File ();
9 use List::Util qw/shuffle/;
11 my $schema = DBICTest->init_schema();
13 # The map below generates stuff like:
14 # [ qw/artistid name/ ],
21 my $start_id = 'populateXaaaaaa';
25 $schema->populate('Artist', [ [ qw/artistid name/ ], map { [ ($_ + $offset) => $start_id++ ] } shuffle ( 1 .. $rows ) ] );
27 $schema->resultset ('Artist')->search ({ name => { -like => 'populateX%' } })->count,
29 'populate created correct number of rows with massive AoA bulk insert',
32 my $artist = $schema->resultset ('Artist')
33 ->search ({ 'cds.title' => { '!=', undef } }, { join => 'cds' })
35 my $ex_title = $artist->cds->first->title;
39 $schema->populate('CD', [
42 artist => $artist->id,
46 } ('Huey', 'Dewey', $ex_title, 'Louie')
48 }, qr/columns .+ are not unique for populate slice.+$ex_title/ms, 'Readable exception thrown for failed populate');
50 ## make sure populate honors fields/orders in list context
52 my @links = $schema->populate('Link', [
58 my $link2 = shift @links;
59 is($link2->id, 2, 'Link 2 id');
60 is($link2->url, 'burl', 'Link 2 url');
61 is($link2->title, 'btitle', 'Link 2 title');
64 @links = $schema->populate('Link', [
70 my $link3 = shift @links;
71 is($link3->id, 3, 'Link 3 id');
72 is($link3->url, 'curl', 'Link 3 url');
73 is($link3->title, 'ctitle', 'Link 3 title');
75 ## not all physical columns
76 @links = $schema->populate('Link', [
82 my $link4 = shift @links;
83 is($link4->id, 4, 'Link 4 id');
84 is($link4->url, undef, 'Link 4 url');
85 is($link4->title, 'dtitle', 'Link 4 title');
88 ## make sure populate -> insert_bulk honors fields/orders in void context
90 $schema->populate('Link', [
94 my $link5 = $schema->resultset('Link')->find(5);
95 is($link5->id, 5, 'Link 5 id');
96 is($link5->url, 'eurl', 'Link 5 url');
97 is($link5->title, 'etitle', 'Link 5 title');
100 $schema->populate('Link', [
101 [ qw/id title url/ ],
102 [ qw/6 ftitle furl/ ]
104 my $link6 = $schema->resultset('Link')->find(6);
105 is($link6->id, 6, 'Link 6 id');
106 is($link6->url, 'furl', 'Link 6 url');
107 is($link6->title, 'ftitle', 'Link 6 title');
109 ## not all physical columns
110 $schema->populate('Link', [
114 my $link7 = $schema->resultset('Link')->find(7);
115 is($link7->id, 7, 'Link 7 id');
116 is($link7->url, undef, 'Link 7 url');
117 is($link7->title, 'gtitle', 'Link 7 title');
119 # populate with literals
121 my $rs = $schema->resultset('Link');
124 # test _execute_array_empty (insert_bulk with all literal sql)
128 url => \"'cpan.org'",
129 title => \"'The ''best of'' cpan'",
134 $_->url eq 'cpan.org' &&
135 $_->title eq "The 'best of' cpan",
136 } $rs->all), 5, 'populate with all literal SQL');
140 # test mixed binds with literal sql
144 url => \"'cpan.org'",
145 title => "The 'best of' cpan",
150 $_->url eq 'cpan.org' &&
151 $_->title eq "The 'best of' cpan",
152 } $rs->all), 5, 'populate with all literal SQL');
157 my $rs = $schema->resultset('Artist');
166 artistid => 'foo', # this dies
174 } qr/slice/, 'bad slice';
176 is($rs->count, 0, 'populate is atomic');
178 # Trying to use a column marked as a bind in the first slice with literal sql in
179 # a later slice should throw.
192 } qr/bind expected/, 'literal sql where bind expected throws';
194 # ... and vice-versa.
207 } qr/literal SQL expected/i, 'bind where literal sql expected throws';
220 } qr/inconsistent/, 'literal sql must be the same in all slices';
222 # the stringification has nothing to do with the artist name
223 # this is solely for testing consistency
224 my $fn = Path::Class::File->new ('somedir/somefilename.tmp');
225 my $fn2 = Path::Class::File->new ('somedir/someotherfilename.tmp');
230 name => 'supplied before stringifying object',
236 } 'stringifying objects pass through';
238 # ... and vice-versa.
246 name => 'supplied after stringifying object',
249 } 'stringifying objects pass through';
254 'supplied after stringifying object',
255 'supplied before stringifying object'
257 my $row = $rs->find ({name => $_});
258 ok ($row, "Stringification test row '$_' properly inserted");
263 # test stringification with ->create rather than Storage::insert_bulk as well
266 my @dummy = $rs->populate([
268 name => 'supplied before stringifying object',
274 } 'stringifying objects pass through';
276 # ... and vice-versa.
279 my @dummy = $rs->populate([
284 name => 'supplied after stringifying object',
287 } 'stringifying objects pass through';
292 'supplied after stringifying object',
293 'supplied before stringifying object'
295 my $row = $rs->find ({name => $_});
296 ok ($row, "Stringification test row '$_' properly inserted");
300 $schema->resultset('TwoKeys')->populate([{
303 fourkeys_to_twokeys => [{
317 } 'multicol-PK has_many populate works';
320 $schema->populate('CD', [
321 {cdid => 10001, artist => $artist->id, title => 'Pretty Much Empty', year => 2011, tracks => []},
323 }, 'empty has_many relationship accepted by populate');