Institute a central "load this first in testing" package
[dbsrgits/DBIx-Class.git] / t / row / filter_column.t
CommitLineData
c0329273 1BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2
956f4141 3use strict;
4use warnings;
5
6use Test::More;
c227b295 7use Test::Exception;
c0329273 8
956f4141 9use DBICTest;
cc2d2ead 10
85439e0c 11my $from_storage_ran = 0;
12my $to_storage_ran = 0;
1bc006cf 13my $schema = DBICTest->init_schema( no_populate => 1 );
c227b295 14DBICTest::Schema::Artist->load_components(qw(FilterColumn InflateColumn));
1bc006cf 15DBICTest::Schema::Artist->filter_column(charfield => {
cfa1ab03 16 filter_from_storage => sub { $from_storage_ran++; defined $_[1] ? $_[1] * 2 : undef },
17 filter_to_storage => sub { $to_storage_ran++; defined $_[1] ? $_[1] / 2 : undef },
cc2d2ead 18});
cc8ffd7b 19Class::C3->reinitialize() if DBIx::Class::_ENV_::OLD_MRO;
cc2d2ead 20
1bc006cf 21my $artist = $schema->resultset('Artist')->create( { charfield => 20 } );
cc2d2ead 22
23# this should be using the cursor directly, no inflation/processing of any sort
1bc006cf 24my ($raw_db_charfield) = $schema->resultset('Artist')
cc2d2ead 25 ->search ($artist->ident_condition)
1bc006cf 26 ->get_column('charfield')
cc2d2ead 27 ->_resultset
28 ->cursor
29 ->next;
30
1bc006cf 31is ($raw_db_charfield, 10, 'INSERT: correctly unfiltered on insertion');
cc2d2ead 32
33for my $reloaded (0, 1) {
34 my $test = $reloaded ? 'reloaded' : 'stored';
35 $artist->discard_changes if $reloaded;
36
1bc006cf 37 is( $artist->charfield , 20, "got $test filtered charfield" );
cc2d2ead 38}
39
40$artist->update;
41$artist->discard_changes;
1bc006cf 42is( $artist->charfield , 20, "got filtered charfield" );
cc2d2ead 43
1bc006cf 44$artist->update ({ charfield => 40 });
45($raw_db_charfield) = $schema->resultset('Artist')
cc2d2ead 46 ->search ($artist->ident_condition)
1bc006cf 47 ->get_column('charfield')
cc2d2ead 48 ->_resultset
49 ->cursor
50 ->next;
1bc006cf 51is ($raw_db_charfield, 20, 'UPDATE: correctly unflitered on update');
cc2d2ead 52
53$artist->discard_changes;
1bc006cf 54$artist->charfield(40);
55ok( !$artist->is_column_changed('charfield'), 'column is not dirty after setting the same value' );
cc2d2ead 56
8cfbd51c 57MC: {
58 my $cd = $schema->resultset('CD')->create({
1bc006cf 59 artist => { charfield => 20 },
8cfbd51c 60 title => 'fun time city!',
61 year => 'forevertime',
62 });
1bc006cf 63 ($raw_db_charfield) = $schema->resultset('Artist')
0f914ece 64 ->search ($cd->artist->ident_condition)
1bc006cf 65 ->get_column('charfield')
0f914ece 66 ->_resultset
67 ->cursor
68 ->next;
69
1bc006cf 70 is $raw_db_charfield, 10, 'artist charfield gets correctly unfiltered w/ MC';
71 is $cd->artist->charfield, 20, 'artist charfield gets correctly filtered w/ MC';
8cfbd51c 72}
73
c227b295 74CACHE_TEST: {
75 my $expected_from = $from_storage_ran;
76 my $expected_to = $to_storage_ran;
77
78 # ensure we are creating a fresh obj
79 $artist = $schema->resultset('Artist')->single($artist->ident_condition);
80
81 is $from_storage_ran, $expected_from, 'from has not run yet';
82 is $to_storage_ran, $expected_to, 'to has not run yet';
83
1bc006cf 84 $artist->charfield;
c227b295 85 cmp_ok (
1bc006cf 86 $artist->get_filtered_column('charfield'),
c227b295 87 '!=',
1bc006cf 88 $artist->get_column('charfield'),
c227b295 89 'filter/unfilter differ'
90 );
91 is $from_storage_ran, ++$expected_from, 'from ran once, therefor caches';
92 is $to_storage_ran, $expected_to, 'to did not run';
93
1bc006cf 94 $artist->charfield(6);
c227b295 95 is $from_storage_ran, $expected_from, 'from did not run';
96 is $to_storage_ran, ++$expected_to, 'to ran once';
97
1bc006cf 98 ok ($artist->is_column_changed ('charfield'), 'Column marked as dirty');
c227b295 99
1bc006cf 100 $artist->charfield;
c227b295 101 is $from_storage_ran, $expected_from, 'from did not run';
102 is $to_storage_ran, $expected_to, 'to did not run';
103
104 $artist->update;
105
1bc006cf 106 $artist->set_column(charfield => 3);
107 ok (! $artist->is_column_changed ('charfield'), 'Column not marked as dirty on same set_column value');
108 is ($artist->charfield, '6', 'Column set properly (cache blown)');
c227b295 109 is $from_storage_ran, ++$expected_from, 'from ran once (set_column blew cache)';
110 is $to_storage_ran, $expected_to, 'to did not run';
111
1bc006cf 112 $artist->charfield(6);
113 ok (! $artist->is_column_changed ('charfield'), 'Column not marked as dirty on same accessor-set value');
114 is ($artist->charfield, '6', 'Column set properly');
c227b295 115 is $from_storage_ran, $expected_from, 'from did not run';
dc6dadae 116 is $to_storage_ran, ++$expected_to, 'to did run once (call in to set_column)';
c227b295 117
1bc006cf 118 $artist->store_column(charfield => 4);
119 ok (! $artist->is_column_changed ('charfield'), 'Column not marked as dirty on differing store_column value');
120 is ($artist->charfield, '8', 'Cache properly blown');
491c8ff9 121 is $from_storage_ran, ++$expected_from, 'from did not run';
c227b295 122 is $to_storage_ran, $expected_to, 'to did not run';
cfa1ab03 123
124 $artist->update({ charfield => undef });
125 is $from_storage_ran, $expected_from, 'from did not run';
126 is $to_storage_ran, ++$expected_to, 'to did run';
127
128 $artist->discard_changes;
129 is ( $artist->get_column('charfield'), undef, 'Got back null' );
130 is ( $artist->charfield, undef, 'Got back null through filter' );
131
132 is $from_storage_ran, ++$expected_from, 'from did run';
133 is $to_storage_ran, $expected_to, 'to did not run';
134
c227b295 135}
85439e0c 136
dc6dadae 137# test in-memory operations
138for my $artist_maker (
1bc006cf 139 sub { $schema->resultset('Artist')->new({ charfield => 42 }) },
140 sub { my $art = $schema->resultset('Artist')->new({}); $art->charfield(42); $art },
dc6dadae 141) {
142
143 my $expected_from = $from_storage_ran;
144 my $expected_to = $to_storage_ran;
145
146 my $artist = $artist_maker->();
147
148 is $from_storage_ran, $expected_from, 'from has not run yet';
149 is $to_storage_ran, $expected_to, 'to has not run yet';
150
151 ok( ! $artist->has_column_loaded('artistid'), 'pk not loaded' );
1bc006cf 152 ok( $artist->has_column_loaded('charfield'), 'Filtered column marked as loaded under new' );
153 is( $artist->charfield, 42, 'Proper unfiltered value' );
154 is( $artist->get_column('charfield'), 21, 'Proper filtered value' );
dc6dadae 155}
156
a524980e 157# test literals
158for my $v ( \ '16', \[ '?', '16' ] ) {
1bc006cf 159 my $rs = $schema->resultset('Artist');
160 $rs->delete;
a524980e 161
1bc006cf 162 my $art = $rs->new({ charfield => 10 });
163 $art->charfield($v);
164
165 is_deeply( $art->charfield, $v);
166 is_deeply( $art->get_filtered_column("charfield"), $v);
167 is_deeply( $art->get_column("charfield"), $v);
a524980e 168
169 $art->insert;
170 $art->discard_changes;
171
1bc006cf 172 is ($art->get_column("charfield"), 16, "Literal inserted into database properly");
173 is ($art->charfield, 32, "filtering still works");
a524980e 174
1bc006cf 175 $art->update({ charfield => $v });
a524980e 176
1bc006cf 177 is_deeply( $art->charfield, $v);
178 is_deeply( $art->get_filtered_column("charfield"), $v);
179 is_deeply( $art->get_column("charfield"), $v);
a524980e 180
181 $art->discard_changes;
182
1bc006cf 183 is ($art->get_column("charfield"), 16, "Literal inserted into database properly");
184 is ($art->charfield, 32, "filtering still works");
a524980e 185}
186
c227b295 187IC_DIE: {
85aee309 188 throws_ok {
1bc006cf 189 DBICTest::Schema::Artist->inflate_column(charfield =>
c227b295 190 { inflate => sub {}, deflate => sub {} }
191 );
85aee309 192 } qr/InflateColumn can not be used on a column with a declared FilterColumn filter/, q(Can't inflate column after filter column);
c227b295 193
194 DBICTest::Schema::Artist->inflate_column(name =>
195 { inflate => sub {}, deflate => sub {} }
196 );
197
85aee309 198 throws_ok {
c227b295 199 DBICTest::Schema::Artist->filter_column(name => {
200 filter_to_storage => sub {},
201 filter_from_storage => sub {}
202 });
85aee309 203 } qr/FilterColumn can not be used on a column with a declared InflateColumn inflator/, q(Can't filter column after inflate column);
cde96798 204}
85439e0c 205
eec182b6 206# test when we do not set both filter_from_storage/filter_to_storage
1bc006cf 207DBICTest::Schema::Artist->filter_column(charfield => {
eec182b6 208 filter_to_storage => sub { $to_storage_ran++; $_[1] },
209});
cc8ffd7b 210Class::C3->reinitialize() if DBIx::Class::_ENV_::OLD_MRO;
eec182b6 211
212ASYMMETRIC_TO_TEST: {
213 # initialise value
1bc006cf 214 $artist->charfield(20);
eec182b6 215 $artist->update;
216
217 my $expected_from = $from_storage_ran;
218 my $expected_to = $to_storage_ran;
219
1bc006cf 220 $artist->charfield(10);
221 ok ($artist->is_column_changed ('charfield'), 'Column marked as dirty on accessor-set value');
222 is ($artist->charfield, '10', 'Column set properly');
eec182b6 223 is $from_storage_ran, $expected_from, 'from did not run';
224 is $to_storage_ran, ++$expected_to, 'to did run';
225
226 $artist->discard_changes;
227
1bc006cf 228 is ($artist->charfield, '20', 'Column set properly');
eec182b6 229 is $from_storage_ran, $expected_from, 'from did not run';
230 is $to_storage_ran, $expected_to, 'to did not run';
231}
232
1bc006cf 233DBICTest::Schema::Artist->filter_column(charfield => {
eec182b6 234 filter_from_storage => sub { $from_storage_ran++; $_[1] },
235});
cc8ffd7b 236Class::C3->reinitialize() if DBIx::Class::_ENV_::OLD_MRO;
eec182b6 237
238ASYMMETRIC_FROM_TEST: {
239 # initialise value
1bc006cf 240 $artist->charfield(23);
eec182b6 241 $artist->update;
242
243 my $expected_from = $from_storage_ran;
244 my $expected_to = $to_storage_ran;
245
1bc006cf 246 $artist->charfield(13);
247 ok ($artist->is_column_changed ('charfield'), 'Column marked as dirty on accessor-set value');
248 is ($artist->charfield, '13', 'Column set properly');
eec182b6 249 is $from_storage_ran, $expected_from, 'from did not run';
250 is $to_storage_ran, $expected_to, 'to did not run';
251
252 $artist->discard_changes;
253
1bc006cf 254 is ($artist->charfield, '23', 'Column set properly');
eec182b6 255 is $from_storage_ran, ++$expected_from, 'from did run';
256 is $to_storage_ran, $expected_to, 'to did not run';
257}
258
1bc006cf 259throws_ok { DBICTest::Schema::Artist->filter_column( charfield => {} ) }
eec182b6 260 qr/\QAn invocation of filter_column() must specify either a filter_from_storage or filter_to_storage/,
261 'Correctly throws exception for empty attributes'
262;
263
7ed4b48f 264FC_ON_PK_TEST: {
2a787533 265 # there are cases in the wild that autovivify stuff deep in the
266 # colinfo guts. While this is insane, there is no alternative
267 # so at leats make sure it keeps working...
268
269 $schema->source('Artist')->column_info('artistid')->{_filter_info} ||= {};
270
271 for my $key ('', 'primary') {
272 lives_ok {
273 $schema->resultset('Artist')->find_or_create({ artistid => 42 }, { $key ? ( key => $key ) : () });
274 };
275 }
276
7ed4b48f 277
278 DBICTest::Schema::Artist->filter_column(artistid => {
279 filter_to_storage => sub { $_[1] * 100 },
280 filter_from_storage => sub { $_[1] - 100 },
281 });
282
283 for my $key ('', 'primary') {
284 throws_ok {
285 $schema->resultset('Artist')->find_or_create({ artistid => 42 }, { $key ? ( key => $key ) : () });
286 } qr/\QUnable to satisfy requested constraint 'primary', FilterColumn values not usable for column(s): 'artistid'/;
287 }
288}
289
cc2d2ead 290done_testing;