2023-02-22 09:55:31 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-13 20:09:07 +09:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 14:12:25 +09:00
|
|
|
RSpec.describe 'Well Known routes' do
|
2023-02-18 11:25:47 +09:00
|
|
|
describe 'the host-meta route' do
|
2024-10-02 18:23:44 +09:00
|
|
|
it 'routes to correct place' do
|
2023-02-18 11:25:47 +09:00
|
|
|
expect(get('/.well-known/host-meta'))
|
2024-10-02 18:23:44 +09: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-18 11:25:47 +09:00
|
|
|
end
|
2017-04-13 20:09:07 +09:00
|
|
|
end
|
|
|
|
|
2023-02-18 11:25:47 +09: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 20:09:07 +09:00
|
|
|
end
|
|
|
|
end
|