2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe WizardController do
|
2022-07-28 00:14:14 +08:00
|
|
|
context "when wizard is enabled" do
|
2016-09-15 04:36:08 +08:00
|
|
|
before { SiteSetting.wizard_enabled = true }
|
|
|
|
|
2016-08-25 02:35:07 +08:00
|
|
|
it "needs you to be logged in" do
|
2018-06-06 17:07:55 +08:00
|
|
|
get "/wizard.json"
|
2018-01-12 11:15:10 +08:00
|
|
|
expect(response.status).to eq(403)
|
2016-08-25 02:35:07 +08:00
|
|
|
end
|
|
|
|
|
2018-02-01 09:26:45 +08:00
|
|
|
it "needs you to be logged in" do
|
2018-06-06 17:07:55 +08:00
|
|
|
get "/wizard"
|
2018-02-01 09:26:45 +08:00
|
|
|
# for whatever reason, no access is 404
|
|
|
|
# we may want to revisit this at some point and make it 403
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
|
2016-08-25 02:35:07 +08:00
|
|
|
it "raises an error if you aren't an admin" do
|
2018-06-06 17:07:55 +08:00
|
|
|
sign_in(Fabricate(:moderator))
|
|
|
|
get "/wizard.json"
|
2016-08-25 02:35:07 +08:00
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
|
2016-09-15 04:36:08 +08:00
|
|
|
it "raises an error if the wizard is disabled" do
|
|
|
|
SiteSetting.wizard_enabled = false
|
2018-06-06 17:07:55 +08:00
|
|
|
sign_in(Fabricate(:admin))
|
|
|
|
get "/wizard.json"
|
2016-09-15 04:36:08 +08:00
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
|
2016-08-25 02:35:07 +08:00
|
|
|
it "renders the wizard if you are an admin" do
|
2018-06-06 17:07:55 +08:00
|
|
|
sign_in(Fabricate(:admin))
|
|
|
|
get "/wizard.json"
|
2018-06-07 12:27:48 +08:00
|
|
|
expect(response.status).to eq(200)
|
2016-08-25 02:35:07 +08:00
|
|
|
end
|
2016-08-26 01:14:56 +08:00
|
|
|
|
|
|
|
it "returns JSON when the mime type is appropriate" do
|
2018-06-06 17:07:55 +08:00
|
|
|
sign_in(Fabricate(:admin))
|
|
|
|
get "/wizard.json"
|
2018-06-07 12:27:48 +08:00
|
|
|
expect(response.status).to eq(200)
|
2020-05-07 23:04:12 +08:00
|
|
|
expect(response.parsed_body.has_key?("wizard")).to eq(true)
|
2016-08-26 01:14:56 +08:00
|
|
|
end
|
2016-08-25 02:35:07 +08:00
|
|
|
end
|
|
|
|
end
|