2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe SecureSession do
|
2016-12-19 15:00:22 +08:00
|
|
|
it "operates correctly" do
|
|
|
|
s = SecureSession.new("abc")
|
|
|
|
|
|
|
|
s["hello"] = "world"
|
|
|
|
s["foo"] = "bar"
|
|
|
|
expect(s["hello"]).to eq("world")
|
|
|
|
expect(s["foo"]).to eq("bar")
|
|
|
|
|
|
|
|
s["hello"] = nil
|
|
|
|
expect(s["hello"]).to eq(nil)
|
|
|
|
end
|
2019-11-11 08:18:12 +08:00
|
|
|
|
|
|
|
it "can override expiry" do
|
|
|
|
s = SecureSession.new("abc")
|
|
|
|
key = SecureRandom.hex
|
|
|
|
|
|
|
|
s.set(key, "test2", expires: 5.minutes)
|
|
|
|
expect(s.ttl(key)).to be_within(1.second).of (5.minutes)
|
|
|
|
|
|
|
|
key = SecureRandom.hex
|
|
|
|
s.set(key, "test2")
|
|
|
|
expect(s.ttl(key)).to be_within(1.second).of (SecureSession.expiry)
|
|
|
|
end
|
2016-12-19 15:00:22 +08:00
|
|
|
end
|