2023-02-22 09:55:31 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-10-04 17:22:52 +09:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 14:12:25 +09:00
|
|
|
RSpec.describe Settings::Preferences::NotificationsController do
|
2017-10-04 17:22:52 +09:00
|
|
|
render_views
|
|
|
|
|
|
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in user, scope: :user
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
2023-04-19 23:07:29 +09:00
|
|
|
before do
|
2017-10-04 17:22:52 +09:00
|
|
|
get :show
|
2023-04-19 23:07:29 +09:00
|
|
|
end
|
|
|
|
|
2023-11-11 00:13:42 +09:00
|
|
|
it 'returns http success with private cache control headers', :aggregate_failures do
|
2018-04-22 04:35:07 +09:00
|
|
|
expect(response).to have_http_status(200)
|
2023-04-19 23:07:29 +09:00
|
|
|
expect(response.headers['Cache-Control']).to include('private, no-store')
|
|
|
|
end
|
2017-10-04 17:22:52 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'PUT #update' do
|
|
|
|
it 'updates notifications settings' do
|
2024-03-07 23:53:37 +09:00
|
|
|
user.settings.update('notification_emails.follow': false)
|
2023-03-30 21:44:00 +09:00
|
|
|
user.save
|
2017-10-04 17:22:52 +09:00
|
|
|
|
|
|
|
put :update, params: {
|
|
|
|
user: {
|
2023-03-30 21:44:00 +09:00
|
|
|
settings_attributes: {
|
|
|
|
'notification_emails.follow': '1',
|
|
|
|
},
|
2023-02-18 23:33:41 +09:00
|
|
|
},
|
2017-10-04 17:22:52 +09:00
|
|
|
}
|
|
|
|
|
2019-06-07 10:39:24 +09:00
|
|
|
expect(response).to redirect_to(settings_preferences_notifications_path)
|
2017-10-04 17:22:52 +09:00
|
|
|
user.reload
|
2023-03-30 21:44:00 +09:00
|
|
|
expect(user.settings['notification_emails.follow']).to be true
|
2017-10-04 17:22:52 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|