about summary refs log tree commit diff
path: root/spec/requests/webfinger_request_spec.rb
blob: 68a1478bed6b62ff85f957e768b07cb403d6e693 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

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(200)
      expect(response.media_type).to eq 'application/jrd+json'
    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(200)
      expect(response.media_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(200)
      expect(response.media_type).to eq 'application/jrd+json'
    end
  end
end