21a767dcfa
This change includes: - Improve the spec coverage for incoming request to the webfinger action - For requests without an accept header (ie, what a browser might look like), return a JSON response. - For requests with an explicit format of xml or json, return that format. - For requests using an accept header, return that format. Also adds failing spec showing webfinger does not return xml, which covers the issue described in: https://github.com/tootsuite/mastodon/issues/1983
49 lines
1.6 KiB
Ruby
49 lines
1.6 KiB
Ruby
require 'rails_helper'
|
|
|
|
describe 'The webfinger route' do
|
|
let(:alice) { Fabricate(:account, username: 'alice') }
|
|
|
|
describe 'requested with standard accepts headers' do
|
|
it 'returns a json response' do
|
|
get webfinger_url(resource: alice.to_webfinger_s)
|
|
|
|
expect(response).to have_http_status(:success)
|
|
expect(response.content_type).to eq 'application/jrd+json'
|
|
end
|
|
end
|
|
|
|
describe 'asking for xml format' do
|
|
it 'returns an xml response for xml format' do
|
|
get webfinger_url(resource: alice.to_webfinger_s, format: :xml)
|
|
|
|
expect(response).to have_http_status(:success)
|
|
expect(response.content_type).to eq 'application/xrd+xml'
|
|
end
|
|
|
|
it 'returns an xml response for xml accept header' do
|
|
headers = { 'HTTP_ACCEPT' => 'application/xrd+xml' }
|
|
get webfinger_url(resource: alice.to_webfinger_s), headers: headers
|
|
|
|
expect(response).to have_http_status(:success)
|
|
expect(response.content_type).to eq 'application/xrd+xml'
|
|
end
|
|
end
|
|
|
|
describe 'asking for json format' do
|
|
it 'returns a json response for json format' do
|
|
get webfinger_url(resource: alice.to_webfinger_s, format: :json)
|
|
|
|
expect(response).to have_http_status(:success)
|
|
expect(response.content_type).to eq 'application/jrd+json'
|
|
end
|
|
|
|
it 'returns a json response for json accept header' do
|
|
headers = { 'HTTP_ACCEPT' => 'application/jrd+json' }
|
|
get webfinger_url(resource: alice.to_webfinger_s), headers: headers
|
|
|
|
expect(response).to have_http_status(:success)
|
|
expect(response.content_type).to eq 'application/jrd+json'
|
|
end
|
|
end
|
|
end
|