2019-04-29 19:27:42 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 21:27:38 -05:00
|
|
|
RSpec.describe StepsController do
|
2023-01-09 05:18:21 -06:00
|
|
|
before { SiteSetting.wizard_enabled = true }
|
2016-09-14 15:36:08 -05:00
|
|
|
|
2023-01-09 05:18:21 -06:00
|
|
|
it "needs you to be logged in" do
|
|
|
|
put "/wizard/steps/made-up-id.json", params: { fields: { forum_title: "updated title" } }
|
2018-01-11 21:15:10 -06:00
|
|
|
expect(response.status).to eq(403)
|
2016-08-25 12:14:56 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "raises an error if you aren't an admin" do
|
2018-06-06 04:49:43 -05:00
|
|
|
sign_in(Fabricate(:moderator))
|
2017-08-30 23:06:56 -05:00
|
|
|
|
2023-01-09 05:18:21 -06:00
|
|
|
put "/wizard/steps/made-up-id.json", params: { fields: { forum_title: "updated title" } }
|
2017-08-30 23:06:56 -05:00
|
|
|
|
2016-08-25 12:14:56 -05:00
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
|
|
|
|
context "as an admin" do
|
2023-01-09 05:18:21 -06:00
|
|
|
before { sign_in(Fabricate(:admin)) }
|
2016-08-25 12:14:56 -05:00
|
|
|
|
2016-09-14 15:36:08 -05:00
|
|
|
it "raises an error if the wizard is disabled" do
|
|
|
|
SiteSetting.wizard_enabled = false
|
2023-01-09 05:18:21 -06:00
|
|
|
put "/wizard/steps/introduction.json",
|
|
|
|
params: {
|
|
|
|
fields: {
|
|
|
|
contact_email: "eviltrout@example.com",
|
|
|
|
},
|
|
|
|
}
|
2016-09-14 15:36:08 -05:00
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
|
2016-08-25 12:14:56 -05:00
|
|
|
it "updates properly if you are staff" do
|
2023-01-09 05:18:21 -06:00
|
|
|
put "/wizard/steps/introduction.json",
|
|
|
|
params: {
|
|
|
|
fields: {
|
|
|
|
title: "FooBar",
|
|
|
|
default_locale: SiteSetting.default_locale,
|
|
|
|
},
|
|
|
|
}
|
2017-08-30 23:06:56 -05:00
|
|
|
|
2018-06-07 03:11:09 -05:00
|
|
|
expect(response.status).to eq(200)
|
2016-08-31 12:35:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns errors if the field has them" do
|
2023-01-09 05:18:21 -06:00
|
|
|
put "/wizard/steps/introduction.json", params: { fields: { title: "" } }
|
2017-08-30 23:06:56 -05:00
|
|
|
|
2018-06-06 04:49:43 -05:00
|
|
|
expect(response.status).to eq(422)
|
2016-08-25 12:14:56 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|