1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
use strict;
use warnings;
use Test::More tests => 9;
use HTML::FormFu;
use lib 't/lib';
use DBICTestLib 'new_schema';
use MySchema;
my $form = HTML::FormFu->new;
$form->load_config_file('t/update/many_to_many_repeatable_new.yml');
my $schema = new_schema();
my $master = $schema->resultset('Master')-> create({ id => 1 });
# filler rows
{
# user 1
my $u1 = $master->create_related( 'user', { name => 'foo' } );
# band 1
$u1->add_to_bands({ band => 'a' });
}
# rows we're going to use
{
# user 2
my $u2 = $master->create_related( 'user', { name => 'nick', } );
# band 2,3
$u2->add_to_bands({ band => 'b' });
$u2->add_to_bands({ band => 'c' });
}
{
$form->process( {
'id' => 2,
'name' => 'new nick',
'count' => 3,
'bands_1.id' => 2,
'bands_1.band' => 'b++',
'bands_2.id' => 3,
'bands_2.band' => 'c++',
'bands_3.id' => '',
'bands_3.band' => 'd++'
} );
ok( $form->submitted_and_valid );
my $row = $schema->resultset('User')->find(2);
$form->model->update($row);
}
{
my $user = $schema->resultset('User')->find(2);
is( $user->name, 'new nick' );
my @add = $user->bands->all;
is( scalar @add, 3 );
is( $add[0]->id, 2 );
is( $add[0]->band, 'b++' );
is( $add[1]->id, 3 );
is( $add[1]->band, 'c++' );
is( $add[2]->id, 4 );
is( $add[2]->band, 'd++' );
}
|