about summary refs log tree commit diff
path: root/spec/lib/activitypub/activity/reject_spec.rb
diff options
context:
space:
mode:
authorunarist <m.unarist@gmail.com>2017-08-14 23:57:46 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-08-14 16:57:46 +0200
commita855956185630742ad670f971337a3ff76fd8b32 (patch)
tree94dc8eacdea1d5d295920fb987f442fd0f7fda88 /spec/lib/activitypub/activity/reject_spec.rb
parent5b9ae7981e2458a322f9e2fbeac9b334a15936bc (diff)
Fix ActivityPub follow interaction and add more specs (#4601)
Diffstat (limited to 'spec/lib/activitypub/activity/reject_spec.rb')
-rw-r--r--spec/lib/activitypub/activity/reject_spec.rb38
1 files changed, 38 insertions, 0 deletions
diff --git a/spec/lib/activitypub/activity/reject_spec.rb b/spec/lib/activitypub/activity/reject_spec.rb
new file mode 100644
index 000000000..7fd95bcc6
--- /dev/null
+++ b/spec/lib/activitypub/activity/reject_spec.rb
@@ -0,0 +1,38 @@
+require 'rails_helper'
+
+RSpec.describe ActivityPub::Activity::Reject do
+  let(:sender)    { Fabricate(:account) }
+  let(:recipient) { Fabricate(:account) }
+
+  let(:json) do
+    {
+      '@context': 'https://www.w3.org/ns/activitystreams',
+      id: 'foo',
+      type: 'Reject',
+      actor: ActivityPub::TagManager.instance.uri_for(sender),
+      object: {
+        id: 'bar',
+        type: 'Follow',
+        actor: ActivityPub::TagManager.instance.uri_for(recipient),
+        object: ActivityPub::TagManager.instance.uri_for(sender),
+      },
+    }.with_indifferent_access
+  end
+
+  describe '#perform' do
+    subject { described_class.new(json, sender) }
+
+    before do
+      Fabricate(:follow_request, account: recipient, target_account: sender)
+      subject.perform
+    end
+
+    it 'does not create a follow relationship' do
+      expect(recipient.following?(sender)).to be false
+    end
+
+    it 'removes the follow request' do
+      expect(recipient.requested?(sender)).to be false
+    end
+  end
+end