diff options
author | Matt Jankowski <mjankowski@thoughtbot.com> | 2017-04-12 10:03:37 -0400 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-12 16:03:37 +0200 |
commit | b352a8e5d4f3dba4b923a2a21dc9ae5343e7e8e4 (patch) | |
tree | 6fab1683ceda218fdf8639a7967e092ba50ff03c /spec/requests | |
parent | fd102059aa63a3953ccfedfe9efa0e6f7993f72a (diff) |
Default to json type for webfinger requests (#1583)
Diffstat (limited to 'spec/requests')
-rw-r--r-- | spec/requests/webfinger_request_spec.rb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/spec/requests/webfinger_request_spec.rb b/spec/requests/webfinger_request_spec.rb new file mode 100644 index 000000000..b5690d22f --- /dev/null +++ b/spec/requests/webfinger_request_spec.rb @@ -0,0 +1,33 @@ +require "rails_helper" + +describe "The webfinger route" do + let(:alice) { Fabricate(:account, username: 'alice') } + + describe "requested without accepts headers" do + it "returns a json response" do + get webfinger_url, params: { resource: alice.to_webfinger_s } + + expect(response).to have_http_status(:success) + expect(response.content_type).to eq "application/jrd+json" + end + end + + describe "requested with html in accepts headers" do + it "returns a json response" do + headers = { 'HTTP_ACCEPT' => 'text/html' } + get webfinger_url, params: { 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 + + describe "requested with xml format" do + it "returns an xml response" 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 + end +end |