discourse/spec/integration/multisite_spec.rb
David Taylor c9dab6fd08
DEV: Automatically require 'rails_helper' in all specs (#16077)
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors.

By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
2022-03-01 17:50:50 +00:00

33 lines
1.2 KiB
Ruby

# frozen_string_literal: true
describe 'multisite', type: [:multisite, :request] do
it "should always allow /srv/status through" do
get "http://unknown.com/srv/status"
expect(response.status).to eq(200)
expect(request.env["HTTP_HOST"]).to eq("test.localhost") # Rewritten by EnforceHostname middleware
end
it "should 404 for unknown domains" do
get "http://unknown.com/about.json"
expect(response.status).to eq(404)
end
it "should hit correct site otherwise" do
site_1_url = Fabricate(:topic, title: "Site 1 Topic Title", user: Discourse.system_user).relative_url
test_multisite_connection('second') do
site_2_url = Fabricate(:topic, title: "Site 2 Topic Title", user: Discourse.system_user).relative_url
get "http://test.localhost/#{site_1_url}.json"
expect(request.env["RAILS_MULTISITE_HOST"]).to eq("test.localhost")
expect(response.status).to eq(200)
expect(response.parsed_body["title"]).to eq("Site 1 Topic Title")
get "http://test2.localhost/#{site_2_url}.json"
expect(response.status).to eq(200)
expect(request.env["RAILS_MULTISITE_HOST"]).to eq("test2.localhost")
expect(response.parsed_body["title"]).to eq("Site 2 Topic Title")
end
end
end