2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 22:27:38 -04:00
|
|
|
RSpec.describe WizardController do
|
2016-09-14 16:36:08 -04:00
|
|
|
context 'wizard enabled' do
|
|
|
|
before do
|
|
|
|
SiteSetting.wizard_enabled = true
|
|
|
|
end
|
|
|
|
|
2016-08-24 14:35:07 -04:00
|
|
|
it 'needs you to be logged in' do
|
2018-06-06 05:07:55 -04:00
|
|
|
get "/wizard.json"
|
2018-01-11 22:15:10 -05:00
|
|
|
expect(response.status).to eq(403)
|
2016-08-24 14:35:07 -04:00
|
|
|
end
|
|
|
|
|
2018-01-31 20:26:45 -05:00
|
|
|
it 'needs you to be logged in' do
|
2018-06-06 05:07:55 -04:00
|
|
|
get "/wizard"
|
2018-01-31 20:26:45 -05: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-24 14:35:07 -04:00
|
|
|
it "raises an error if you aren't an admin" do
|
2018-06-06 05:07:55 -04:00
|
|
|
sign_in(Fabricate(:moderator))
|
|
|
|
get "/wizard.json"
|
2016-08-24 14:35:07 -04:00
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
|
2016-09-14 16:36:08 -04:00
|
|
|
it "raises an error if the wizard is disabled" do
|
|
|
|
SiteSetting.wizard_enabled = false
|
2018-06-06 05:07:55 -04:00
|
|
|
sign_in(Fabricate(:admin))
|
|
|
|
get "/wizard.json"
|
2016-09-14 16:36:08 -04:00
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
|
2016-08-24 14:35:07 -04:00
|
|
|
it "renders the wizard if you are an admin" do
|
2018-06-06 05:07:55 -04:00
|
|
|
sign_in(Fabricate(:admin))
|
|
|
|
get "/wizard.json"
|
2018-06-07 00:27:48 -04:00
|
|
|
expect(response.status).to eq(200)
|
2016-08-24 14:35:07 -04:00
|
|
|
end
|
2016-08-25 13:14:56 -04:00
|
|
|
|
|
|
|
it "returns JSON when the mime type is appropriate" do
|
2018-06-06 05:07:55 -04:00
|
|
|
sign_in(Fabricate(:admin))
|
|
|
|
get "/wizard.json"
|
2018-06-07 00:27:48 -04:00
|
|
|
expect(response.status).to eq(200)
|
2020-05-07 11:04:12 -04:00
|
|
|
expect(response.parsed_body.has_key?('wizard')).to eq(true)
|
2016-08-25 13:14:56 -04:00
|
|
|
end
|
2016-08-24 14:35:07 -04:00
|
|
|
end
|
|
|
|
end
|