about summary refs log tree commit diff
path: root/spec
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-09-26 16:42:38 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-09-26 16:44:40 +0200
commitc6b0311b8626b42bc7e79e0195047a50e5b64dd1 (patch)
treee68f4b6922de5ec6277de7bc76b2bdb47a8c3e89 /spec
parent0bd4608ad1b29328f04fcad6e7a20ef61668d239 (diff)
Fix #54 - Fetch remote accounts by URL from mentions
Fetching atom extracted from FetchRemoteAccountService and FetchRemoteStatusService
into FetchAtomService. Mentions of the constant "http://activityschema.org/collection/public"
skipped as it's not a real URL/user.
Diffstat (limited to 'spec')
-rw-r--r--spec/controllers/api/subscriptions_controller_spec.rb7
-rw-r--r--spec/services/fetch_atom_service_spec.rb4
-rw-r--r--spec/services/fetch_feed_service_spec.rb8
-rw-r--r--spec/services/fetch_remote_account_service_spec.rb4
-rw-r--r--spec/services/fetch_remote_status_service_spec.rb4
5 files changed, 18 insertions, 9 deletions
diff --git a/spec/controllers/api/subscriptions_controller_spec.rb b/spec/controllers/api/subscriptions_controller_spec.rb
index e0ae8d48e..2af6cb725 100644
--- a/spec/controllers/api/subscriptions_controller_spec.rb
+++ b/spec/controllers/api/subscriptions_controller_spec.rb
@@ -32,7 +32,12 @@ RSpec.describe Api::SubscriptionsController, type: :controller do
       stub_request(:head, "https://social.umeahackerspace.se/notice/424348").to_return(status: 404)
       stub_request(:head, "https://community.highlandarrow.com/notice/50467").to_return(status: 404)
       stub_request(:head, "https://quitter.no/notice/1243309").to_return(status: 404)
-
+      stub_request(:head, "https://quitter.no/user/7477").to_return(status: 404)
+      stub_request(:head, "https://community.highlandarrow.com/user/1").to_return(status: 404)
+      stub_request(:head, "https://social.umeahackerspace.se/user/2").to_return(status: 404)
+      stub_request(:head, "https://gs.kawa-kun.com/user/2").to_return(status: 404)
+      stub_request(:head, "https://mastodon.social/users/Gargron").to_return(status: 404)
+      
       request.env['HTTP_X_HUB_SIGNATURE'] = "sha1=#{OpenSSL::HMAC.hexdigest('sha1', 'abc', feed)}"
       request.env['RAW_POST_DATA'] = feed
 
diff --git a/spec/services/fetch_atom_service_spec.rb b/spec/services/fetch_atom_service_spec.rb
new file mode 100644
index 000000000..5491fd027
--- /dev/null
+++ b/spec/services/fetch_atom_service_spec.rb
@@ -0,0 +1,4 @@
+require 'rails_helper'
+
+RSpec.describe FetchAtomService do
+end
diff --git a/spec/services/fetch_feed_service_spec.rb b/spec/services/fetch_feed_service_spec.rb
deleted file mode 100644
index a28333fe3..000000000
--- a/spec/services/fetch_feed_service_spec.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-require 'rails_helper'
-
-RSpec.describe FetchFeedService do
-  subject { FetchFeedService.new }
-
-  it 'fetches remote user\'s feed'
-  it 'processes the feed'
-end
diff --git a/spec/services/fetch_remote_account_service_spec.rb b/spec/services/fetch_remote_account_service_spec.rb
new file mode 100644
index 000000000..bb1877c7a
--- /dev/null
+++ b/spec/services/fetch_remote_account_service_spec.rb
@@ -0,0 +1,4 @@
+require 'rails_helper'
+
+RSpec.describe FetchRemoteAccountService do
+end
diff --git a/spec/services/fetch_remote_status_service_spec.rb b/spec/services/fetch_remote_status_service_spec.rb
new file mode 100644
index 000000000..cbdecbf25
--- /dev/null
+++ b/spec/services/fetch_remote_status_service_spec.rb
@@ -0,0 +1,4 @@
+require 'rails_helper'
+
+RSpec.describe FetchRemoteStatusService do
+end