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

create_spec.rb « timeline_event « incident_management « mutations « graphql « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc3b666dd3d6f142b6bd6eea3237ad3d8e8e27da (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Creating an incident timeline event' do
  include GraphqlHelpers

  let_it_be(:user) { create(:user) }
  let_it_be(:project) { create(:project) }
  let_it_be(:incident) { create(:incident, project: project) }
  let_it_be(:event_occurred_at) { Time.current }
  let_it_be(:note) { 'demo note' }
  let_it_be(:tag1) { create(:incident_management_timeline_event_tag, project: project, name: 'Tag 1') }
  let_it_be(:tag2) { create(:incident_management_timeline_event_tag, project: project, name: 'Tag 2') }

  let(:input) do
    { incident_id: incident.to_global_id.to_s,
      note: note,
      occurred_at: event_occurred_at,
      timeline_event_tag_names: [tag1.name] }
  end

  let(:mutation) do
    graphql_mutation(:timeline_event_create, input) do
      <<~QL
        clientMutationId
        errors
        timelineEvent {
          id
          author { id username }
          incident { id title }
          note
          timelineEventTags { nodes { name } }
          editable
          action
          occurredAt
        }
      QL
    end
  end

  let(:mutation_response) { graphql_mutation_response(:timeline_event_create) }

  before do
    project.add_developer(user)
  end

  it 'creates incident timeline event', :aggregate_failures do
    post_graphql_mutation(mutation, current_user: user)

    timeline_event_response = mutation_response['timelineEvent']

    expect(response).to have_gitlab_http_status(:success)
    expect(timeline_event_response).to include(
      'author' => {
        'id' => user.to_global_id.to_s,
        'username' => user.username
      },
      'incident' => {
        'id' => incident.to_global_id.to_s,
        'title' => incident.title
      },
      'note' => note,
      'action' => 'comment',
      'editable' => true,
      'occurredAt' => event_occurred_at.iso8601
    )
  end

  context 'when note is more than 280 characters long' do
    let_it_be(:note) { 'n' * 281 }

    it_behaves_like 'timeline event mutation responds with validation error',
      error_message: 'Timeline text is too long (maximum is 280 characters)'
  end

  context 'when timeline event tags are passed' do
    it 'creates incident timeline event with tags', :aggregate_failures do
      post_graphql_mutation(mutation, current_user: user)

      timeline_event_response = mutation_response['timelineEvent']
      tag_names = timeline_event_response['timelineEventTags']['nodes']

      expect(response).to have_gitlab_http_status(:success)
      expect(timeline_event_response).to include(
        'timelineEventTags' => { 'nodes' => tag_names }
      )
    end
  end
end