2013-05-13 16:04:03 +08:00
|
|
|
require 'spec_helper'
|
|
|
|
require 'cache'
|
|
|
|
|
|
|
|
describe Cache do
|
|
|
|
|
|
|
|
let :cache do
|
|
|
|
Cache.new
|
|
|
|
end
|
|
|
|
|
2014-01-06 13:50:04 +08:00
|
|
|
it "can be cleared" do
|
|
|
|
cache.write("hello0", "world")
|
|
|
|
cache.write("hello1", "world")
|
|
|
|
cache.clear
|
2013-05-13 16:04:03 +08:00
|
|
|
|
2014-01-06 13:50:04 +08:00
|
|
|
cache.read("hello0").should be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can delete by family" do
|
|
|
|
cache.write("key2", "test", family: "my_family")
|
|
|
|
cache.write("key", "test", expires_in: 1.minute, family: "my_family")
|
2013-05-13 16:04:03 +08:00
|
|
|
|
|
|
|
cache.delete_by_family("my_family")
|
2014-01-06 13:50:04 +08:00
|
|
|
|
2013-05-13 16:04:03 +08:00
|
|
|
cache.fetch("key").should be_nil
|
|
|
|
cache.fetch("key2").should be_nil
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can delete correctly" do
|
2014-01-06 13:50:04 +08:00
|
|
|
cache.fetch("key", expires_in: 1.minute) do
|
2013-05-13 16:04:03 +08:00
|
|
|
"test"
|
|
|
|
end
|
|
|
|
|
|
|
|
cache.delete("key")
|
|
|
|
cache.fetch("key").should be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can store with expiry correctly" do
|
2014-01-06 13:50:04 +08:00
|
|
|
key = cache.namespaced_key("key")
|
|
|
|
$redis.expects(:get).with(key).returns nil
|
|
|
|
$redis.expects(:setex).with(key, 60 , "bob")
|
2013-05-13 16:04:03 +08:00
|
|
|
|
|
|
|
r = cache.fetch("key", expires_in: 1.minute) do
|
|
|
|
"bob"
|
|
|
|
end
|
|
|
|
r.should == "bob"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can store and fetch correctly" do
|
2014-01-06 13:50:04 +08:00
|
|
|
key = cache.namespaced_key("key")
|
|
|
|
$redis.expects(:get).with(key).returns nil
|
|
|
|
$redis.expects(:set).with(key, "bob")
|
2013-05-13 16:04:03 +08:00
|
|
|
|
|
|
|
r = cache.fetch "key" do
|
|
|
|
"bob"
|
|
|
|
end
|
|
|
|
r.should == "bob"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can fetch existing correctly" do
|
2014-01-06 13:50:04 +08:00
|
|
|
key = cache.namespaced_key("key")
|
2013-05-13 16:04:03 +08:00
|
|
|
|
2014-01-06 13:50:04 +08:00
|
|
|
$redis.expects(:get).with(key).returns "bill"
|
2013-05-13 16:04:03 +08:00
|
|
|
|
|
|
|
r = cache.fetch "key" do
|
|
|
|
"bob"
|
|
|
|
end
|
|
|
|
r.should == "bill"
|
|
|
|
end
|
|
|
|
end
|