discourse/spec/lib/distributed_memoizer_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
884 B
Ruby
Raw Normal View History

# frozen_string_literal: true
describe DistributedMemoizer do
after do
Discourse.redis.del(DistributedMemoizer.redis_key("hello"))
Discourse.redis.del(DistributedMemoizer.redis_lock_key("hello"))
end
def memoize(&block)
DistributedMemoizer.memoize("hello", duration = 120, &block)
end
it "returns the value of a block" do
expect(memoize { "abc" }).to eq("abc")
end
it "return the old value once memoized" do
memoize do
"abc"
end
expect(memoize { "world" }).to eq("abc")
end
it "memoizes correctly when used concurrently" do
results = []
threads = []
5.times do
threads << Thread.new do
results << memoize do
sleep 0.001
SecureRandom.hex
end
end
end
threads.each(&:join)
2015-01-10 00:34:37 +08:00
expect(results.uniq.length).to eq(1)
expect(results.count).to eq(5)
end
end