replace all remaining uses of self_rowobj with self_resultobj in pod, test schemas
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / CD.pm
1 package # hide from PAUSE
2     DBICTest::Schema::CD;
3
4 use warnings;
5 use strict;
6
7 use base 'DBICTest::BaseResult';
8 use DBICTest::Util 'check_customcond_args';
9
10 # this tests table name as scalar ref
11 # DO NOT REMOVE THE \
12 __PACKAGE__->table(\'cd');
13
14 __PACKAGE__->add_columns(
15   'cdid' => {
16     data_type => 'integer',
17     is_auto_increment => 1,
18   },
19   'artist' => {
20     data_type => 'integer',
21   },
22   'title' => {
23     data_type => 'varchar',
24     size      => 100,
25   },
26   'year' => {
27     data_type => 'varchar',
28     size      => 100,
29   },
30   'genreid' => {
31     data_type => 'integer',
32     is_nullable => 1,
33     accessor => undef,
34   },
35   'single_track' => {
36     data_type => 'integer',
37     is_nullable => 1,
38     is_foreign_key => 1,
39   }
40 );
41 __PACKAGE__->set_primary_key('cdid');
42 __PACKAGE__->add_unique_constraint([ qw/artist title/ ]);
43
44 __PACKAGE__->belongs_to( artist => 'DBICTest::Schema::Artist', undef, {
45     is_deferrable => 1,
46     proxy => { artist_name => 'name' },
47 });
48 __PACKAGE__->belongs_to( very_long_artist_relationship => 'DBICTest::Schema::Artist', 'artist', {
49     is_deferrable => 1,
50 });
51
52 # in case this is a single-cd it promotes a track from another cd
53 __PACKAGE__->belongs_to( single_track => 'DBICTest::Schema::Track',
54   { 'foreign.trackid' => 'self.single_track' },
55   { join_type => 'left'},
56 );
57
58 # add a non-left single relationship for the complex prefetch tests
59 __PACKAGE__->belongs_to( existing_single_track => 'DBICTest::Schema::Track',
60   { 'foreign.trackid' => 'self.single_track' },
61 );
62
63 __PACKAGE__->has_many( tracks => 'DBICTest::Schema::Track' );
64 __PACKAGE__->has_many(
65     tags => 'DBICTest::Schema::Tag', undef,
66     { order_by => 'tag' },
67 );
68 __PACKAGE__->has_many(
69     cd_to_producer => 'DBICTest::Schema::CD_to_Producer' => 'cd'
70 );
71
72 # the undef condition in this rel is *deliberate*
73 # tests oddball legacy syntax
74 __PACKAGE__->might_have(
75     liner_notes => 'DBICTest::Schema::LinerNotes', undef,
76     { proxy => [ qw/notes/ ] },
77 );
78 __PACKAGE__->might_have(artwork => 'DBICTest::Schema::Artwork', 'cd_id');
79 __PACKAGE__->has_one(mandatory_artwork => 'DBICTest::Schema::Artwork', 'cd_id');
80
81 __PACKAGE__->many_to_many( producers => cd_to_producer => 'producer' );
82 __PACKAGE__->many_to_many(
83     producers_sorted => cd_to_producer => 'producer',
84     { order_by => 'producer.name' },
85 );
86
87 __PACKAGE__->belongs_to('genre', 'DBICTest::Schema::Genre',
88     'genreid',
89     {
90         join_type => 'left',
91         on_delete => 'SET NULL',
92         on_update => 'CASCADE',
93     },
94 );
95
96 #This second relationship was added to test the short-circuiting of pointless
97 #queries provided by undef_on_null_fk. the relevant test in 66relationship.t
98 __PACKAGE__->belongs_to('genre_inefficient', 'DBICTest::Schema::Genre',
99     { 'foreign.genreid' => 'self.genreid' },
100     {
101         join_type => 'left',
102         on_delete => 'SET NULL',
103         on_update => 'CASCADE',
104         undef_on_null_fk => 0,
105     },
106 );
107
108
109 # This is insane. Don't ever do anything like that
110 # This is for testing purposes only!
111
112 # mst: mo: DBIC is an "object relational mapper"
113 # mst: mo: not an "object relational hider-because-mo-doesn't-understand-databases
114 # ribasushi: mo: try it with a subselect nevertheless, I'd love to be proven wrong
115 # ribasushi: mo: does sqlite actually take this?
116 # ribasushi: an order in a correlated subquery is insane - how long does it take you on real data?
117
118 __PACKAGE__->might_have(
119     'last_track',
120     'DBICTest::Schema::Track',
121     sub {
122         # This is for test purposes only. A regular user does not
123         # need to sanity check the passed-in arguments, this is what
124         # the tests are for :)
125         my $args = &check_customcond_args;
126
127         return (
128             {
129                 "$args->{foreign_alias}.trackid" => { '=' =>
130                     $args->{self_resultsource}->schema->resultset('Track')->search(
131                        { 'correlated_tracks.cd' => { -ident => "$args->{self_alias}.cdid" } },
132                        {
133                           order_by => { -desc => 'position' },
134                           rows     => 1,
135                           alias    => 'correlated_tracks',
136                           columns  => ['trackid']
137                        },
138                     )->as_query
139                 }
140             }
141         );
142     },
143 );
144
145 1;