2016-08-25 13:14:56 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe StepsController do
|
2016-09-14 16:36:08 -04:00
|
|
|
before do
|
|
|
|
SiteSetting.wizard_enabled = true
|
|
|
|
end
|
|
|
|
|
2016-08-25 13:14:56 -04:00
|
|
|
it 'needs you to be logged in' do
|
2018-06-06 05:49:43 -04:00
|
|
|
put "/wizard/steps/made-up-id.json", params: {
|
|
|
|
fields: { forum_title: "updated title" }
|
|
|
|
}
|
2018-01-11 22:15:10 -05:00
|
|
|
expect(response.status).to eq(403)
|
2016-08-25 13:14:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "raises an error if you aren't an admin" do
|
2018-06-06 05:49:43 -04:00
|
|
|
sign_in(Fabricate(:moderator))
|
2017-08-31 00:06:56 -04:00
|
|
|
|
2018-06-06 05:49:43 -04:00
|
|
|
put "/wizard/steps/made-up-id.json", params: {
|
|
|
|
fields: { forum_title: "updated title" }
|
|
|
|
}
|
2017-08-31 00:06:56 -04:00
|
|
|
|
2016-08-25 13:14:56 -04:00
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
|
|
|
|
context "as an admin" do
|
|
|
|
before do
|
2018-06-06 05:49:43 -04:00
|
|
|
sign_in(Fabricate(:admin))
|
2016-08-25 13:14:56 -04:00
|
|
|
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:49:43 -04:00
|
|
|
put "/wizard/steps/contact.json", params: {
|
|
|
|
fields: { contact_email: "eviltrout@example.com" }
|
|
|
|
}
|
2016-09-14 16:36:08 -04:00
|
|
|
expect(response).to be_forbidden
|
|
|
|
end
|
|
|
|
|
2016-08-25 13:14:56 -04:00
|
|
|
it "updates properly if you are staff" do
|
2018-06-06 05:49:43 -04:00
|
|
|
put "/wizard/steps/contact.json", params: {
|
|
|
|
fields: { contact_email: "eviltrout@example.com" }
|
|
|
|
}
|
2017-08-31 00:06:56 -04:00
|
|
|
|
2018-06-07 04:11:09 -04:00
|
|
|
expect(response.status).to eq(200)
|
2016-08-31 13:35:49 -04:00
|
|
|
expect(SiteSetting.contact_email).to eq("eviltrout@example.com")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns errors if the field has them" do
|
2018-06-06 05:49:43 -04:00
|
|
|
put "/wizard/steps/contact.json", params: {
|
|
|
|
fields: { contact_email: "not-an-email" }
|
|
|
|
}
|
2017-08-31 00:06:56 -04:00
|
|
|
|
2018-06-06 05:49:43 -04:00
|
|
|
expect(response.status).to eq(422)
|
2016-08-25 13:14:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|