mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
73 lines
2.9 KiB
Ruby
73 lines
2.9 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe MetadataController do
|
|
describe 'manifest.webmanifest' do
|
|
it 'returns the right output' do
|
|
title = 'MyApp'
|
|
SiteSetting.title = title
|
|
SiteSetting.large_icon_url = "http://big.square/png"
|
|
|
|
get "/manifest.webmanifest"
|
|
expect(response.status).to eq(200)
|
|
expect(response.content_type).to eq('application/manifest+json')
|
|
manifest = JSON.parse(response.body)
|
|
|
|
expect(manifest["name"]).to eq(title)
|
|
expect(manifest["icons"].first["src"]).to eq("http://big.square/png")
|
|
end
|
|
|
|
it 'can guess mime types' do
|
|
SiteSetting.large_icon_url = "http://big.square/ico.jpg"
|
|
get "/manifest.webmanifest"
|
|
expect(response.status).to eq(200)
|
|
manifest = JSON.parse(response.body)
|
|
expect(manifest["icons"].first["type"]).to eq("image/jpeg")
|
|
end
|
|
|
|
it 'defaults to png' do
|
|
SiteSetting.large_icon_url = "http://big.square/noidea.bogus"
|
|
get "/manifest.webmanifest"
|
|
expect(response.status).to eq(200)
|
|
manifest = JSON.parse(response.body)
|
|
expect(manifest["icons"].first["type"]).to eq("image/png")
|
|
end
|
|
|
|
it 'defaults to display standalone for Android' do
|
|
get "/manifest.webmanifest", params: {}, headers: { 'USER-AGENT' => 'Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/67.0.3396.87 Mobile Safari/537.36' }
|
|
manifest = JSON.parse(response.body)
|
|
expect(manifest["display"]).to eq("standalone")
|
|
end
|
|
|
|
it 'defaults to display browser for iPhone' do
|
|
get "/manifest.webmanifest", params: {}, headers: { 'USER-AGENT' => 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' }
|
|
manifest = JSON.parse(response.body)
|
|
expect(manifest["display"]).to eq("browser")
|
|
end
|
|
|
|
it 'can be changed to display standalone for iPhones using a site setting' do
|
|
SiteSetting.pwa_display_browser_regex = "a^" # this never matches
|
|
|
|
get "/manifest.webmanifest", params: {}, headers: { 'USER-AGENT' => 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' }
|
|
manifest = JSON.parse(response.body)
|
|
expect(manifest["display"]).to eq("standalone")
|
|
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.xml"
|
|
expect(response.status).to eq(200)
|
|
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
|