summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/models/project_shared_examples.rb
blob: 0b880f00a22dec661cd96dfc1d701e5a28e9e603 (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
52
53
54
55
56
57
58
59
60
61
62
# frozen_string_literal: true

RSpec.shared_examples 'returns true if project is inactive' do
  using RSpec::Parameterized::TableSyntax

  where(:storage_size, :last_activity_at, :expected_result) do
    1.megabyte  | 1.month.ago | false
    1.megabyte  | 3.years.ago | false
    8.megabytes | 1.month.ago | false
    8.megabytes | 3.years.ago | true
  end

  with_them do
    before do
      stub_application_setting(inactive_projects_min_size_mb: 5)
      stub_application_setting(inactive_projects_send_warning_email_after_months: 24)

      project.statistics.storage_size = storage_size
      project.last_activity_at = last_activity_at
      project.save!
    end

    it 'returns expected result' do
      expect(project.inactive?).to eq(expected_result)
    end
  end
end

RSpec.shared_examples 'checks parent group feature flag' do
  let(:group) { subject_project.group }
  let(:root_group) { group.parent }

  subject { subject_project.public_send(feature_flag_method) }

  context 'when feature flag is disabled globally' do
    before do
      stub_feature_flags(feature_flag => false)
    end

    it { is_expected.to be_falsey }
  end

  context 'when feature flag is enabled globally' do
    it { is_expected.to be_truthy }
  end

  context 'when feature flag is enabled for the root group' do
    before do
      stub_feature_flags(feature_flag => root_group)
    end

    it { is_expected.to be_truthy }
  end

  context 'when feature flag is enabled for the group' do
    before do
      stub_feature_flags(feature_flag => group)
    end

    it { is_expected.to be_truthy }
  end
end