mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 16:46:12 +08:00
4ea21fa2d0
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
33 lines
914 B
Ruby
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
|