2013-02-05 13:16:51 -06: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-08 17:51:38 -06:00
|
|
|
context 'when https is off' do
|
2013-02-05 13:16:51 -06:00
|
|
|
before do
|
2014-01-08 17:51:38 -06:00
|
|
|
SiteSetting.expects(:use_https?).returns(false)
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2014-01-08 17:51:38 -06:00
|
|
|
it 'has a non https base url' do
|
2013-02-05 13:16:51 -06:00
|
|
|
Discourse.base_url.should == "http://foo.com"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-08 17:51:38 -06:00
|
|
|
context 'when https is on' do
|
2013-02-05 13:16:51 -06:00
|
|
|
before do
|
2014-01-08 17:51:38 -06:00
|
|
|
SiteSetting.expects(:use_https?).returns(true)
|
2013-02-05 13:16:51 -06: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-10 15:58:23 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-09-06 02:28:37 -05:00
|
|
|
context '#site_contact_user' do
|
2013-05-10 15:58:23 -05:00
|
|
|
|
|
|
|
let!(:admin) { Fabricate(:admin) }
|
2013-05-31 10:41:40 -05:00
|
|
|
let!(:another_admin) { Fabricate(:admin) }
|
2013-05-10 15:58:23 -05:00
|
|
|
|
2013-09-06 02:28:37 -05: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-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2014-01-23 04:26:31 -06:00
|
|
|
it 'returns the user specified by the site setting site_contact_username regardless of its case' do
|
|
|
|
SiteSetting.stubs(:site_contact_username).returns(another_admin.username.upcase)
|
|
|
|
Discourse.site_contact_user.should == another_admin
|
|
|
|
end
|
|
|
|
|
2013-05-10 15:58:23 -05:00
|
|
|
it 'returns the first admin user otherwise' do
|
2013-09-06 02:28:37 -05:00
|
|
|
SiteSetting.stubs(:site_contact_username).returns(nil)
|
|
|
|
Discourse.site_contact_user.should == admin
|
2013-05-10 15:58:23 -05:00
|
|
|
end
|
2013-02-25 10:42:20 -06:00
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-07-31 16:26:34 -05:00
|
|
|
context "#store" do
|
|
|
|
|
|
|
|
it "returns LocalStore by default" do
|
2013-11-05 12:04:47 -06:00
|
|
|
Discourse.store.should be_a(FileStore::LocalStore)
|
2013-07-31 16:26:34 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns S3Store when S3 is enabled" do
|
|
|
|
SiteSetting.expects(:enable_s3_uploads?).returns(true)
|
2013-11-05 12:04:47 -06:00
|
|
|
Discourse.store.should be_a(FileStore::S3Store)
|
2013-07-31 16:26:34 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|