2016-02-22 10:00:20 -05:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe XrdController, type: :controller do
|
2016-09-07 18:33:07 -04:00
|
|
|
render_views
|
|
|
|
|
2016-02-24 18:17:01 -05:00
|
|
|
describe 'GET #host_meta' do
|
2016-03-19 09:02:30 -04:00
|
|
|
it 'returns http success' do
|
2016-02-29 13:42:08 -05:00
|
|
|
get :host_meta
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
2016-02-24 18:17:01 -05:00
|
|
|
end
|
2016-02-22 10:00:20 -05:00
|
|
|
|
2016-02-24 18:17:01 -05:00
|
|
|
describe 'GET #webfinger' do
|
2016-02-29 13:42:08 -05:00
|
|
|
let(:alice) { Fabricate(:account, username: 'alice') }
|
|
|
|
|
2016-03-19 09:02:30 -04:00
|
|
|
it 'returns http success when account can be found' do
|
2016-08-17 11:56:23 -04:00
|
|
|
get :webfinger, params: { resource: "acct:#{alice.username}@anything.com" }
|
2016-02-29 13:42:08 -05:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
|
2016-03-19 09:02:30 -04:00
|
|
|
it 'returns http not found when account cannot be found' do
|
2016-08-17 11:56:23 -04:00
|
|
|
get :webfinger, params: { resource: 'acct:not@existing.com' }
|
2016-02-29 13:42:08 -05:00
|
|
|
expect(response).to have_http_status(:not_found)
|
|
|
|
end
|
2016-02-24 18:17:01 -05:00
|
|
|
end
|
2016-02-22 10:00:20 -05:00
|
|
|
end
|