mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:16:41 +08:00
7b6d6b76eb
- Also refactors two site settings components into one, with tests
117 lines
3.8 KiB
Ruby
117 lines
3.8 KiB
Ruby
require 'spec_helper'
|
|
require_dependency 'site_setting'
|
|
require_dependency 'site_setting_extension'
|
|
|
|
describe SiteSetting do
|
|
|
|
describe "allows_embeddable_host" do
|
|
it 'works as expected' do
|
|
SiteSetting.embeddable_hosts = 'eviltrout.com'
|
|
expect(SiteSetting.allows_embeddable_host?('http://eviltrout.com')).to eq(true)
|
|
expect(SiteSetting.allows_embeddable_host?('https://eviltrout.com')).to eq(true)
|
|
expect(SiteSetting.allows_embeddable_host?('https://not-eviltrout.com')).to eq(false)
|
|
end
|
|
|
|
it 'works with a http host' do
|
|
SiteSetting.embeddable_hosts = 'http://eviltrout.com'
|
|
expect(SiteSetting.allows_embeddable_host?('http://eviltrout.com')).to eq(true)
|
|
expect(SiteSetting.allows_embeddable_host?('https://eviltrout.com')).to eq(true)
|
|
expect(SiteSetting.allows_embeddable_host?('https://not-eviltrout.com')).to eq(false)
|
|
end
|
|
|
|
it 'works with a https host' do
|
|
SiteSetting.embeddable_hosts = 'https://eviltrout.com'
|
|
expect(SiteSetting.allows_embeddable_host?('http://eviltrout.com')).to eq(true)
|
|
expect(SiteSetting.allows_embeddable_host?('https://eviltrout.com')).to eq(true)
|
|
expect(SiteSetting.allows_embeddable_host?('https://not-eviltrout.com')).to eq(false)
|
|
end
|
|
|
|
it 'works with multiple hosts' do
|
|
SiteSetting.embeddable_hosts = "https://eviltrout.com\nhttps://discourse.org"
|
|
expect(SiteSetting.allows_embeddable_host?('http://eviltrout.com')).to eq(true)
|
|
expect(SiteSetting.allows_embeddable_host?('http://discourse.org')).to eq(true)
|
|
end
|
|
|
|
end
|
|
|
|
describe 'topic_title_length' do
|
|
it 'returns a range of min/max topic title length' do
|
|
expect(SiteSetting.topic_title_length).to eq(
|
|
(SiteSetting.defaults[:min_topic_title_length]..SiteSetting.defaults[:max_topic_title_length])
|
|
)
|
|
end
|
|
end
|
|
|
|
describe 'post_length' do
|
|
it 'returns a range of min/max post length' do
|
|
expect(SiteSetting.post_length).to eq(SiteSetting.defaults[:min_post_length]..SiteSetting.defaults[:max_post_length])
|
|
end
|
|
end
|
|
|
|
describe 'first_post_length' do
|
|
it 'returns a range of min/max first post length' do
|
|
expect(SiteSetting.first_post_length).to eq(SiteSetting.defaults[:min_first_post_length]..SiteSetting.defaults[:max_post_length])
|
|
end
|
|
end
|
|
|
|
describe 'private_message_title_length' do
|
|
it 'returns a range of min/max pm topic title length' do
|
|
expect(SiteSetting.private_message_title_length).to eq(SiteSetting.defaults[:min_private_message_title_length]..SiteSetting.defaults[:max_topic_title_length])
|
|
end
|
|
end
|
|
|
|
describe 'in test we do some judo to ensure SiteSetting is always reset between tests' do
|
|
|
|
it 'is always the correct default' do
|
|
expect(SiteSetting.contact_email).to eq('')
|
|
end
|
|
|
|
it 'sets a setting' do
|
|
SiteSetting.contact_email = 'sam@sam.com'
|
|
end
|
|
|
|
it 'is always the correct default' do
|
|
expect(SiteSetting.contact_email).to eq('')
|
|
end
|
|
end
|
|
|
|
describe "anonymous_homepage" do
|
|
it "returns latest" do
|
|
expect(SiteSetting.anonymous_homepage).to eq('latest')
|
|
end
|
|
end
|
|
|
|
describe "top_menu" do
|
|
before { SiteSetting.top_menu = 'one,-nope|two|three,-not|four,ignored|category/xyz|latest' }
|
|
|
|
describe "items" do
|
|
let(:items) { SiteSetting.top_menu_items }
|
|
|
|
it 'returns TopMenuItem objects' do
|
|
expect(items[0]).to be_kind_of(TopMenuItem)
|
|
end
|
|
end
|
|
|
|
describe "homepage" do
|
|
it "has homepage" do
|
|
expect(SiteSetting.homepage).to eq('one')
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "scheme" do
|
|
|
|
it "returns http when ssl is disabled" do
|
|
SiteSetting.use_https = false
|
|
expect(SiteSetting.scheme).to eq("http")
|
|
end
|
|
|
|
it "returns https when using ssl" do
|
|
SiteSetting.expects(:use_https).returns(true)
|
|
expect(SiteSetting.scheme).to eq("https")
|
|
end
|
|
|
|
end
|
|
|
|
end
|