1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-08 12:35:04 +00:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
789 B
Ruby
Raw Normal View History

# 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