2016-06-24 01:26:33 -04:00
|
|
|
|
require 'spec_helper'
|
2018-03-14 09:42:49 -04:00
|
|
|
|
require_relative '../../config/initializers/1_settings' unless defined?(Settings)
|
2016-01-18 06:35:30 -05:00
|
|
|
|
|
2017-07-10 10:24:02 -04:00
|
|
|
|
describe Settings do
|
2017-08-17 18:05:56 -04:00
|
|
|
|
describe '#ldap' do
|
|
|
|
|
it 'can be accessed with dot syntax all the way down' do
|
|
|
|
|
expect(Gitlab.config.ldap.servers.main.label).to eq('ldap')
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Specifically trying to cause this error discovered in EE when removing the
|
|
|
|
|
# reassignment of each server element with Settingslogic.
|
|
|
|
|
#
|
|
|
|
|
# `undefined method `label' for #<Hash:0x007fbd18b59c08>`
|
|
|
|
|
#
|
|
|
|
|
it 'can be accessed in a very specific way that breaks without reassigning each element with Settingslogic' do
|
|
|
|
|
server_settings = Gitlab.config.ldap.servers['main']
|
|
|
|
|
expect(server_settings.label).to eq('ldap')
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2016-01-18 06:35:30 -05:00
|
|
|
|
describe '#host_without_www' do
|
|
|
|
|
context 'URL with protocol' do
|
|
|
|
|
it 'returns the host' do
|
2017-07-25 13:09:00 -04:00
|
|
|
|
expect(described_class.host_without_www('http://foo.com')).to eq 'foo.com'
|
|
|
|
|
expect(described_class.host_without_www('http://www.foo.com')).to eq 'foo.com'
|
|
|
|
|
expect(described_class.host_without_www('http://secure.foo.com')).to eq 'secure.foo.com'
|
2018-01-24 04:11:30 -05:00
|
|
|
|
expect(described_class.host_without_www('https://www.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon')).to eq 'gravatar.com'
|
2016-01-18 06:35:30 -05:00
|
|
|
|
|
2017-07-25 13:09:00 -04:00
|
|
|
|
expect(described_class.host_without_www('https://foo.com')).to eq 'foo.com'
|
|
|
|
|
expect(described_class.host_without_www('https://www.foo.com')).to eq 'foo.com'
|
|
|
|
|
expect(described_class.host_without_www('https://secure.foo.com')).to eq 'secure.foo.com'
|
|
|
|
|
expect(described_class.host_without_www('https://secure.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon')).to eq 'secure.gravatar.com'
|
2016-01-18 06:35:30 -05:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'URL without protocol' do
|
|
|
|
|
it 'returns the host' do
|
2017-07-25 13:09:00 -04:00
|
|
|
|
expect(described_class.host_without_www('foo.com')).to eq 'foo.com'
|
|
|
|
|
expect(described_class.host_without_www('www.foo.com')).to eq 'foo.com'
|
|
|
|
|
expect(described_class.host_without_www('secure.foo.com')).to eq 'secure.foo.com'
|
|
|
|
|
expect(described_class.host_without_www('www.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon')).to eq 'gravatar.com'
|
2016-01-18 06:35:30 -05:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'URL with user/port' do
|
|
|
|
|
it 'returns the host' do
|
2017-07-25 13:09:00 -04:00
|
|
|
|
expect(described_class.host_without_www('bob:pass@foo.com:8080')).to eq 'foo.com'
|
|
|
|
|
expect(described_class.host_without_www('bob:pass@www.foo.com:8080')).to eq 'foo.com'
|
|
|
|
|
expect(described_class.host_without_www('bob:pass@secure.foo.com:8080')).to eq 'secure.foo.com'
|
|
|
|
|
expect(described_class.host_without_www('bob:pass@www.gravatar.com:8080/avatar/%{hash}?s=%{size}&d=identicon')).to eq 'gravatar.com'
|
2016-01-18 06:35:30 -05:00
|
|
|
|
|
2017-07-25 13:09:00 -04:00
|
|
|
|
expect(described_class.host_without_www('http://bob:pass@foo.com:8080')).to eq 'foo.com'
|
|
|
|
|
expect(described_class.host_without_www('http://bob:pass@www.foo.com:8080')).to eq 'foo.com'
|
|
|
|
|
expect(described_class.host_without_www('http://bob:pass@secure.foo.com:8080')).to eq 'secure.foo.com'
|
|
|
|
|
expect(described_class.host_without_www('http://bob:pass@www.gravatar.com:8080/avatar/%{hash}?s=%{size}&d=identicon')).to eq 'gravatar.com'
|
2016-01-18 06:35:30 -05:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|