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