discourse/spec/components/redis_store_spec.rb

60 lines
909 B
Ruby
Raw Normal View History

2013-09-24 08:47:35 -04:00
require 'spec_helper'
require 'cache'
describe "Redis Store" do
let :cache do
Cache.new(namespace: 'foo')
2013-09-24 08:47:35 -04:00
end
let :store do
DiscourseRedis.new_redis_store
end
before(:each) do
cache.redis.del "key"
store.delete "key"
end
it "can store stuff" do
store.fetch "key" do
"key in store"
end
r = store.read "key"
2015-01-09 11:34:37 -05:00
expect(r).to eq("key in store")
2013-09-24 08:47:35 -04:00
end
it "doesn't collide with our Cache" do
2013-09-24 08:47:35 -04:00
store.fetch "key" do
"key in store"
end
2013-09-24 08:47:35 -04:00
cache.fetch "key" do
"key in cache"
end
2013-09-24 08:47:35 -04:00
r = store.read "key"
2015-01-09 11:34:37 -05:00
expect(r).to eq("key in store")
2013-09-24 08:47:35 -04:00
end
it "can be cleared without clearing our cache" do
store.fetch "key" do
"key in store"
end
cache.fetch "key" do
"key in cache"
end
store.clear
2015-01-09 11:34:37 -05:00
expect(store.read("key")).to eq(nil)
expect(cache.fetch("key")).to eq("key in cache")
2013-09-24 08:47:35 -04:00
end
end