summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/controllers/namespace_storage_limit_alert_shared_examples.rb
blob: 7885eb6c1f89bfe828abdb4fb7b7b567f007bcda (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
# frozen_string_literal: true

RSpec.shared_examples 'namespace storage limit alert' do
  let(:alert_level) { :info }

  before do
    allow_next_instance_of(Namespaces::CheckStorageSizeService, namespace, user) do |check_storage_size_service|
      expect(check_storage_size_service).to receive(:execute).and_return(
        ServiceResponse.success(
          payload: {
            alert_level: alert_level,
            usage_message: "Usage",
            explanation_message: "Explanation",
            root_namespace: namespace
          }
        )
      )
    end

    allow(controller).to receive(:current_user).and_return(user)
  end

  render_views

  it 'does render' do
    subject

    expect(response.body).to match(/Explanation/)
    expect(response.body).to have_css('.js-namespace-storage-alert-dismiss')
  end

  context 'when alert_level is error' do
    let(:alert_level) { :error }

    it 'does not render a dismiss button' do
      subject

      expect(response.body).not_to have_css('.js-namespace-storage-alert-dismiss')
    end
  end

  context 'when cookie is set' do
    before do
      cookies["hide_storage_limit_alert_#{namespace.id}_info"] = 'true'
    end

    it 'does not render alert' do
      subject

      expect(response.body).not_to match(/Explanation/)
    end
  end
end