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