2023-02-22 09:55:31 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-13 04:47:22 +09:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-04 12:49:53 +09:00
|
|
|
RSpec.describe Settings::ProfilesController do
|
2017-04-28 22:12:37 +09:00
|
|
|
render_views
|
2016-03-13 04:47:22 +09:00
|
|
|
|
2022-01-28 08:46:42 +09:00
|
|
|
let!(:user) { Fabricate(:user) }
|
|
|
|
let(:account) { user.account }
|
|
|
|
|
2016-03-13 04:47:22 +09:00
|
|
|
before do
|
2022-01-28 08:46:42 +09:00
|
|
|
sign_in user, scope: :user
|
2016-03-13 04:47:22 +09:00
|
|
|
end
|
|
|
|
|
2023-02-19 07:38:14 +09:00
|
|
|
describe 'GET #show' do
|
2023-04-19 23:07:29 +09:00
|
|
|
before do
|
2016-03-13 04:47:22 +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
|
2016-03-13 04:47:22 +09:00
|
|
|
end
|
|
|
|
|
2017-04-30 07:25:38 +09:00
|
|
|
describe 'PUT #update' do
|
2022-01-28 08:46:42 +09:00
|
|
|
before do
|
|
|
|
user.account.update(display_name: 'Old name')
|
|
|
|
end
|
|
|
|
|
2017-04-30 07:25:38 +09:00
|
|
|
it 'updates the user profile' do
|
2017-08-13 07:44:41 +09:00
|
|
|
allow(ActivityPub::UpdateDistributionWorker).to receive(:perform_async)
|
2017-04-30 07:25:38 +09:00
|
|
|
put :update, params: { account: { display_name: 'New name' } }
|
|
|
|
expect(account.reload.display_name).to eq 'New name'
|
|
|
|
expect(response).to redirect_to(settings_profile_path)
|
2017-08-13 07:44:41 +09:00
|
|
|
expect(ActivityPub::UpdateDistributionWorker).to have_received(:perform_async).with(account.id)
|
2017-04-30 07:25:38 +09:00
|
|
|
end
|
|
|
|
end
|
2018-12-14 13:07:21 +09:00
|
|
|
|
|
|
|
describe 'PUT #update with new profile image' do
|
|
|
|
it 'updates profile image' do
|
|
|
|
allow(ActivityPub::UpdateDistributionWorker).to receive(:perform_async)
|
|
|
|
expect(account.avatar.instance.avatar_file_name).to be_nil
|
|
|
|
|
2021-03-24 18:44:31 +09:00
|
|
|
put :update, params: { account: { avatar: fixture_file_upload('avatar.gif', 'image/gif') } }
|
2018-12-14 13:07:21 +09:00
|
|
|
expect(response).to redirect_to(settings_profile_path)
|
2023-02-20 10:33:27 +09:00
|
|
|
expect(account.reload.avatar.instance.avatar_file_name).to_not be_nil
|
2018-12-14 13:07:21 +09:00
|
|
|
expect(ActivityPub::UpdateDistributionWorker).to have_received(:perform_async).with(account.id)
|
|
|
|
end
|
|
|
|
end
|
2016-03-13 04:47:22 +09:00
|
|
|
end
|