discourse/spec/components/distributed_cache_spec.rb

61 lines
982 B
Ruby
Raw Normal View History

require 'spec_helper'
require 'distributed_cache'
describe DistributedCache do
let! :cache1 do
DistributedCache.new("test")
end
let! :cache2 do
DistributedCache.new("test")
end
it 'allows coerces symbol keys to strings' do
cache1[:key] = "test"
cache1["key"].should == "test"
wait_for do
cache2[:key] == "test"
end
cache2["key"].should == "test"
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")
cache1["foo"].should == nil
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
cache1["foo"].should == nil
wait_for do
cache2["boom"] == nil
end
end
end