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

create_spec.rb « timeline_event « incident_management « mutations « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aab21776a99fd12280e1705d9bb81f7ab19bd961 (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Mutations::IncidentManagement::TimelineEvent::Create do
  let_it_be(:current_user) { create(:user) }
  let_it_be(:project) { create(:project) }
  let_it_be(:incident) { create(:incident, project: project) }
  let_it_be(:timeline_event_tag) do
    create(:incident_management_timeline_event_tag, project: project, name: 'Test tag 1')
  end

  let(:args) { { note: 'note', occurred_at: Time.current } }

  specify { expect(described_class).to require_graphql_authorizations(:admin_incident_management_timeline_event) }

  describe '#resolve' do
    subject(:resolve) { mutation_for(project, current_user).resolve(incident_id: incident.to_global_id, **args) }

    context 'when a user has permissions to create a timeline event' do
      let(:expected_timeline_event) do
        instance_double(
          'IncidentManagement::TimelineEvent',
          note: args[:note],
          occurred_at: args[:occurred_at].to_s,
          incident: incident,
          author: current_user,
          promoted_from_note: nil,
          editable: true
        )
      end

      before do
        project.add_developer(current_user)
      end

      it_behaves_like 'creating an incident timeline event'

      context 'when TimelineEvents::CreateService responds with an error' do
        let(:args) { {} }

        it_behaves_like 'responding with an incident timeline errors',
          errors: ["Occurred at can't be blank and Timeline text can't be blank"]
      end

      context 'when timeline event tags are passed' do
        let(:args) do
          {
            note: 'note',
            occurred_at: Time.current,
            timeline_event_tag_names: [timeline_event_tag.name.to_s]
          }
        end

        it_behaves_like 'creating an incident timeline event'
      end

      context 'when predefined tags are passed' do
        let(:args) do
          {
            note: 'note',
            occurred_at: Time.current,
            timeline_event_tag_names: ['Start time']
          }
        end

        it_behaves_like 'creating an incident timeline event'

        it 'creates and sets the tag on the event' do
          timeline_event = resolve[:timeline_event]

          expect(timeline_event.timeline_event_tags.by_names(['Start time']).count).to eq 1
        end
      end

      context 'when predefined tags exist' do
        let_it_be(:end_time_tag) do
          create(:incident_management_timeline_event_tag, project: project, name: 'End time')
        end

        let(:args) do
          {
            note: 'note',
            occurred_at: Time.current,
            timeline_event_tag_names: ['End time']
          }
        end

        it 'does not create a new tag' do
          expect { resolve }.not_to change(IncidentManagement::TimelineEventTag, :count)
        end
      end

      context 'when same tags are tried to be assigned to same timeline event' do
        let(:args) do
          {
            note: 'note',
            occurred_at: Time.current,
            timeline_event_tag_names: ['Start time', 'Start time']
          }
        end

        it 'only assigns the tag once on the event' do
          timeline_event = resolve[:timeline_event]

          expect(timeline_event.timeline_event_tags.by_names(['Start time']).count).to eq(1)
          expect(timeline_event.timeline_event_tags.count).to eq(1)
        end
      end

      context 'with case-insentive tags' do
        let(:args) do
          {
            note: 'note',
            occurred_at: Time.current,
            timeline_event_tag_names: ['tESt tAg 1']
          }
        end

        it 'sets the tag on the event' do
          timeline_event = resolve[:timeline_event]

          expect(timeline_event.timeline_event_tags.by_names(['Test tag 1']).count).to eq(1)
        end
      end

      context 'when non-existing tags are passed' do
        let(:args) do
          {
            note: 'note',
            occurred_at: Time.current,
            timeline_event_tag_names: ['other time']
          }
        end

        it_behaves_like 'responding with an incident timeline errors',
          errors: ["Following tags don't exist: [\"other time\"]"]

        it 'does not create the timeline event' do
          expect { resolve }.not_to change(IncidentManagement::TimelineEvent, :count)
        end
      end
    end

    it_behaves_like 'failing to create an incident timeline event'
  end

  private

  def mutation_for(project, user)
    described_class.new(object: project, context: { current_user: user }, field: nil)
  end
end