Browse Source

rescue HTTP::ConnectionError in RemoteFollowController#create (#4726)

pull/4/head
abcang 6 years ago
committed by Eugen Rochko
parent
commit
ce9a5f358e
2 changed files with 9 additions and 1 deletions
  1. +1
    -1
      app/models/remote_follow.rb
  2. +8
    -0
      spec/controllers/remote_follow_controller_spec.rb

+ 1
- 1
app/models/remote_follow.rb View File

@ -42,7 +42,7 @@ class RemoteFollow
def acct_resource
@_acct_resource ||= Goldfinger.finger("acct:#{acct}")
rescue Goldfinger::Error
rescue Goldfinger::Error, HTTP::ConnectionError
nil
end

+ 8
- 0
spec/controllers/remote_follow_controller_spec.rb View File

@ -87,6 +87,14 @@ describe RemoteFollowController do
expect(response).to render_template(:new)
expect(response.body).to include(I18n.t('remote_follow.missing_resource'))
end
it 'renders new when occur HTTP::ConnectionError' do
allow(Goldfinger).to receive(:finger).with('acct:user@unknown').and_raise(HTTP::ConnectionError)
post :create, params: { account_username: @account.to_param, remote_follow: { acct: 'user@unknown' } }
expect(response).to render_template(:new)
expect(response.body).to include(I18n.t('remote_follow.missing_resource'))
end
end
end

Loading…
Cancel
Save