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