2013-02-06 03:16:51 +08:00
|
|
|
require 'spec_helper'
|
|
|
|
require 'discourse'
|
|
|
|
|
|
|
|
describe Discourse do
|
|
|
|
|
|
|
|
before do
|
|
|
|
RailsMultisite::ConnectionManagement.stubs(:current_hostname).returns('foo.com')
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'current_hostname' do
|
|
|
|
|
|
|
|
it 'returns the hostname from the current db connection' do
|
|
|
|
Discourse.current_hostname.should == 'foo.com'
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'base_url' do
|
2014-01-09 07:51:38 +08:00
|
|
|
context 'when https is off' do
|
2013-02-06 03:16:51 +08:00
|
|
|
before do
|
2014-01-09 07:51:38 +08:00
|
|
|
SiteSetting.expects(:use_https?).returns(false)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2014-01-09 07:51:38 +08:00
|
|
|
it 'has a non https base url' do
|
2013-02-06 03:16:51 +08:00
|
|
|
Discourse.base_url.should == "http://foo.com"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-09 07:51:38 +08:00
|
|
|
context 'when https is on' do
|
2013-02-06 03:16:51 +08:00
|
|
|
before do
|
2014-01-09 07:51:38 +08:00
|
|
|
SiteSetting.expects(:use_https?).returns(true)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a non-ssl base url' do
|
|
|
|
Discourse.base_url.should == "https://foo.com"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a non standard port specified' do
|
|
|
|
before do
|
|
|
|
SiteSetting.stubs(:port).returns(3000)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the non standart port in the base url" do
|
|
|
|
Discourse.base_url.should == "http://foo.com:3000"
|
|
|
|
end
|
2013-05-11 04:58:23 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-09-06 15:28:37 +08:00
|
|
|
context '#site_contact_user' do
|
2013-05-11 04:58:23 +08:00
|
|
|
|
|
|
|
let!(:admin) { Fabricate(:admin) }
|
2013-05-31 23:41:40 +08:00
|
|
|
let!(:another_admin) { Fabricate(:admin) }
|
2013-05-11 04:58:23 +08:00
|
|
|
|
2013-09-06 15:28:37 +08:00
|
|
|
it 'returns the user specified by the site setting site_contact_username' do
|
|
|
|
SiteSetting.stubs(:site_contact_username).returns(another_admin.username)
|
|
|
|
Discourse.site_contact_user.should == another_admin
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-05-11 04:58:23 +08:00
|
|
|
it 'returns the first admin user otherwise' do
|
2013-09-06 15:28:37 +08:00
|
|
|
SiteSetting.stubs(:site_contact_username).returns(nil)
|
|
|
|
Discourse.site_contact_user.should == admin
|
2013-05-11 04:58:23 +08:00
|
|
|
end
|
2013-02-26 00:42:20 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-08-01 05:26:34 +08:00
|
|
|
context "#store" do
|
|
|
|
|
|
|
|
it "returns LocalStore by default" do
|
2013-11-06 02:04:47 +08:00
|
|
|
Discourse.store.should be_a(FileStore::LocalStore)
|
2013-08-01 05:26:34 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns S3Store when S3 is enabled" do
|
|
|
|
SiteSetting.expects(:enable_s3_uploads?).returns(true)
|
2013-11-06 02:04:47 +08:00
|
|
|
Discourse.store.should be_a(FileStore::S3Store)
|
2013-08-01 05:26:34 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|