Add specs for notifications

This commit is contained in:
Kamil Trzcinski 2017-03-03 13:51:49 +01:00
parent 2b27a98db3
commit 3f5191de6d
No known key found for this signature in database
GPG Key ID: 4505F5C7E12C6A5A
2 changed files with 55 additions and 1 deletions

View File

@ -160,7 +160,7 @@ module Gitlab
result = redis.set(key, value, ex: expire, nx: !overwrite)
if result
payload = "#{key}=#{value}"
redis.publish(RUNNER_NOTIFICATION_CHANNEL, payload)
redis.publish(NOTIFICATION_CHANNEL, payload)
value
else
redis.get(key)

View File

@ -199,4 +199,58 @@ describe Gitlab::Workhorse, lib: true do
end
end
end
describe '.ensure_and_notify' do
let(:key) { 'test-key' }
let(:value) { 'test-value' }
subject { described_class.ensure_and_notify(key, value, overwrite: overwrite) }
shared_examples 'set and notify' do
it 'set and return the same value' do
is_expected.to eq(value)
end
it 'set and notify' do
expect_any_instance_of(Redis).to receive(:publish)
.with(described_class::NOTIFICATION_CHANNEL, "test-key=test-value")
subject
end
end
context 'when we set a new key' do
let(:overwrite) { true }
it_behaves_like 'set and notify'
end
context 'when we set an existing key' do
let(:old_value) { 'existing-key' }
before do
described_class.ensure_and_notify(key, old_value, overwrite: true)
end
context 'and overwrite' do
let(:overwrite) { true }
it_behaves_like 'set and notify'
end
context 'and do not overwrite' do
let(:overwrite) { false }
it 'try to set but return the previous value' do
is_expected.to eq(old_value)
end
it 'set and notify' do
expect_any_instance_of(Redis).not_to receive(:publish)
subject
end
end
end
end
end