Welcome to mirror list, hosted at ThFree Co, Russian Federation.

service_ping_settings_spec.rb « service_ping « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e61b35a13198af818064b4c372fa52d629bea42 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ServicePing::ServicePingSettings do
  using RSpec::Parameterized::TableSyntax

  describe '#enabled_and_consented?' do
    where(:usage_ping_enabled, :requires_usage_stats_consent, :expected_enabled_and_consented) do
      # Usage ping enabled
      true  | false | true
      true  | true  | false

      # Usage ping disabled
      false | false | false
      false | true  | false
    end

    with_them do
      before do
        allow(User).to receive(:single_user)
          .and_return(instance_double(User, :user, requires_usage_stats_consent?: requires_usage_stats_consent))
        stub_config_setting(usage_ping_enabled: usage_ping_enabled)
      end

      it 'has the correct enabled_and_consented?' do
        expect(described_class.enabled_and_consented?).to eq(expected_enabled_and_consented)
      end
    end
  end

  describe '#enabled?' do
    describe 'has the correct enabled' do
      it 'when false' do
        stub_config_setting(usage_ping_enabled: false)

        expect(described_class.enabled?).to eq(false)
      end

      it 'when true' do
        stub_config_setting(usage_ping_enabled: true)

        expect(described_class.enabled?).to eq(true)
      end
    end
  end
end