summaryrefslogtreecommitdiff
path: root/spec/requests/api/graphql/mutations/alert_management/alerts/todo/create_spec.rb
blob: e5803f504746ef1a09d5116b99b96826799d9ca6 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Creating a todo for the alert' do
  include GraphqlHelpers

  let_it_be(:user) { create(:user) }
  let_it_be(:project) { create(:project) }
  let(:alert) { create(:alert_management_alert, project: project) }

  let(:mutation) do
    variables = {
      project_path: project.full_path,
      iid: alert.iid.to_s
    }
    graphql_mutation(:alert_todo_create, variables) do
      <<~QL
         clientMutationId
         errors
         todo {
           author {
             username
           }
         }
      QL
    end
  end

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

  before do
    project.add_developer(user)
  end

  it 'creates a todo for the current user' do
    post_graphql_mutation(mutation, current_user: user)

    expect(response).to have_gitlab_http_status(:success)
    expect(mutation_response['todo']['author']['username']).to eq(user.username)
  end

  context 'todo already exists' do
    before do
      create(:todo, :pending, project: project, user: user, target: alert)
    end

    it 'surfaces an error' do
      post_graphql_mutation(mutation, current_user: user)

      expect(response).to have_gitlab_http_status(:success)
      expect(mutation_response['errors']).to eq(['You already have pending todo for this alert'])
    end
  end
end