a167475d7be98b338beddb8dd6614af2d34a17bd
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Artwork.pm
1 package # hide from PAUSE
2     DBICTest::Schema::Artwork;
3
4 use warnings;
5 use strict;
6
7 use base 'DBICTest::BaseResult';
8 use DBICTest::Util 'check_customcond_args';
9
10 __PACKAGE__->table('cd_artwork');
11 __PACKAGE__->add_columns(
12   'cd_id' => {
13     data_type => 'integer',
14     is_nullable => 0,
15   },
16 );
17 __PACKAGE__->set_primary_key('cd_id');
18 __PACKAGE__->belongs_to('cd', 'DBICTest::Schema::CD', 'cd_id');
19 __PACKAGE__->has_many('images', 'DBICTest::Schema::Image', 'artwork_id');
20
21 __PACKAGE__->has_many('artwork_to_artist', 'DBICTest::Schema::Artwork_to_Artist', 'artwork_cd_id');
22 __PACKAGE__->many_to_many('artists', 'artwork_to_artist', 'artist');
23
24 # both to test manytomany with custom rel
25 # (deliberate misnamed accessor clash)
26 __PACKAGE__->many_to_many('artist_limited_rank', 'artwork_to_artist', 'artist_limited_rank');
27 __PACKAGE__->many_to_many('artist_limited_rank_opaque', 'artwork_to_artist', 'artist_limited_rank_opaque');
28
29 # other test to manytomany
30 __PACKAGE__->has_many('artwork_to_artist_via_customcond', 'DBICTest::Schema::Artwork_to_Artist',
31   sub {
32     # This is for test purposes only. A regular user does not
33     # need to sanity check the passed-in arguments, this is what
34     # the tests are for :)
35     my $args = &check_customcond_args;
36
37     return (
38       { "$args->{foreign_alias}.artwork_cd_id" => { -ident => "$args->{self_alias}.cd_id" },
39       },
40       $args->{self_result_object} && {
41         "$args->{foreign_alias}.artwork_cd_id" => $args->{self_result_object}->cd_id,
42       }
43     );
44   }
45 );
46 __PACKAGE__->many_to_many('artists_via_customcond', 'artwork_to_artist_via_customcond', 'artist');
47
48
49 1;