about summary refs log tree commit diff
path: root/spec/controllers
diff options
context:
space:
mode:
authorysksn <bluewhale1982@gmail.com>2018-12-15 04:36:40 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-12-14 20:36:40 +0100
commit458e2b0c5b982999d0bd6695b96da9ccfca66664 (patch)
tree2163523b7d44f1621007a3953fdc4910a68d695a /spec/controllers
parentc1600a0f69c1453c76c3baf45c41271c7b526146 (diff)
Add specs for RemoteInteractionController (#9524)
Diffstat (limited to 'spec/controllers')
-rw-r--r--spec/controllers/remote_interaction_controller_spec.rb39
1 files changed, 39 insertions, 0 deletions
diff --git a/spec/controllers/remote_interaction_controller_spec.rb b/spec/controllers/remote_interaction_controller_spec.rb
new file mode 100644
index 000000000..bb0074b11
--- /dev/null
+++ b/spec/controllers/remote_interaction_controller_spec.rb
@@ -0,0 +1,39 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe RemoteInteractionController, type: :controller do
+  render_views
+
+  let(:status) { Fabricate(:status) }
+
+  describe 'GET #new' do
+    it 'returns 200' do
+      get :new, params: { id: status.id }
+      expect(response).to have_http_status(200)
+    end
+  end
+
+  describe 'POST #create' do
+    context '@remote_follow is valid' do
+      it 'returns 302' do
+        allow_any_instance_of(RemoteFollow).to receive(:valid?) { true }
+        allow_any_instance_of(RemoteFollow).to receive(:addressable_template) do
+          Addressable::Template.new('https://hoge.com')
+        end
+
+        post :create, params: { id: status.id, remote_follow: { acct: '@hoge' } }
+        expect(response).to have_http_status(302)
+      end
+    end
+
+    context '@remote_follow is invalid' do
+      it 'returns 200' do
+        allow_any_instance_of(RemoteFollow).to receive(:valid?) { false }
+        post :create, params: { id: status.id, remote_follow: { acct: '@hoge' } }
+
+        expect(response).to have_http_status(200)
+      end
+    end
+  end
+end