summaryrefslogtreecommitdiff
path: root/spec/gitlab_config_spec.rb
blob: 6c1af857452659657fce2404ce92cf2d9b84bc3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
require_relative 'spec_helper'
require_relative '../lib/gitlab_config'

describe GitlabConfig do
  let(:config) { GitlabConfig.new }

  describe :redis do
    before do
      config.instance_variable_set(:@config, YAML.load(<<eos
redis:
  bin: /usr/bin/redis-cli
  host: 127.0.1.1
  port: 6378
  pass: secure
  database: 1
  socket: /var/run/redis/redis.sock
  namespace: my:gitlab
eos
                                   ))
    end

    it { config.redis['bin'].should eq('/usr/bin/redis-cli') }
    it { config.redis['host'].should eq('127.0.1.1') }
    it { config.redis['port'].should eq(6378) }
    it { config.redis['database'].should eq(1) }
    it { config.redis['namespace'].should eq('my:gitlab') }
    it { config.redis['socket'].should eq('/var/run/redis/redis.sock') }
    it { config.redis['pass'].should eq('secure') }
  end

  describe :gitlab_url do
    let(:url) { 'http://test.com' }
    subject { config.gitlab_url }
    before { config.send(:config)['gitlab_url'] = url }

    it { should_not be_empty }
    it { should eq(url) }

    context 'remove trailing slashes' do
      before { config.send(:config)['gitlab_url'] = url + '//' }

      it { should eq(url) }
    end
  end

  describe :audit_usernames do
    subject { config.audit_usernames }

    it("returns false by default") { should eq(false) }
  end
end