2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2014-04-11 01:43:33 -04:00
|
|
|
|
|
|
|
describe DistributedMutex do
|
2019-02-19 20:23:42 -05:00
|
|
|
let(:key) { "test_mutex_key" }
|
|
|
|
|
|
|
|
after do
|
2019-12-03 04:05:53 -05:00
|
|
|
Discourse.redis.del(key)
|
2019-02-19 20:23:42 -05:00
|
|
|
end
|
|
|
|
|
2014-04-11 01:43:33 -04:00
|
|
|
it "allows only one mutex object to have the lock at a time" do
|
2014-04-13 20:51:46 -04:00
|
|
|
mutexes = (1..10).map do
|
2019-08-01 04:49:03 -04:00
|
|
|
DistributedMutex.new(key, redis: DiscourseRedis.new)
|
2014-04-13 20:51:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
x = 0
|
|
|
|
mutexes.map do |m|
|
|
|
|
Thread.new do
|
|
|
|
m.synchronize do
|
|
|
|
y = x
|
|
|
|
sleep 0.001
|
|
|
|
x = y + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end.map(&:join)
|
|
|
|
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(x).to eq(10)
|
2014-04-13 20:51:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "handles auto cleanup correctly" do
|
2019-02-19 20:23:42 -05:00
|
|
|
m = DistributedMutex.new(key)
|
2014-04-11 01:43:33 -04:00
|
|
|
|
2019-12-03 04:05:53 -05:00
|
|
|
Discourse.redis.setnx key, Time.now.to_i - 1
|
2014-04-11 01:43:33 -04:00
|
|
|
|
2014-04-13 20:51:46 -04:00
|
|
|
start = Time.now.to_i
|
|
|
|
m.synchronize do
|
|
|
|
"nop"
|
2014-04-11 01:43:33 -04:00
|
|
|
end
|
|
|
|
|
2014-04-13 20:51:46 -04:00
|
|
|
# no longer than a second
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(Time.now.to_i).to be <= start + 1
|
2014-04-11 01:43:33 -04:00
|
|
|
end
|
|
|
|
|
2019-11-19 16:56:07 -05:00
|
|
|
# expected: 1574200319
|
|
|
|
# got: 1574200320
|
|
|
|
#
|
|
|
|
# (compared using ==)
|
|
|
|
# ./spec/components/distributed_mutex_spec.rb:60:in `block (3 levels) in <main>'
|
|
|
|
# ./lib/distributed_mutex.rb:33:in `block in synchronize'
|
|
|
|
xit 'allows the validity of the lock to be configured' do
|
2019-02-19 20:23:42 -05:00
|
|
|
freeze_time
|
|
|
|
|
2019-02-19 20:28:10 -05:00
|
|
|
mutex = DistributedMutex.new(key, validity: 2)
|
2019-02-19 20:23:42 -05:00
|
|
|
|
2019-02-19 20:28:10 -05:00
|
|
|
mutex.synchronize do
|
2019-12-03 04:05:53 -05:00
|
|
|
expect(Discourse.redis.ttl(key)).to eq(2)
|
|
|
|
expect(Discourse.redis.get(key).to_i).to eq(Time.now.to_i + 2)
|
2019-02-19 20:23:42 -05:00
|
|
|
end
|
|
|
|
|
2019-02-19 20:28:10 -05:00
|
|
|
mutex = DistributedMutex.new(key)
|
|
|
|
|
2019-02-19 20:23:42 -05:00
|
|
|
mutex.synchronize do
|
2019-12-03 04:05:53 -05:00
|
|
|
expect(Discourse.redis.ttl(key)).to eq(DistributedMutex::DEFAULT_VALIDITY)
|
2019-02-19 20:23:42 -05:00
|
|
|
|
2019-12-03 04:05:53 -05:00
|
|
|
expect(Discourse.redis.get(key).to_i)
|
2019-02-19 20:23:42 -05:00
|
|
|
.to eq(Time.now.to_i + DistributedMutex::DEFAULT_VALIDITY)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-04-13 20:51:46 -04:00
|
|
|
it "maintains mutex semantics" do
|
2019-02-19 20:23:42 -05:00
|
|
|
m = DistributedMutex.new(key)
|
2014-04-13 20:51:46 -04:00
|
|
|
|
2015-01-09 11:34:37 -05:00
|
|
|
expect {
|
2014-04-13 20:51:46 -04:00
|
|
|
m.synchronize do
|
|
|
|
m.synchronize {}
|
2014-04-11 01:43:33 -04:00
|
|
|
end
|
2015-01-09 11:34:37 -05:00
|
|
|
}.to raise_error(ThreadError)
|
2014-04-11 01:43:33 -04:00
|
|
|
end
|
2014-04-13 20:51:46 -04:00
|
|
|
|
2018-09-19 01:49:18 -04:00
|
|
|
context "readonly redis" do
|
|
|
|
before do
|
2019-12-03 04:05:53 -05:00
|
|
|
Discourse.redis.slaveof "127.0.0.1", "99991"
|
2018-09-19 01:49:18 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
2019-12-03 04:05:53 -05:00
|
|
|
Discourse.redis.slaveof "no", "one"
|
2018-09-19 01:49:18 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "works even if redis is in readonly" do
|
2019-02-19 20:23:42 -05:00
|
|
|
m = DistributedMutex.new(key)
|
2018-09-19 01:49:18 -04:00
|
|
|
start = Time.now
|
|
|
|
done = false
|
|
|
|
|
|
|
|
expect {
|
|
|
|
m.synchronize do
|
|
|
|
done = true
|
|
|
|
end
|
|
|
|
}.to raise_error(Discourse::ReadOnly)
|
|
|
|
|
|
|
|
expect(done).to eq(false)
|
2020-03-10 17:13:17 -04:00
|
|
|
expect(Time.now - start).to be <= 1.second
|
2018-09-19 01:49:18 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-08-01 04:12:05 -04:00
|
|
|
context "executions" do
|
|
|
|
it "should not allow critical sections to overlap" do
|
2019-08-05 07:16:44 -04:00
|
|
|
connections = 3.times.map { DiscourseRedis.new }
|
2019-08-01 04:12:05 -04:00
|
|
|
|
|
|
|
scenario =
|
|
|
|
Concurrency::Scenario.new do |execution|
|
|
|
|
locked = false
|
|
|
|
|
2019-12-03 04:05:53 -05:00
|
|
|
Discourse.redis.del('mutex_key')
|
2019-08-01 04:12:05 -04:00
|
|
|
|
|
|
|
connections.each do |connection|
|
|
|
|
connection.unwatch
|
|
|
|
end
|
|
|
|
|
|
|
|
3.times do |i|
|
|
|
|
execution.spawn do
|
|
|
|
begin
|
|
|
|
redis =
|
|
|
|
Concurrency::RedisWrapper.new(
|
|
|
|
connections[i],
|
|
|
|
execution
|
|
|
|
)
|
|
|
|
|
|
|
|
2.times do
|
|
|
|
DistributedMutex.synchronize('mutex_key', redis: redis) do
|
|
|
|
raise "already locked #{execution.path}" if locked
|
|
|
|
locked = true
|
|
|
|
|
|
|
|
execution.yield
|
|
|
|
|
|
|
|
raise "already unlocked #{execution.path}" unless locked
|
|
|
|
locked = false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
rescue Redis::ConnectionError
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario.run(runs: 10)
|
|
|
|
end
|
|
|
|
end
|
2014-04-11 01:43:33 -04:00
|
|
|
end
|