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