2016-03-13 04:47:22 +09:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2016-10-14 09:28:49 +09:00
|
|
|
RSpec.describe Settings::ProfilesController, type: :controller do
|
2017-04-28 22:12:37 +09:00
|
|
|
render_views
|
2016-03-13 04:47:22 +09:00
|
|
|
|
|
|
|
before do
|
2017-04-30 07:25:38 +09:00
|
|
|
@user = Fabricate(:user)
|
|
|
|
sign_in @user, scope: :user
|
2016-03-13 04:47:22 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET #show" do
|
|
|
|
it "returns http success" do
|
|
|
|
get :show
|
2018-04-22 04:35:07 +09:00
|
|
|
expect(response).to have_http_status(200)
|
2016-03-13 04:47:22 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-30 07:25:38 +09:00
|
|
|
describe 'PUT #update' do
|
|
|
|
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
|
|
|
account = Fabricate(:account, user: @user, display_name: 'Old name')
|
|
|
|
|
|
|
|
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
|
2016-03-13 04:47:22 +09:00
|
|
|
end
|