2016-02-29 18:42:08 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Api::SubscriptionsController, type: :controller do
|
2016-09-07 22:33:07 +00:00
|
|
|
render_views
|
|
|
|
|
2016-09-20 00:43:20 +00:00
|
|
|
let(:account) { Fabricate(:account, username: 'gargron', domain: 'quitter.no', remote_url: 'topic_url', secret: 'abc') }
|
2016-03-20 12:03:06 +00:00
|
|
|
|
2016-02-29 18:42:08 +00:00
|
|
|
describe 'GET #show' do
|
2016-03-20 12:03:06 +00:00
|
|
|
before do
|
2016-09-20 00:43:20 +00:00
|
|
|
get :show, params: { :id => account.id, 'hub.topic' => 'topic_url', 'hub.challenge' => '456', 'hub.lease_seconds' => "#{86400 * 30}" }
|
2016-03-20 12:03:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'echoes back the challenge' do
|
|
|
|
expect(response.body).to match '456'
|
|
|
|
end
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #update' do
|
2016-03-20 12:03:06 +00:00
|
|
|
let(:feed) { File.read(File.join(Rails.root, 'spec', 'fixtures', 'push', 'feed.atom')) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_request(:get, "https://quitter.no/avatar/7477-300-20160211190340.png").to_return(request_fixture('avatar.txt'))
|
|
|
|
|
|
|
|
request.env['HTTP_X_HUB_SIGNATURE'] = "sha1=#{OpenSSL::HMAC.hexdigest('sha1', 'abc', feed)}"
|
|
|
|
request.env['RAW_POST_DATA'] = feed
|
|
|
|
|
2016-08-17 15:56:23 +00:00
|
|
|
post :update, params: { id: account.id }
|
2016-03-20 12:03:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http created' do
|
|
|
|
expect(response).to have_http_status(:created)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates statuses for feed' do
|
|
|
|
expect(account.statuses.count).to_not eq 0
|
|
|
|
end
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|
|
|
|
end
|