This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-04-13 13:09:07 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe WellKnown::HostMetaController, type: :controller do
|
|
|
|
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)
|
2017-05-29 18:05:30 +02:00
|
|
|
expect(response.content_type).to eq 'application/xrd+xml'
|
|
|
|
expect(response.body).to eq <<XML
|
2018-05-02 22:28:46 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-05-29 18:05:30 +02:00
|
|
|
<XRD xmlns="http://docs.oasis-open.org/ns/xri/xrd-1.0">
|
2017-06-03 14:40:55 +02:00
|
|
|
<Link rel="lrdd" type="application/xrd+xml" template="https://cb6e6126.ngrok.io/.well-known/webfinger?resource={uri}"/>
|
2017-05-29 18:05:30 +02:00
|
|
|
</XRD>
|
|
|
|
XML
|
2017-04-13 13:09:07 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|