mirror of
https://github.com/discourse/discourse.git
synced 2025-06-04 23:36:11 +08:00
SECURITY: Restrict message-bus access on login_required sites
This commit is contained in:
33
spec/integration/message_bus_spec.rb
Normal file
33
spec/integration/message_bus_spec.rb
Normal file
@ -0,0 +1,33 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
describe 'message bus integration' do
|
||||
|
||||
it "allows anonymous requests to the messagebus" do
|
||||
post "/message-bus/poll"
|
||||
expect(response.status).to eq(200)
|
||||
end
|
||||
|
||||
it "allows authenticated requests to the messagebus" do
|
||||
sign_in Fabricate(:user)
|
||||
post "/message-bus/poll"
|
||||
expect(response.status).to eq(200)
|
||||
end
|
||||
|
||||
context "with login_required" do
|
||||
before { SiteSetting.login_required = true }
|
||||
|
||||
it "blocks anonymous requests to the messagebus" do
|
||||
post "/message-bus/poll"
|
||||
expect(response.status).to eq(403)
|
||||
end
|
||||
|
||||
it "allows authenticated requests to the messagebus" do
|
||||
sign_in Fabricate(:user)
|
||||
post "/message-bus/poll"
|
||||
expect(response.status).to eq(200)
|
||||
end
|
||||
end
|
||||
|
||||
end
|
Reference in New Issue
Block a user