discourse/spec/multisite/distributed_cache_spec.rb
Sam Saffron 4ea21fa2d0 DEV: use #frozen_string_literal: true on all spec
This change both speeds up specs (less strings to allocate) and helps catch
cases where methods in Discourse are mutating inputs.

Overall we will be migrating everything to use #frozen_string_literal: true
it will take a while, but this is the first and safest move in this direction
2019-04-30 10:27:42 +10:00

33 lines
914 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Multisite SiteSettings', type: :multisite do
def cache(name, namespace: true)
DistributedCache.new(name, namespace: namespace)
end
context 'without namespace' do
let(:cache1) { cache('test', namespace: false) }
it 'does not leak state across multisite' do
cache1['default'] = true
expect(cache1.hash).to eq('default' => true)
test_multisite_connection('second') do
message = MessageBus.track_publish(DistributedCache::Manager::CHANNEL_NAME) do
cache1['second'] = true
end.first
expect(message.data[:hash_key]).to eq('test')
expect(message.data[:op]).to eq(:set)
expect(message.data[:key]).to eq('second')
expect(message.data[:value]).to eq(true)
end
expect(cache1.hash).to eq('default' => true, 'second' => true)
end
end
end