about summary refs log tree commit diff
path: root/spec/workers
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-08-19 18:44:48 +0200
committerGitHub <noreply@github.com>2017-08-19 18:44:48 +0200
commit412ea873060da4dc73236fdd63a2931d27dbfa40 (patch)
treeeae2940a3179b76d0e1c92a224e469966e290b22 /spec/workers
parent774b8661bc578c2e7eae7fff2be24466774fe858 (diff)
Improve ActivityPub/OStatus compatibility (#4632)
*Note: OStatus URIs are invalid for ActivityPub. But we have them for
as long as we want to keep old OStatus-sourced content and as long as
we remain OStatus-compatible.*

- In Announce handling, if object URI is not a URL, fallback to object URL
- Do not use specialized ThreadResolveWorker, rely on generalized handling
- When serializing notes, if parent's URI is not a URL, use parent's URL
Diffstat (limited to 'spec/workers')
-rw-r--r--spec/workers/activitypub/thread_resolve_worker_spec.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/spec/workers/activitypub/thread_resolve_worker_spec.rb b/spec/workers/activitypub/thread_resolve_worker_spec.rb
deleted file mode 100644
index b954cb62c..000000000
--- a/spec/workers/activitypub/thread_resolve_worker_spec.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-require 'rails_helper'
-
-describe ActivityPub::ThreadResolveWorker do
-  subject { described_class.new }
-
-  let(:status) { Fabricate(:status) }
-  let(:parent) { Fabricate(:status) }
-
-  describe '#perform' do
-    it 'gets parent from ActivityPub::FetchRemoteStatusService and glues them together' do
-      allow(ActivityPub::FetchRemoteStatusService).to receive(:new).and_return(double(:service, call: parent))
-      subject.perform(status.id, 'http://example.com/123')
-      expect(status.reload.in_reply_to_id).to eq parent.id
-    end
-  end
-end