2016-08-24 14:35:07 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2016-08-25 13:14:56 -04:00
|
|
|
describe WizardController do
|
2016-08-24 14:35:07 -04:00
|
|
|
|
2016-09-14 16:36:08 -04:00
|
|
|
context 'wizard enabled' do
|
2016-08-24 14:35:07 -04:00
|
|
|
render_views
|
|
|
|
|
2016-09-14 16:36:08 -04:00
|
|
|
before do
|
|
|
|
SiteSetting.wizard_enabled = true
|
|
|
|
end
|
|
|
|
|
2016-08-24 14:35:07 -04:00
|
|
|
it 'needs you to be logged in' do
|
2018-01-11 22:15:10 -05:00
|
|
|
get :index, format: :json
|
|
|
|
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
|
|
|
|
get :index
|
|
|
|
# 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
|
2016-09-22 11:12:34 -04:00
|
|
|
log_in(:moderator)
|
2017-08-31 00:06:56 -04:00
|
|
|
get :index, format: :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
|
|
|
|
log_in(:admin)
|
2017-08-31 00:06:56 -04:00
|
|
|
get :index, format: :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
|
|
|
|
log_in(:admin)
|
2017-08-31 00:06:56 -04:00
|
|
|
get :index, format: :json
|
2016-08-24 14:35:07 -04:00
|
|
|
expect(response).to be_success
|
|
|
|
end
|
2016-08-25 13:14:56 -04:00
|
|
|
|
|
|
|
it "returns JSON when the mime type is appropriate" do
|
|
|
|
log_in(:admin)
|
2017-08-31 00:06:56 -04:00
|
|
|
get :index, format: 'json'
|
2016-08-25 13:14:56 -04:00
|
|
|
expect(response).to be_success
|
|
|
|
expect(::JSON.parse(response.body).has_key?('wizard')).to eq(true)
|
|
|
|
end
|
2016-08-24 14:35:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|