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