summaryrefslogtreecommitdiff
path: root/spec/helpers/projects/incidents_helper_spec.rb
blob: d0dc18d56b07ec256680b894802a287fe3d61a43 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::IncidentsHelper do
  include Gitlab::Routing.url_helpers

  let(:user) { build_stubbed(:user) }
  let(:project) { build_stubbed(:project) }
  let(:project_path) { project.full_path }
  let(:new_issue_path) { new_project_issue_path(project) }
  let(:issue_path) { project_issues_path(project) }
  let(:params) do
    {
      search: 'search text',
      author_username: 'root',
      assignee_username: 'max.power'
    }
  end

  before do
    allow(helper).to receive(:current_user).and_return(user)
    allow(helper).to receive(:can?)
      .with(user, :create_incident, project)
      .and_return(can_create_incident)
  end

  describe '#incidents_data' do
    subject(:data) { helper.incidents_data(project, params) }

    shared_examples 'frontend configuration' do
      it 'returns frontend configuration' do
        expect(data).to include(
          'project-path' => project_path,
          'new-issue-path' => new_issue_path,
          'incident-template-name' => 'incident',
          'incident-type' => 'incident',
          'issue-path' => issue_path,
          'empty-list-svg-path' => match_asset_path('/assets/illustrations/incident-empty-state.svg'),
          'text-query': 'search text',
          'author-username-query': 'root',
          'assignee-username-query': 'max.power',
          'can-create-incident': can_create_incident.to_s
        )
      end
    end

    context 'when user can create incidents' do
      let(:can_create_incident) { true }

      include_examples 'frontend configuration'
    end

    context 'when user cannot create incidents' do
      let(:can_create_incident) { false }

      include_examples 'frontend configuration'
    end
  end
end