2023-02-22 11:55:31 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-13 06:47:22 +11:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2019-06-08 00:51:08 +10:00
|
|
|
describe Settings::Preferences::OtherController do
|
2017-04-28 23:12:37 +10:00
|
|
|
render_views
|
|
|
|
|
2022-05-28 04:05:22 +10:00
|
|
|
let(:user) { Fabricate(:user, chosen_languages: []) }
|
2017-04-24 08:38:37 +10:00
|
|
|
|
2016-03-13 06:47:22 +11:00
|
|
|
before do
|
2017-04-21 11:26:52 +10:00
|
|
|
sign_in user, scope: :user
|
2016-03-13 06:47:22 +11:00
|
|
|
end
|
|
|
|
|
2017-04-21 11:26:52 +10:00
|
|
|
describe 'GET #show' do
|
2023-04-20 00:07:29 +10:00
|
|
|
before do
|
2016-03-13 06:47:22 +11:00
|
|
|
get :show
|
2023-04-20 00:07:29 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2018-04-22 05:35:07 +10:00
|
|
|
expect(response).to have_http_status(200)
|
2016-03-13 06:47:22 +11:00
|
|
|
end
|
2023-04-20 00:07:29 +10:00
|
|
|
|
|
|
|
it 'returns private cache control headers' do
|
|
|
|
expect(response.headers['Cache-Control']).to include('private, no-store')
|
|
|
|
end
|
2016-03-13 06:47:22 +11:00
|
|
|
end
|
|
|
|
|
2017-04-21 11:26:52 +10:00
|
|
|
describe 'PUT #update' do
|
2017-04-24 08:38:37 +10:00
|
|
|
it 'updates the user record' do
|
2018-06-17 21:54:02 +10:00
|
|
|
put :update, params: { user: { locale: 'en', chosen_languages: ['es', 'fr', ''] } }
|
2017-04-21 11:26:52 +10:00
|
|
|
|
2019-06-08 00:51:08 +10:00
|
|
|
expect(response).to redirect_to(settings_preferences_other_path)
|
2017-05-02 01:42:13 +10:00
|
|
|
user.reload
|
|
|
|
expect(user.locale).to eq 'en'
|
2023-02-20 16:14:10 +11:00
|
|
|
expect(user.chosen_languages).to eq %w(es fr)
|
2017-04-21 11:26:52 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates user settings' do
|
2023-03-30 23:44:00 +11:00
|
|
|
user.settings.update('web.reblog_modal': false, 'web.delete_modal': true)
|
|
|
|
user.save
|
2017-04-21 11:26:52 +10:00
|
|
|
|
|
|
|
put :update, params: {
|
|
|
|
user: {
|
2023-03-30 23:44:00 +11:00
|
|
|
settings_attributes: {
|
|
|
|
'web.reblog_modal': '1',
|
|
|
|
'web.delete_modal': '0',
|
|
|
|
},
|
2023-02-19 01:33:41 +11:00
|
|
|
},
|
2017-04-21 11:26:52 +10:00
|
|
|
}
|
|
|
|
|
2019-06-08 00:51:08 +10:00
|
|
|
expect(response).to redirect_to(settings_preferences_other_path)
|
2017-04-21 11:26:52 +10:00
|
|
|
user.reload
|
2023-03-30 23:44:00 +11:00
|
|
|
expect(user.settings['web.reblog_modal']).to be true
|
|
|
|
expect(user.settings['web.delete_modal']).to be false
|
2017-04-21 11:26:52 +10:00
|
|
|
end
|
|
|
|
end
|
2016-03-13 06:47:22 +11:00
|
|
|
end
|