FEATURE: Add /search discovery

The opensearch.xml results in a "site search engine" being added to
Chrome, while the sitelinks search tag results in "Search this website"
being added to Google Search.
This commit is contained in:
Kane York
2016-02-13 10:29:53 -08:00
parent c650c2a16f
commit f2ddd44712
9 changed files with 73 additions and 18 deletions

View File

@ -0,0 +1,28 @@
require 'rails_helper'
RSpec.describe MetadataController do
describe 'manifest.json' do
it 'returns the right output' do
title = 'MyApp'
SiteSetting.title = title
get :manifest
expect(response.body).to include(title)
expect(response.content_type).to eq('application/json')
end
end
describe 'opensearch.xml' do
it 'returns the right output' do
title = 'MyApp'
favicon_path = '/uploads/something/23432.png'
SiteSetting.title = title
SiteSetting.favicon_url = favicon_path
get :opensearch, format: :xml
expect(response.body).to include(title)
expect(response.body).to include("/search?q={searchTerms}")
expect(response.body).to include('image/png')
expect(response.body).to include(favicon_path)
expect(response.content_type).to eq('application/xml')
end
end
end