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