diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-26 16:42:38 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-09-26 16:44:40 +0200 |
commit | c6b0311b8626b42bc7e79e0195047a50e5b64dd1 (patch) | |
tree | e68f4b6922de5ec6277de7bc76b2bdb47a8c3e89 /spec/controllers | |
parent | 0bd4608ad1b29328f04fcad6e7a20ef61668d239 (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/controllers')
-rw-r--r-- | spec/controllers/api/subscriptions_controller_spec.rb | 7 |
1 files changed, 6 insertions, 1 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 |