2023-02-21 19:55:31 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-13 07:09:07 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 01:12:25 -04:00
|
|
|
RSpec.describe 'Well Known routes' do
|
2023-02-17 21:25:47 -05:00
|
|
|
describe 'the host-meta route' do
|
2024-10-02 05:23:44 -04:00
|
|
|
it 'routes to correct place' do
|
2023-02-17 21:25:47 -05:00
|
|
|
expect(get('/.well-known/host-meta'))
|
2024-10-02 05:23:44 -04:00
|
|
|
.to route_to('well_known/host_meta#show')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'routes to correct place with json format' do
|
|
|
|
expect(get('/.well-known/host-meta.json'))
|
|
|
|
.to route_to('well_known/host_meta#show', format: 'json')
|
2023-02-17 21:25:47 -05:00
|
|
|
end
|
2017-04-13 07:09:07 -04:00
|
|
|
end
|
|
|
|
|
2023-02-17 21:25:47 -05:00
|
|
|
describe 'the webfinger route' do
|
|
|
|
it 'routes to correct place with json format' do
|
|
|
|
expect(get('/.well-known/webfinger'))
|
|
|
|
.to route_to('well_known/webfinger#show')
|
|
|
|
end
|
2017-04-13 07:09:07 -04:00
|
|
|
end
|
|
|
|
end
|