2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2014-11-11 17:43:41 -05:00
|
|
|
require 'distributed_cache'
|
|
|
|
|
|
|
|
describe DistributedCache do
|
|
|
|
|
2017-07-28 16:59:25 -04:00
|
|
|
before :all do
|
2017-08-01 16:11:48 -04:00
|
|
|
@bus = MessageBus::Instance.new
|
|
|
|
@bus.configure(backend: :memory)
|
|
|
|
@manager = DistributedCache::Manager.new(@bus)
|
|
|
|
end
|
|
|
|
|
|
|
|
after :all do
|
|
|
|
@bus.destroy
|
|
|
|
end
|
|
|
|
|
|
|
|
def cache(name)
|
|
|
|
DistributedCache.new(name, @manager)
|
2017-07-28 16:59:25 -04:00
|
|
|
end
|
|
|
|
|
2014-11-11 17:43:41 -05:00
|
|
|
let! :cache1 do
|
2017-08-01 16:11:48 -04:00
|
|
|
cache("test")
|
2014-11-11 17:43:41 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
let! :cache2 do
|
2017-08-01 16:11:48 -04:00
|
|
|
cache("test")
|
2014-11-11 17:43:41 -05:00
|
|
|
end
|
|
|
|
|
2015-06-09 16:08:06 -04:00
|
|
|
it 'allows us to store Set' do
|
2017-08-01 16:11:48 -04:00
|
|
|
c1 = cache("test1")
|
|
|
|
c2 = cache("test1")
|
2015-06-09 16:08:06 -04:00
|
|
|
|
|
|
|
set = Set.new
|
|
|
|
set << 1
|
|
|
|
set << "b"
|
2016-01-29 17:01:15 -05:00
|
|
|
set << 92803984
|
|
|
|
set << 93739739873973
|
2015-06-09 16:08:06 -04:00
|
|
|
|
|
|
|
c1["cats"] = set
|
|
|
|
|
|
|
|
wait_for do
|
|
|
|
c2["cats"] == set
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(c2["cats"]).to eq(set)
|
|
|
|
|
|
|
|
set << 5
|
|
|
|
|
2017-07-31 16:40:59 -04:00
|
|
|
c2["cats"] = set
|
2015-06-09 16:08:06 -04:00
|
|
|
|
|
|
|
wait_for do
|
|
|
|
c1["cats"] == set
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(c1["cats"]).to eq(set)
|
|
|
|
end
|
|
|
|
|
2014-11-12 20:41:35 -05:00
|
|
|
it 'does not leak state across caches' do
|
2017-08-01 16:11:48 -04:00
|
|
|
c2 = cache("test1")
|
|
|
|
c3 = cache("test1")
|
2014-11-12 20:41:35 -05:00
|
|
|
c2["hi"] = "hi"
|
|
|
|
wait_for do
|
|
|
|
c3["hi"] == "hi"
|
|
|
|
end
|
|
|
|
|
|
|
|
Thread.pass
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(cache1["hi"]).to eq(nil)
|
2014-11-12 20:41:35 -05:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2014-11-11 17:43:41 -05:00
|
|
|
it 'allows coerces symbol keys to strings' do
|
|
|
|
cache1[:key] = "test"
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(cache1["key"]).to eq("test")
|
2014-11-11 17:43:41 -05:00
|
|
|
|
|
|
|
wait_for do
|
|
|
|
cache2[:key] == "test"
|
|
|
|
end
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(cache2["key"]).to eq("test")
|
2014-11-11 17:43:41 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'sets other caches' do
|
|
|
|
cache1["test"] = "world"
|
|
|
|
wait_for do
|
|
|
|
cache2["test"] == "world"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'deletes from other caches' do
|
|
|
|
cache1["foo"] = "bar"
|
|
|
|
|
|
|
|
wait_for do
|
|
|
|
cache2["foo"] == "bar"
|
|
|
|
end
|
|
|
|
|
|
|
|
cache1.delete("foo")
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(cache1["foo"]).to eq(nil)
|
2014-11-11 17:43:41 -05:00
|
|
|
|
|
|
|
wait_for do
|
|
|
|
cache2["foo"] == nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'clears cache on request' do
|
|
|
|
cache1["foo"] = "bar"
|
|
|
|
|
|
|
|
wait_for do
|
|
|
|
cache2["foo"] == "bar"
|
|
|
|
end
|
|
|
|
|
|
|
|
cache1.clear
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(cache1["foo"]).to eq(nil)
|
2014-11-11 17:43:41 -05:00
|
|
|
wait_for do
|
|
|
|
cache2["boom"] == nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|