]> cat aescling's git repositories - mastodon.git/commitdiff
Fix handling of temporary failures in ProcessMentionsService (#5842)
authorThibG <thib@sitedethib.com>
Tue, 28 Nov 2017 14:00:22 +0000 (15:00 +0100)
committerEugen Rochko <eugen@zeonfederated.com>
Tue, 28 Nov 2017 14:00:22 +0000 (15:00 +0100)
* Add test for temporary account resolving failures in ProcessMentionsService

* Fix processing of mentions to already-known remote accounts on temporary failures

app/services/process_mentions_service.rb
spec/services/process_mentions_service_spec.rb

index a229d4ff861beb3044e394a94193b8fb7458865f..e12721c464cc10101d092e7c661f5956ea21a374 100644 (file)
@@ -18,7 +18,7 @@ class ProcessMentionsService < BaseService
       end
 
       if mentioned_account.nil?
-        username, domain  = match.first.split('@')
+        username, domain  = $1.split('@')
         mentioned_account = Account.find_remote(username, domain)
       end
 
index 09f8fa45b8dcbef404eb4b160e92d974718ea2f7..19a8678f028de6be64b6aa31130e1af972132cff 100644 (file)
@@ -41,4 +41,25 @@ RSpec.describe ProcessMentionsService do
       expect(a_request(:post, remote_user.inbox_url)).to have_been_made.once
     end
   end
+
+  context 'Temporarily-unreachable ActivityPub user' do
+    let(:remote_user) { Fabricate(:account, username: 'remote_user', protocol: :activitypub, domain: 'example.com', inbox_url: 'http://example.com/inbox', last_webfingered_at: nil) }
+
+    subject { ProcessMentionsService.new }
+
+    before do
+      stub_request(:get, "https://example.com/.well-known/host-meta").to_return(status: 404)
+      stub_request(:get, "https://example.com/.well-known/webfinger?resource=acct:remote_user@example.com").to_return(status: 500)
+      stub_request(:post, remote_user.inbox_url)
+      subject.call(status)
+    end
+
+    it 'creates a mention' do
+      expect(remote_user.mentions.where(status: status).count).to eq 1
+    end
+
+    it 'sends activity to the inbox' do
+      expect(a_request(:post, remote_user.inbox_url)).to have_been_made.once
+    end
+  end
 end