|
65 | 65 |
|
66 | 66 | describe '#process!' do
|
67 | 67 | context 'when increment_fields specified' do
|
68 |
| - before do |
69 |
| - counter.increment(date: prev_date_s, record_id: 1, column_id: 100, subject: '', params: '') |
70 |
| - counter.increment(date: prev_date_s, record_id: 1, column_id: 200, subject: '', params: '') |
71 |
| - counter.increment(date: prev_date_s, record_id: 1, column_id: 200, subject: '', params: '') |
72 |
| - counter.increment(date: prev_date_s, record_id: 2, column_id: 100, subject: nil, params: '') |
| 68 | + context 'without source conditions' do |
| 69 | + before do |
| 70 | + counter.increment(date: prev_date_s, record_id: 1, column_id: 100, subject: '', params: '') |
| 71 | + counter.increment(date: prev_date_s, record_id: 1, column_id: 200, subject: '', params: '') |
| 72 | + counter.increment(date: prev_date_s, record_id: 1, column_id: 200, subject: '', params: '') |
| 73 | + counter.increment(date: prev_date_s, record_id: 2, column_id: 100, subject: nil, params: '') |
73 | 74 |
|
74 |
| - params = {a: 1}.stringify_keys.to_s[1..-2] |
75 |
| - counter.increment(date: prev_date_s, record_id: 3, column_id: 300, subject: nil, params: params) |
| 75 | + params = {a: 1}.stringify_keys.to_s[1..-2] |
| 76 | + counter.increment(date: prev_date_s, record_id: 3, column_id: 300, subject: nil, params: params) |
76 | 77 |
|
77 |
| - dumper.process!(counter, date: prev_date) |
| 78 | + dumper.process!(counter, date: prev_date) |
78 | 79 |
|
79 |
| - counter.increment(date: date_s, record_id: 1, column_id: 100, subject: '', params: '') |
80 |
| - counter.increment(date: date_s, record_id: 1, column_id: 200, subject: '', params: '') |
81 |
| - counter.increment(date: date_s, record_id: 1, column_id: 200, subject: '', params: '') |
82 |
| - counter.increment(date: date_s, record_id: 2, column_id: 100, subject: nil, params: '') |
| 80 | + counter.increment(date: date_s, record_id: 1, column_id: 100, subject: '', params: '') |
| 81 | + counter.increment(date: date_s, record_id: 1, column_id: 200, subject: '', params: '') |
| 82 | + counter.increment(date: date_s, record_id: 1, column_id: 200, subject: '', params: '') |
| 83 | + counter.increment(date: date_s, record_id: 2, column_id: 100, subject: nil, params: '') |
83 | 84 |
|
84 |
| - dumper.process!(counter, date: date) |
85 |
| - end |
| 85 | + dumper.process!(counter, date: date) |
| 86 | + end |
86 | 87 |
|
87 |
| - it { expect(StatsByDay.count).to eq 7 } |
88 |
| - it { expect(StatsByDay.where(record_id: 1, column_id: 100, date: prev_date).first.hits).to eq 1 } |
89 |
| - it { expect(StatsByDay.where(record_id: 1, column_id: 200, date: prev_date).first.hits).to eq 2 } |
90 |
| - it { expect(StatsByDay.where(record_id: 2, column_id: 100, date: prev_date).first.hits).to eq 1 } |
91 |
| - it { expect(StatsByDay.where(record_id: 3, column_id: 300, date: prev_date).first.params).to eq("a" => "1") } |
92 |
| - it { expect(StatsByDay.where(record_id: 1, column_id: 100, date: date).first.hits).to eq 1 } |
93 |
| - it { expect(StatsByDay.where(record_id: 1, column_id: 200, date: date).first.hits).to eq 2 } |
94 |
| - it { expect(StatsByDay.where(record_id: 2, column_id: 100, date: date).first.hits).to eq 1 } |
| 88 | + it { expect(StatsByDay.count).to eq 7 } |
| 89 | + it { expect(StatsByDay.where(record_id: 1, column_id: 100, date: prev_date).first.hits).to eq 1 } |
| 90 | + it { expect(StatsByDay.where(record_id: 1, column_id: 200, date: prev_date).first.hits).to eq 2 } |
| 91 | + it { expect(StatsByDay.where(record_id: 2, column_id: 100, date: prev_date).first.hits).to eq 1 } |
| 92 | + it { expect(StatsByDay.where(record_id: 3, column_id: 300, date: prev_date).first.params).to eq("a" => "1") } |
| 93 | + it { expect(StatsByDay.where(record_id: 1, column_id: 100, date: date).first.hits).to eq 1 } |
| 94 | + it { expect(StatsByDay.where(record_id: 1, column_id: 200, date: date).first.hits).to eq 2 } |
| 95 | + it { expect(StatsByDay.where(record_id: 2, column_id: 100, date: date).first.hits).to eq 1 } |
95 | 96 |
|
96 |
| - it { expect(StatsTotal.count).to eq 4 } |
97 |
| - it { expect(StatsTotal.where(record_id: 1, column_id: 100).first.hits).to eq 2 } |
98 |
| - it { expect(StatsTotal.where(record_id: 1, column_id: 200).first.hits).to eq 4 } |
99 |
| - it { expect(StatsTotal.where(record_id: 2, column_id: 100).first.hits).to eq 2 } |
| 97 | + it { expect(StatsTotal.count).to eq 4 } |
| 98 | + it { expect(StatsTotal.where(record_id: 1, column_id: 100).first.hits).to eq 2 } |
| 99 | + it { expect(StatsTotal.where(record_id: 1, column_id: 200).first.hits).to eq 4 } |
| 100 | + it { expect(StatsTotal.where(record_id: 2, column_id: 100).first.hits).to eq 2 } |
100 | 101 |
|
101 |
| - it { expect(StatsAggTotal.count).to eq 3 } |
102 |
| - it { expect(StatsAggTotal.where(record_id: 1).first.hits).to eq 6 } |
103 |
| - it { expect(StatsAggTotal.where(record_id: 2).first.hits).to eq 2 } |
| 102 | + it { expect(StatsAggTotal.count).to eq 3 } |
| 103 | + it { expect(StatsAggTotal.where(record_id: 1).first.hits).to eq 6 } |
| 104 | + it { expect(StatsAggTotal.where(record_id: 2).first.hits).to eq 2 } |
| 105 | + end |
104 | 106 |
|
105 | 107 | context 'with source conditions' do
|
| 108 | + context 'when incremented field class is integer' do |
| 109 | + let(:dumper) do |
| 110 | + RedisCounters::Dumpers::Engine.build do |
| 111 | + name :stats_totals |
| 112 | + fields record_id: :integer, |
| 113 | + column_id: :integer, |
| 114 | + value: :integer, |
| 115 | + date: :date |
| 116 | + |
| 117 | + destination do |
| 118 | + model StatsByDay |
| 119 | + take :record_id, :column_id, :hits, :date |
| 120 | + key_fields :record_id, :column_id, :date |
| 121 | + increment_fields :hits |
| 122 | + map :hits, to: :value |
| 123 | + condition 'target.date = :date' |
| 124 | + source_condition 'column_id = 100' |
| 125 | + end |
| 126 | + |
| 127 | + destination do |
| 128 | + model StatsTotal |
| 129 | + take :record_id, :column_id, :hits |
| 130 | + key_fields :record_id, :column_id |
| 131 | + increment_fields :hits |
| 132 | + map :hits, to: :value |
| 133 | + source_condition 'column_id = 100' |
| 134 | + end |
| 135 | + |
| 136 | + destination do |
| 137 | + model StatsAggTotal |
| 138 | + take :record_id, :hits |
| 139 | + key_fields :record_id |
| 140 | + increment_fields :hits |
| 141 | + map :hits, to: 'sum(value)' |
| 142 | + group_by :record_id |
| 143 | + source_condition 'column_id = 100' |
| 144 | + end |
| 145 | + |
| 146 | + on_before_merge do |dumper, _connection| |
| 147 | + dumper.common_params = {date: dumper.args[:date].strftime('%Y-%m-%d')} |
| 148 | + end |
| 149 | + end |
| 150 | + end |
| 151 | + |
| 152 | + before do |
| 153 | + counter.increment(date: prev_date_s, record_id: 1, column_id: 100, subject: '', params: '') |
| 154 | + counter.increment(date: prev_date_s, record_id: 1, column_id: 200, subject: '', params: '') |
| 155 | + counter.increment(date: prev_date_s, record_id: 1, column_id: 200, subject: '', params: '') |
| 156 | + counter.increment(date: prev_date_s, record_id: 2, column_id: 100, subject: nil, params: '') |
| 157 | + |
| 158 | + params = {a: 1}.stringify_keys.to_s[1..-2] |
| 159 | + counter.increment(date: prev_date_s, record_id: 3, column_id: 300, subject: nil, params: params) |
| 160 | + |
| 161 | + dumper.process!(counter, date: prev_date) |
| 162 | + |
| 163 | + counter.increment(date: date_s, record_id: 1, column_id: 100, subject: '', params: '') |
| 164 | + counter.increment(date: date_s, record_id: 1, column_id: 200, subject: '', params: '') |
| 165 | + counter.increment(date: date_s, record_id: 1, column_id: 200, subject: '', params: '') |
| 166 | + counter.increment(date: date_s, record_id: 2, column_id: 100, subject: nil, params: '') |
| 167 | + |
| 168 | + dumper.process!(counter, date: date) |
| 169 | + end |
| 170 | + |
| 171 | + it { expect(StatsByDay.count).to eq 4 } |
| 172 | + it { expect(StatsByDay.where(record_id: 1, column_id: 100, date: prev_date).first.hits).to eq 1 } |
| 173 | + it { expect(StatsByDay.where(record_id: 2, column_id: 100, date: prev_date).first.hits).to eq 1 } |
| 174 | + it { expect(StatsByDay.where(record_id: 1, column_id: 100, date: date).first.hits).to eq 1 } |
| 175 | + it { expect(StatsByDay.where(record_id: 2, column_id: 100, date: date).first.hits).to eq 1 } |
| 176 | + |
| 177 | + it { expect(StatsTotal.count).to eq 2 } |
| 178 | + it { expect(StatsTotal.where(record_id: 1, column_id: 100).first.hits).to eq 2 } |
| 179 | + it { expect(StatsTotal.where(record_id: 2, column_id: 100).first.hits).to eq 2 } |
| 180 | + |
| 181 | + it { expect(StatsAggTotal.count).to eq 2 } |
| 182 | + it { expect(StatsAggTotal.where(record_id: 1).first.hits).to eq 2 } |
| 183 | + it { expect(StatsAggTotal.where(record_id: 2).first.hits).to eq 2 } |
| 184 | + end |
| 185 | + end |
| 186 | + |
| 187 | + context 'when incremented field class is string' do |
106 | 188 | let(:dumper) do
|
107 | 189 | RedisCounters::Dumpers::Engine.build do
|
108 |
| - name :stats_totals |
| 190 | + name :realtime_stats |
109 | 191 | fields record_id: :integer,
|
110 | 192 | column_id: :integer,
|
111 | 193 | value: :integer,
|
112 |
| - date: :date |
| 194 | + params: :string, |
| 195 | + date: :timestamp |
113 | 196 |
|
114 | 197 | destination do
|
115 |
| - model StatsByDay |
116 |
| - take :record_id, :column_id, :hits, :date |
117 |
| - key_fields :record_id, :column_id, :date |
118 |
| - increment_fields :hits |
| 198 | + model RealtimeStat |
| 199 | + take :record_id, :column_id, :date, :hits, :params |
| 200 | + key_fields :record_id, :column_id |
| 201 | + increment_fields :hits, :params |
| 202 | + value_delimiter '; ' |
119 | 203 | map :hits, to: :value
|
120 |
| - condition 'target.date = :date' |
121 |
| - source_condition 'column_id = 100' |
| 204 | + condition 'target.date::date = :date::date' |
122 | 205 | end
|
| 206 | + end |
| 207 | + end |
| 208 | + |
| 209 | + before do |
| 210 | + counter.increment(date: date, record_id: 1, column_id: 100, subject: '', params: 'abc') |
| 211 | + dumper.common_params = {date: date, params: 'abc'} |
| 212 | + dumper.process!(counter, date: date) |
| 213 | + |
| 214 | + counter.increment(date: date, record_id: 1, column_id: 100, subject: '', params: 'xyz') |
| 215 | + dumper.common_params = {date: date, params: 'xyz'} |
| 216 | + dumper.process!(counter, date: date) |
| 217 | + end |
| 218 | + |
| 219 | + it do |
| 220 | + expect(RealtimeStat.count).to eq 1 |
| 221 | + expect(RealtimeStat.first.params).to eq 'xyz; abc' |
| 222 | + end |
| 223 | + end |
| 224 | + |
| 225 | + context 'when incremented field class is date or time' do |
| 226 | + let(:current_time) { Date.today.to_time } |
| 227 | + let(:dumper) do |
| 228 | + RedisCounters::Dumpers::Engine.build do |
| 229 | + name :realtime_stats |
| 230 | + fields record_id: :integer, |
| 231 | + column_id: :integer, |
| 232 | + value: :integer, |
| 233 | + params: :string, |
| 234 | + date: :timestamp |
123 | 235 |
|
124 | 236 | destination do
|
125 |
| - model StatsTotal |
126 |
| - take :record_id, :column_id, :hits |
| 237 | + model RealtimeStat |
| 238 | + take :record_id, :column_id, :hits, :params, :date |
127 | 239 | key_fields :record_id, :column_id
|
128 |
| - increment_fields :hits |
| 240 | + increment_fields :hits, :date |
129 | 241 | map :hits, to: :value
|
130 |
| - source_condition 'column_id = 100' |
131 |
| - end |
132 |
| - |
133 |
| - destination do |
134 |
| - model StatsAggTotal |
135 |
| - take :record_id, :hits |
136 |
| - key_fields :record_id |
137 |
| - increment_fields :hits |
138 |
| - map :hits, to: 'sum(value)' |
139 |
| - group_by :record_id |
140 |
| - source_condition 'column_id = 100' |
141 |
| - end |
142 |
| - |
143 |
| - on_before_merge do |dumper, _connection| |
144 |
| - dumper.common_params = {date: dumper.args[:date].strftime('%Y-%m-%d')} |
| 242 | + condition 'target.date::date = :date::date' |
145 | 243 | end
|
146 | 244 | end
|
147 | 245 | end
|
148 | 246 |
|
149 |
| - it { expect(StatsByDay.count).to eq 4 } |
150 |
| - it { expect(StatsByDay.where(record_id: 1, column_id: 100, date: prev_date).first.hits).to eq 1 } |
151 |
| - it { expect(StatsByDay.where(record_id: 2, column_id: 100, date: prev_date).first.hits).to eq 1 } |
152 |
| - it { expect(StatsByDay.where(record_id: 1, column_id: 100, date: date).first.hits).to eq 1 } |
153 |
| - it { expect(StatsByDay.where(record_id: 2, column_id: 100, date: date).first.hits).to eq 1 } |
| 247 | + before do |
| 248 | + counter.increment(date: date, record_id: 1, column_id: 100, subject: '', params: '') |
| 249 | + dumper.common_params = {date: current_time} |
| 250 | + dumper.process!(counter, date: date) |
154 | 251 |
|
155 |
| - it { expect(StatsTotal.count).to eq 2 } |
156 |
| - it { expect(StatsTotal.where(record_id: 1, column_id: 100).first.hits).to eq 2 } |
157 |
| - it { expect(StatsTotal.where(record_id: 2, column_id: 100).first.hits).to eq 2 } |
| 252 | + counter.increment(date: date, record_id: 1, column_id: 100, subject: '', params: '') |
| 253 | + dumper.common_params = {date: current_time} |
| 254 | + dumper.process!(counter, date: date) |
| 255 | + end |
158 | 256 |
|
159 |
| - it { expect(StatsAggTotal.count).to eq 2 } |
160 |
| - it { expect(StatsAggTotal.where(record_id: 1).first.hits).to eq 2 } |
161 |
| - it { expect(StatsAggTotal.where(record_id: 2).first.hits).to eq 2 } |
| 257 | + it 'update incremented date' do |
| 258 | + expect(RealtimeStat.count).to eq 1 |
| 259 | + expect(RealtimeStat.first.date).to eq current_time |
| 260 | + end |
162 | 261 | end
|
163 | 262 | end
|
164 | 263 |
|
|
0 commit comments