2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-13 13:09:07 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-04 05:49:53 +02:00
|
|
|
describe WellKnown::HostMetaController do
|
2017-04-13 13:09:07 +02:00
|
|
|
render_views
|
|
|
|
|
|
|
|
describe 'GET #show' do
|
|
|
|
it 'returns http success' do
|
|
|
|
get :show, format: :xml
|
|
|
|
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2021-03-17 10:09:55 +01:00
|
|
|
expect(response.media_type).to eq 'application/xrd+xml'
|
2023-02-17 22:56:20 +01:00
|
|
|
expect(response.body).to eq <<~XML
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<XRD xmlns="http://docs.oasis-open.org/ns/xri/xrd-1.0">
|
|
|
|
<Link rel="lrdd" template="https://cb6e6126.ngrok.io/.well-known/webfinger?resource={uri}"/>
|
|
|
|
</XRD>
|
|
|
|
XML
|
2017-04-13 13:09:07 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|