application_setting_spec.rb 14.6 KB
Newer Older
1 2 3
require 'spec_helper'

describe ApplicationSetting, models: true do
K
Kamil Trzcinski 已提交
4
  let(:setting) { ApplicationSetting.create_from_defaults }
5

K
Kamil Trzcinski 已提交
6
  it { expect(setting).to be_valid }
7
  it { expect(setting.uuid).to be_present }
8

R
Robert Speicher 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22
  describe 'validations' do
    let(:http)  { 'http://example.com' }
    let(:https) { 'https://example.com' }
    let(:ftp)   { 'ftp://example.com' }

    it { is_expected.to allow_value(nil).for(:home_page_url) }
    it { is_expected.to allow_value(http).for(:home_page_url) }
    it { is_expected.to allow_value(https).for(:home_page_url) }
    it { is_expected.not_to allow_value(ftp).for(:home_page_url) }

    it { is_expected.to allow_value(nil).for(:after_sign_out_path) }
    it { is_expected.to allow_value(http).for(:after_sign_out_path) }
    it { is_expected.to allow_value(https).for(:after_sign_out_path) }
    it { is_expected.not_to allow_value(ftp).for(:after_sign_out_path) }
23

24 25 26 27 28 29 30 31
    describe 'disabled_oauth_sign_in_sources validations' do
      before do
        allow(Devise).to receive(:omniauth_providers).and_return([:github])
      end

      it { is_expected.to allow_value(['github']).for(:disabled_oauth_sign_in_sources) }
      it { is_expected.not_to allow_value(['test']).for(:disabled_oauth_sign_in_sources) }
    end
32

33
    describe 'default_artifacts_expire_in' do
34
      it 'sets an error if it cannot parse' do
35 36
        setting.update(default_artifacts_expire_in: 'a')

37
        expect_invalid
38 39
      end

40 41
      it 'sets an error if it is blank' do
        setting.update(default_artifacts_expire_in: ' ')
42

43
        expect_invalid
44 45
      end

46 47 48 49 50 51 52
      it 'sets the value if it is valid' do
        setting.update(default_artifacts_expire_in: '30 days')

        expect(setting).to be_valid
        expect(setting.default_artifacts_expire_in).to eq('30 days')
      end

53 54
      it 'sets the value if it is 0' do
        setting.update(default_artifacts_expire_in: '0')
55 56

        expect(setting).to be_valid
57 58 59 60 61 62
        expect(setting.default_artifacts_expire_in).to eq('0')
      end

      def expect_invalid
        expect(setting).to be_invalid
        expect(setting.errors.messages)
63
          .to have_key(:default_artifacts_expire_in)
64 65 66
      end
    end

67 68 69 70 71 72 73
    it { is_expected.to validate_presence_of(:max_attachment_size) }

    it do
      is_expected.to validate_numericality_of(:max_attachment_size)
        .only_integer
        .is_greater_than(0)
    end
74 75 76 77

    it_behaves_like 'an object with email-formated attributes', :admin_notification_email do
      subject { setting }
    end
78

79 80
    # Upgraded databases will have this sort of content
    context 'repository_storages is a String, not an Array' do
81 82 83
      before do
        setting.__send__(:raw_write_attribute, :repository_storages, 'default')
      end
84 85 86 87 88 89

      it { expect(setting.repository_storages_before_type_cast).to eq('default') }
      it { expect(setting.repository_storages).to eq(['default']) }
    end

    context 'repository storages' do
90
      before do
91 92 93
        storages = {
          'custom1' => 'tmp/tests/custom_repositories_1',
          'custom2' => 'tmp/tests/custom_repositories_2',
94
          'custom3' => 'tmp/tests/custom_repositories_3'
95 96

        }
97 98 99
        allow(Gitlab.config.repositories).to receive(:storages).and_return(storages)
      end

100 101
      describe 'inclusion' do
        it { is_expected.to allow_value('custom1').for(:repository_storages) }
D
Douwe Maan 已提交
102
        it { is_expected.to allow_value(%w(custom2 custom3)).for(:repository_storages) }
103
        it { is_expected.not_to allow_value('alternative').for(:repository_storages) }
D
Douwe Maan 已提交
104
        it { is_expected.not_to allow_value(%w(alternative custom1)).for(:repository_storages) }
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
      end

      describe 'presence' do
        it { is_expected.not_to allow_value([]).for(:repository_storages) }
        it { is_expected.not_to allow_value("").for(:repository_storages) }
        it { is_expected.not_to allow_value(nil).for(:repository_storages) }
      end

      describe '.pick_repository_storage' do
        it 'uses Array#sample to pick a random storage' do
          array = double('array', sample: 'random')
          expect(setting).to receive(:repository_storages).and_return(array)

          expect(setting.pick_repository_storage).to eq('random')
        end

        describe '#repository_storage' do
          it 'returns the first storage' do
D
Douwe Maan 已提交
123
            setting.repository_storages = %w(good bad)
124 125 126 127 128 129 130 131 132 133 134 135 136

            expect(setting.repository_storage).to eq('good')
          end
        end

        describe '#repository_storage=' do
          it 'overwrites repository_storages' do
            setting.repository_storage = 'overwritten'

            expect(setting.repository_storages).to eq(['overwritten'])
          end
        end
      end
137
    end
J
Jacob Vosmaer 已提交
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154

    context 'housekeeping settings' do
      it { is_expected.not_to allow_value(0).for(:housekeeping_incremental_repack_period) }

      it 'wants the full repack period to be longer than the incremental repack period' do
        subject.housekeeping_incremental_repack_period = 2
        subject.housekeeping_full_repack_period = 1

        expect(subject).not_to be_valid
      end

      it 'wants the gc period to be longer than the full repack period' do
        subject.housekeeping_full_repack_period = 2
        subject.housekeeping_gc_period = 1

        expect(subject).not_to be_valid
      end
155 156 157 158 159 160 161 162 163 164 165 166
    end
  end

  describe '.current' do
    context 'redis unavailable' do
      it 'returns an ApplicationSetting' do
        allow(Rails.cache).to receive(:fetch).and_call_original
        allow(ApplicationSetting).to receive(:last).and_return(:last)
        expect(Rails.cache).to receive(:fetch).with(ApplicationSetting::CACHE_KEY).and_raise(ArgumentError)

        expect(ApplicationSetting.current).to eq(:last)
      end
J
Jacob Vosmaer 已提交
167
    end
R
Robert Speicher 已提交
168 169
  end

K
Kamil Trzcinski 已提交
170
  context 'restricted signup domains' do
171
    it 'sets single domain' do
172 173
      setting.domain_whitelist_raw = 'example.com'
      expect(setting.domain_whitelist).to eq(['example.com'])
174 175
    end

176
    it 'sets multiple domains with spaces' do
177 178
      setting.domain_whitelist_raw = 'example.com *.example.com'
      expect(setting.domain_whitelist).to eq(['example.com', '*.example.com'])
179 180
    end

181
    it 'sets multiple domains with newlines and a space' do
182 183
      setting.domain_whitelist_raw = "example.com\n *.example.com"
      expect(setting.domain_whitelist).to eq(['example.com', '*.example.com'])
184 185
    end

186
    it 'sets multiple domains with commas' do
187 188
      setting.domain_whitelist_raw = "example.com, *.example.com"
      expect(setting.domain_whitelist).to eq(['example.com', '*.example.com'])
189 190
    end
  end
191 192

  context 'blacklisted signup domains' do
193
    it 'sets single domain' do
194
      setting.domain_blacklist_raw = 'example.com'
195
      expect(setting.domain_blacklist).to contain_exactly('example.com')
196 197
    end

198
    it 'sets multiple domains with spaces' do
199
      setting.domain_blacklist_raw = 'example.com *.example.com'
200
      expect(setting.domain_blacklist).to contain_exactly('example.com', '*.example.com')
201 202
    end

203
    it 'sets multiple domains with newlines and a space' do
204
      setting.domain_blacklist_raw = "example.com\n *.example.com"
205
      expect(setting.domain_blacklist).to contain_exactly('example.com', '*.example.com')
206 207
    end

208
    it 'sets multiple domains with commas' do
209
      setting.domain_blacklist_raw = "example.com, *.example.com"
210
      expect(setting.domain_blacklist).to contain_exactly('example.com', '*.example.com')
211 212
    end

213
    it 'sets multiple domains with semicolon' do
214 215 216 217
      setting.domain_blacklist_raw = "example.com; *.example.com"
      expect(setting.domain_blacklist).to contain_exactly('example.com', '*.example.com')
    end

218
    it 'sets multiple domains with mixture of everything' do
219 220 221 222
      setting.domain_blacklist_raw = "example.com; *.example.com\n test.com\sblock.com   yes.com"
      expect(setting.domain_blacklist).to contain_exactly('example.com', '*.example.com', 'test.com', 'block.com', 'yes.com')
    end

223
    it 'sets multiple domain with file' do
224
      setting.domain_blacklist_file = File.open(Rails.root.join('spec/fixtures/', 'domain_blacklist.txt'))
225
      expect(setting.domain_blacklist).to contain_exactly('example.com', 'test.com', 'foo.bar')
226 227
    end
  end
228

229
  describe 'performance bar settings' do
230 231 232 233 234
    describe 'performance_bar_allowed_group_id=' do
      context 'with a blank path' do
        before do
          setting.performance_bar_allowed_group_id = create(:group).full_path
        end
235

236 237
        it 'persists nil for a "" path and clears allowed user IDs cache' do
          expect(Gitlab::PerformanceBar).to receive(:expire_allowed_user_ids_cache)
238

239 240 241 242 243 244 245 246 247
          setting.performance_bar_allowed_group_id = ''

          expect(setting.performance_bar_allowed_group_id).to be_nil
        end
      end

      context 'with an invalid path' do
        it 'does not persist an invalid group path' do
          setting.performance_bar_allowed_group_id = 'foo'
248

249 250
          expect(setting.performance_bar_allowed_group_id).to be_nil
        end
251 252 253 254 255 256 257 258 259 260 261 262 263 264
      end

      context 'with a path to an existing group' do
        let(:group) { create(:group) }

        it 'persists a valid group path and clears allowed user IDs cache' do
          expect(Gitlab::PerformanceBar).to receive(:expire_allowed_user_ids_cache)

          setting.performance_bar_allowed_group_id = group.full_path

          expect(setting.performance_bar_allowed_group_id).to eq(group.id)
        end

        context 'when the given path is the same' do
265 266 267 268 269 270 271 272 273 274
          context 'with a blank path' do
            before do
              setting.performance_bar_allowed_group_id = nil
            end

            it 'clears the cached allowed user IDs' do
              expect(Gitlab::PerformanceBar).not_to receive(:expire_allowed_user_ids_cache)

              setting.performance_bar_allowed_group_id = ''
            end
275 276
          end

277 278 279 280 281 282 283
          context 'with a valid path' do
            before do
              setting.performance_bar_allowed_group_id = group.full_path
            end

            it 'clears the cached allowed user IDs' do
              expect(Gitlab::PerformanceBar).not_to receive(:expire_allowed_user_ids_cache)
284

285 286
              setting.performance_bar_allowed_group_id = group.full_path
            end
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
          end
        end
      end
    end

    describe 'performance_bar_allowed_group' do
      context 'with no performance_bar_allowed_group_id saved' do
        it 'returns nil' do
          expect(setting.performance_bar_allowed_group).to be_nil
        end
      end

      context 'with a performance_bar_allowed_group_id saved' do
        let(:group) { create(:group) }

        before do
          setting.performance_bar_allowed_group_id = group.full_path
        end

        it 'returns the group' do
          expect(setting.performance_bar_allowed_group).to eq(group)
        end
      end
    end

312 313 314
    describe 'performance_bar_enabled' do
      context 'with the Performance Bar is enabled' do
        let(:group) { create(:group) }
315 316

        before do
317
          setting.performance_bar_allowed_group_id = group.full_path
318 319 320
        end

        it 'returns true' do
321
          expect(setting.performance_bar_enabled).to be_truthy
322 323 324 325 326 327
        end
      end
    end

    describe 'performance_bar_enabled=' do
      context 'when the performance bar is enabled' do
328 329
        let(:group) { create(:group) }

330
        before do
331
          setting.performance_bar_allowed_group_id = group.full_path
332 333 334 335 336
        end

        context 'when passing true' do
          it 'does not clear allowed user IDs cache' do
            expect(Gitlab::PerformanceBar).not_to receive(:expire_allowed_user_ids_cache)
337

338 339
            setting.performance_bar_enabled = true

340 341
            expect(setting.performance_bar_allowed_group_id).to eq(group.id)
            expect(setting.performance_bar_enabled).to be_truthy
342 343 344 345 346 347
          end
        end

        context 'when passing false' do
          it 'disables the performance bar and clears allowed user IDs cache' do
            expect(Gitlab::PerformanceBar).to receive(:expire_allowed_user_ids_cache)
348

349 350
            setting.performance_bar_enabled = false

351 352
            expect(setting.performance_bar_allowed_group_id).to be_nil
            expect(setting.performance_bar_enabled).to be_falsey
353 354 355 356 357 358
          end
        end
      end

      context 'when the performance bar is disabled' do
        context 'when passing true' do
359 360 361
          it 'does nothing and does not clear allowed user IDs cache' do
            expect(Gitlab::PerformanceBar).not_to receive(:expire_allowed_user_ids_cache)

362 363
            setting.performance_bar_enabled = true

364 365
            expect(setting.performance_bar_allowed_group_id).to be_nil
            expect(setting.performance_bar_enabled).to be_falsey
366 367 368 369
          end
        end

        context 'when passing false' do
370
          it 'does nothing and does not clear allowed user IDs cache' do
371
            expect(Gitlab::PerformanceBar).not_to receive(:expire_allowed_user_ids_cache)
372

373 374
            setting.performance_bar_enabled = false

375 376
            expect(setting.performance_bar_allowed_group_id).to be_nil
            expect(setting.performance_bar_enabled).to be_falsey
377 378 379 380 381 382
          end
        end
      end
    end
  end

383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
  describe 'usage ping settings' do
    context 'when the usage ping is disabled in gitlab.yml' do
      before do
        allow(Settings.gitlab).to receive(:usage_ping_enabled).and_return(false)
      end

      it 'does not allow the usage ping to be configured' do
        expect(setting.usage_ping_can_be_configured?).to be_falsey
      end

      context 'when the usage ping is disabled in the DB' do
        before do
          setting.usage_ping_enabled = false
        end

        it 'returns false for usage_ping_enabled' do
          expect(setting.usage_ping_enabled).to be_falsey
        end
      end

      context 'when the usage ping is enabled in the DB' do
        before do
          setting.usage_ping_enabled = true
        end

        it 'returns false for usage_ping_enabled' do
          expect(setting.usage_ping_enabled).to be_falsey
        end
      end
    end

    context 'when the usage ping is enabled in gitlab.yml' do
      before do
        allow(Settings.gitlab).to receive(:usage_ping_enabled).and_return(true)
      end

      it 'allows the usage ping to be configured' do
        expect(setting.usage_ping_can_be_configured?).to be_truthy
      end

      context 'when the usage ping is disabled in the DB' do
        before do
          setting.usage_ping_enabled = false
        end

        it 'returns false for usage_ping_enabled' do
          expect(setting.usage_ping_enabled).to be_falsey
        end
      end

      context 'when the usage ping is enabled in the DB' do
        before do
          setting.usage_ping_enabled = true
        end

        it 'returns true for usage_ping_enabled' do
          expect(setting.usage_ping_enabled).to be_truthy
        end
      end
    end
  end
444
end