# frozen_string_literal: true require 'rails_helper' describe ApplicationController, type: :controller do controller do include AccountControllerConcern def success head 200 end end before do routes.draw { get 'success' => 'anonymous#success' } end context 'when account is suspended' do it 'returns http gone' do account = Fabricate(:account, suspended: true) get 'success', params: { account_username: account.username } expect(response).to have_http_status(410) end end context 'when account is not suspended' do it 'assigns @account' do account = Fabricate(:account) get 'success', params: { account_username: account.username } expect(assigns(:account)).to eq account end it 'sets link headers' do account = Fabricate(:account, username: 'username') get 'success', params: { account_username: 'username' } expect(response.headers['Link'].to_s).to eq '; rel="lrdd"; type="application/xrd+xml", ; rel="alternate"; type="application/atom+xml", ; 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) end end end