Files
discourse/spec/lib/cache_spec.rb
T

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

108 lines
2.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
require "cache"
2022-07-28 05:27:38 +03:00
RSpec.describe Cache do
let :cache do
Cache.new
end
2019-11-27 16:11:49 +11:00
it "supports exist?" do
cache.write("testing", 1.1)
expect(cache.exist?("testing")).to eq(true)
expect(cache.exist?(SecureRandom.hex)).to eq(false)
end
2019-11-27 12:35:14 +11:00
it "supports float" do
cache.write("float", 1.1)
expect(cache.read("float")).to eq(1.1)
end
2014-01-07 17:36:47 +11:00
it "supports fixnum" do
cache.write("num", 1)
2015-01-09 13:34:37 -03:00
expect(cache.read("num")).to eq(1)
2014-01-07 17:36:47 +11:00
end
it "supports hash" do
hash = { a: 1, b: [1, 2, 3] }
cache.write("hash", hash)
2015-01-09 13:34:37 -03:00
expect(cache.read("hash")).to eq(hash)
2014-01-07 17:36:47 +11:00
end
it "can be cleared" do
2019-12-03 10:05:53 +01:00
Discourse.redis.set("boo", "boo")
cache.write("hello0", "world")
cache.write("hello1", "world")
cache.clear
2019-12-03 10:05:53 +01:00
expect(Discourse.redis.get("boo")).to eq("boo")
2015-01-09 13:34:37 -03:00
expect(cache.read("hello0")).to eq(nil)
end
it "can delete correctly" do
2019-11-27 16:11:49 +11:00
cache.delete("key")
cache.fetch("key", expires_in: 1.minute) { "test" }
2019-11-27 16:11:49 +11:00
expect(cache.fetch("key")).to eq("test")
cache.delete("key")
2015-01-09 13:34:37 -03:00
expect(cache.fetch("key")).to eq(nil)
end
2014-01-07 17:36:47 +11:00
it "calls setex in redis" do
cache.delete("key")
2015-02-19 16:58:05 +11:00
cache.delete("bla")
2014-01-07 17:36:47 +11:00
key = cache.normalize_key("key")
2014-01-07 17:36:47 +11:00
cache.fetch("key", expires_in: 1.minute) { "bob" }
2015-02-19 16:58:05 +11:00
2019-12-03 10:05:53 +01:00
expect(Discourse.redis.ttl(key)).to be_within(2.seconds).of(1.minute)
2015-02-19 16:58:05 +11:00
# we always expire withing a day
cache.fetch("bla") { "hi" }
key = cache.normalize_key("bla")
2019-12-03 10:05:53 +01:00
expect(Discourse.redis.ttl(key)).to be_within(2.seconds).of(1.day)
end
it "can store and fetch correctly" do
2014-01-07 17:36:47 +11:00
cache.delete "key"
r =
cache.fetch "key" do
"bob"
end
2019-11-27 16:11:49 +11:00
2015-01-09 13:34:37 -03:00
expect(r).to eq("bob")
end
it "can fetch existing correctly" do
2014-01-07 17:36:47 +11:00
cache.write "key", "bill"
r =
cache.fetch "key" do
"bob"
end
2015-01-09 13:34:37 -03:00
expect(r).to eq("bill")
end
it "can fetch keys with pattern" do
cache.write "users:admins", "jeff"
cache.write "users:moderators", "bob"
expect(cache.keys("users:*").count).to eq(2)
end
it "can fetch namespace" do
expect(cache.namespace).to eq("_CACHE")
end
it "uses the defined expires_in" do
cache.write "foo:bar", "baz", expires_in: 3.minutes
expect(cache.redis.ttl("#{cache.namespace}:foo:bar")).to eq(180)
end
end