-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathfetch_test.rb
More file actions
271 lines (211 loc) · 8.83 KB
/
fetch_test.rb
File metadata and controls
271 lines (211 loc) · 8.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
require "test_helper"
class FetchTest < IdentityCache::TestCase
NAMESPACE = IdentityCache::CacheKeyGeneration::DEFAULT_NAMESPACE
def setup
super
Item.cache_index :title, :unique => true
Item.cache_index :id, :title, :unique => true
@record = Item.new
@record.id = 1
@record.title = 'bob'
@cached_value = { class: @record.class.name, attributes: @record.attributes_before_type_cast }
@blob_key = "#{NAMESPACE}blob:Item:#{cache_hash("created_at:datetime,id:integer,item_id:integer,title:string,updated_at:datetime")}:1"
@index_key = "#{NAMESPACE}attr:Item:id:title:#{cache_hash('bob')}"
end
def test_fetch_with_garbage_input
assert_nil Item.fetch_by_id('garbage')
end
def test_fetch_with_corrupted_cache
attributes = @record.attributes_before_type_cast
attributes["id"] += 1
IdentityCache.cache.expects(:fetch).with(@blob_key).returns(class: @record.class.name, attributes: attributes)
IdentityCache.raise_on_id_mismatch = true
assert_raises(IdentityCache::CorruptedCache) { Item.fetch(1) }
end
def test_fetch_cache_hit
IdentityCache.cache.expects(:fetch).with(@blob_key).returns(@cached_value)
assert_equal @record, Item.fetch(1)
end
def test_fetch_hit_cache_namespace
old_ns = IdentityCache.cache_namespace
IdentityCache.cache_namespace = proc { |model| "#{model.table_name}:#{old_ns}" }
new_blob_key = "items:#{@blob_key}"
IdentityCache.cache.expects(:fetch).with(new_blob_key).returns(@cached_value)
assert_equal @record, Item.fetch(1)
ensure
IdentityCache.cache_namespace = old_ns
end
def test_exists_with_identity_cache_when_cache_hit
IdentityCache.cache.expects(:fetch).with(@blob_key).returns(@cached_value)
assert Item.exists_with_identity_cache?(1)
end
def test_exists_with_identity_cache_when_cache_miss_and_in_db
fetch = Spy.on(IdentityCache.cache, :fetch).and_call_through
Item.expects(:resolve_cache_miss).with(1).once.returns(@record)
assert Item.exists_with_identity_cache?(1)
assert fetch.has_been_called_with?(@blob_key)
end
def test_exists_with_identity_cache_when_cache_miss_and_not_in_db
fetch = Spy.on(IdentityCache.cache, :fetch).and_call_through
Item.expects(:resolve_cache_miss).with(1).once.returns(nil)
assert !Item.exists_with_identity_cache?(1)
assert fetch.has_been_called_with?(@blob_key)
end
def test_fetch_miss
Item.expects(:resolve_cache_miss).with(1).once.returns(@record)
results = []
fetch = Spy.on(IdentityCache.cache, :fetch).and_return {|_, &block| block.call.tap {|result| results << result}}
assert_equal @record, Item.fetch(1)
assert fetch.has_been_called_with?(@blob_key)
assert_equal [@cached_value], results
end
def test_fetch_miss_with_non_id_primary_key
hashed_key = Zlib::crc32("foo") % (2 ** 30 - 1)
fixture = KeyedRecord.create!(:value => "foo") { |r| r.hashed_key = hashed_key }
assert_equal fixture, KeyedRecord.fetch(hashed_key)
end
def test_fetch_conflict
resolve_cache_miss = Spy.on(Item, :resolve_cache_miss).and_return do
@record.send(:expire_cache)
@record
end
add = Spy.on(fetcher, :add).and_call_through
assert_equal @record, Item.fetch(1)
assert resolve_cache_miss.has_been_called_with?(1)
assert add.has_been_called_with?(@blob_key, @cached_value)
assert_equal IdentityCache::DELETED, backend.read(@record.primary_cache_index_key)
end
def test_fetch_conflict_after_delete
@record.send(:expire_cache)
assert_equal IdentityCache::DELETED, backend.read(@record.primary_cache_index_key)
resolve_cache_miss = Spy.on(Item, :resolve_cache_miss).and_return do
@record.send(:expire_cache)
@record
end
add = Spy.on(IdentityCache.cache.cache_fetcher, :add).and_call_through
assert_equal @record, Item.fetch(1)
assert resolve_cache_miss.has_been_called_with?(1)
refute add.has_been_called?
assert_equal IdentityCache::DELETED, backend.read(@record.primary_cache_index_key)
end
def test_fetch_by_id_not_found_should_return_nil
nonexistent_record_id = 10
fetcher.expects(:add).with(@blob_key + '0', IdentityCache::CACHED_NIL)
assert_nil Item.fetch_by_id(nonexistent_record_id)
end
def test_fetch_not_found_should_raise
nonexistent_record_id = 10
fetcher.expects(:add).with(@blob_key + '0', IdentityCache::CACHED_NIL)
assert_raises(ActiveRecord::RecordNotFound) { Item.fetch(nonexistent_record_id) }
end
def test_cached_nil_expiry_on_record_creation
key = @record.primary_cache_index_key
assert_nil Item.fetch_by_id(@record.id)
assert_equal IdentityCache::CACHED_NIL, backend.read(key)
@record.save!
assert_equal IdentityCache::DELETED, backend.read(key)
end
def test_fetch_by_title_hit
values = []
fetch = Spy.on(IdentityCache.cache, :fetch).and_return do |key, &block|
case key
# Read record with title bob
when @index_key then block.call.tap {|val| values << val}
# got id, do memcache lookup on that, hit -> done
when @blob_key then @cached_value
end
end
# Id not found, use sql, SELECT id FROM records WHERE title = '...' LIMIT 1"
Item.connection.expects(:exec_query).returns(ActiveRecord::Result.new(['id'], [[1]]))
assert_equal @record, Item.fetch_by_title('bob')
assert_equal [1], values
assert fetch.has_been_called_with?(@index_key)
assert fetch.has_been_called_with?(@blob_key)
end
def test_fetch_by_title_cache_namespace
Item.send(:include, SwitchNamespace)
IdentityCache.cache.expects(:fetch).with("ns:#{@index_key}").returns(1)
IdentityCache.cache.expects(:fetch).with("ns:#{@blob_key}").returns(@cached_value)
assert_equal @record, Item.fetch_by_title('bob')
end
def test_fetch_by_title_stores_idcnil
Item.connection.expects(:exec_query).once.returns(ActiveRecord::Result.new([], []))
add = Spy.on(fetcher, :add).and_call_through
fetch = Spy.on(fetcher, :fetch).and_call_through
assert_nil Item.fetch_by_title('bob') # exec_query => nil
assert_nil Item.fetch_by_title('bob') # returns cached nil
assert_nil Item.fetch_by_title('bob') # returns cached nil
assert add.has_been_called_with?(@index_key, IdentityCache::CACHED_NIL)
assert_equal 3, fetch.calls.length
end
def test_fetch_by_bang_method
Item.connection.expects(:exec_query).returns(ActiveRecord::Result.new([], []))
assert_raises ActiveRecord::RecordNotFound do
Item.fetch_by_title!('bob')
end
end
def test_fetch_does_not_communicate_to_cache_with_nil_id
fetcher.expects(:fetch).never
fetcher.expects(:add).never
assert_raises(ActiveRecord::RecordNotFound) { Item.fetch(nil) }
end
def test_fetch_cache_hit_does_not_checkout_database_connection
@record.save!
record = Item.fetch(@record.id)
ActiveRecord::Base.clear_active_connections!
assert_equal record, Item.fetch(@record.id)
assert_equal false, ActiveRecord::Base.connection_handler.active_connections?
end
def test_fetch_raises_when_called_on_a_scope
exception = assert_raises(IdentityCache::UnsupportedScopeError) do
Item.where(updated_at: nil).fetch(1)
end
assert_match /Item/, exception.message
end
def test_fetch_by_raises_when_called_on_a_scope
exception = assert_raises(IdentityCache::UnsupportedScopeError) do
Item.where(updated_at: nil).fetch_by_id(1)
end
assert_match /Item/, exception.message
end
def test_fetch_on_derived_model_raises
assert_raises(IdentityCache::DerivedModelError) do
StiRecordTypeA.fetch(1)
end
end
def test_returned_records_are_readonly_on_cache_hit
IdentityCache.with_fetch_read_only_records do
IdentityCache.cache.expects(:fetch).with(@blob_key).returns(@cached_value)
assert Item.fetch(1).readonly?
end
end
def test_returned_records_are_readonly_on_cache_miss
IdentityCache.with_fetch_read_only_records do
fetch = Spy.on(IdentityCache.cache, :fetch).and_call_through
Item.expects(:resolve_cache_miss).with(1).once.returns(@record)
assert Item.exists_with_identity_cache?(1)
assert fetch.has_been_called_with?(@blob_key)
assert Item.fetch(1).readonly?
end
end
def test_returned_records_are_not_readonly_with_open_transactions
IdentityCache.with_fetch_read_only_records do
@record.transaction do
fetch = Spy.on(IdentityCache.cache, :fetch).and_call_through
Item.expects(:resolve_cache_miss).with(1).once.returns(@record)
refute IdentityCache.should_use_cache?
refute fetch.has_been_called_with?(@blob_key)
refute Item.fetch(1).readonly?, "Fetched item was read-only"
end
end
end
def test_respects_should_use_cache_on_record
@record.save
Item.stubs(:should_use_cache?).returns(false)
assert_memcache_operations(0) do
assert_queries(1) do
Item.fetch_by_id(@record.id)
end
end
end
end