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

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

require 'spec_helper'

RSpec.describe ServicePing::PermitDataCategoriesService do
  describe '#execute', :without_license do
    subject(:permitted_categories) { described_class.new.execute }

    context 'when usage ping setting is set to true' do
      before do
        allow(User).to receive(:single_user).and_return(double(:user, requires_usage_stats_consent?: false))
        stub_config_setting(usage_ping_enabled: true)
      end

      it 'returns all categories' do
        expect(permitted_categories).to match_array(%w[standard subscription operational optional])
      end
    end

    context 'when usage ping setting is set to false' do
      before do
        allow(User).to receive(:single_user).and_return(double(:user, requires_usage_stats_consent?: false))
        stub_config_setting(usage_ping_enabled: false)
      end

      it 'returns no categories' do
        expect(permitted_categories).to match_array([])
      end
    end

    context 'when User.single_user&.requires_usage_stats_consent? is required' do
      before do
        allow(User).to receive(:single_user).and_return(double(:user, requires_usage_stats_consent?: true))
        stub_config_setting(usage_ping_enabled: true)
      end

      it 'returns no categories' do
        expect(permitted_categories).to match_array([])
      end
    end
  end
end