mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-30 12:00:13 -05:00
Combine repeated requests in account controller concern spec (#28957)
This commit is contained in:
parent
9d3830344f
commit
f91acba70a
@ -49,22 +49,21 @@ describe AccountControllerConcern do
|
|||||||
end
|
end
|
||||||
|
|
||||||
context 'when account is not suspended' do
|
context 'when account is not suspended' do
|
||||||
it 'assigns @account' do
|
let(:account) { Fabricate(:account, username: 'username') }
|
||||||
account = Fabricate(:account)
|
|
||||||
|
it 'assigns @account, returns success, and sets link headers' do
|
||||||
get 'success', params: { account_username: account.username }
|
get 'success', params: { account_username: account.username }
|
||||||
|
|
||||||
expect(assigns(:account)).to eq account
|
expect(assigns(:account)).to eq account
|
||||||
end
|
|
||||||
|
|
||||||
it 'sets link headers' do
|
|
||||||
Fabricate(:account, username: 'username')
|
|
||||||
get 'success', params: { account_username: 'username' }
|
|
||||||
expect(response.headers['Link'].to_s).to eq '<http://test.host/.well-known/webfinger?resource=acct%3Ausername%40cb6e6126.ngrok.io>; rel="lrdd"; type="application/jrd+json", <https://cb6e6126.ngrok.io/users/username>; rel="alternate"; type="application/activity+json"'
|
|
||||||
end
|
|
||||||
|
|
||||||
it 'returns http success' do
|
|
||||||
account = Fabricate(:account)
|
|
||||||
get 'success', params: { account_username: account.username }
|
|
||||||
expect(response).to have_http_status(200)
|
expect(response).to have_http_status(200)
|
||||||
|
expect(response.headers['Link'].to_s).to eq(expected_link_headers)
|
||||||
|
end
|
||||||
|
|
||||||
|
def expected_link_headers
|
||||||
|
[
|
||||||
|
'<http://test.host/.well-known/webfinger?resource=acct%3Ausername%40cb6e6126.ngrok.io>; rel="lrdd"; type="application/jrd+json"',
|
||||||
|
'<https://cb6e6126.ngrok.io/users/username>; rel="alternate"; type="application/activity+json"',
|
||||||
|
].join(', ')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user