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

update_spec.rb « saved_replies « mutations « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc358d946a5f4893b501f704ae0a3c5a149848ea (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Mutations::SavedReplies::Update do
  let_it_be(:current_user) { create(:user) }
  let_it_be(:saved_reply) { create(:saved_reply, user: current_user) }

  let(:mutation) { described_class.new(object: nil, context: { current_user: current_user }, field: nil) }

  let(:mutation_arguments) { { name: 'save_reply_name', content: 'Save Reply Content' } }

  describe '#resolve' do
    subject(:resolve) do
      mutation.resolve(id: saved_reply.to_global_id, **mutation_arguments)
    end

    context 'when service fails to update a new saved reply' do
      let(:mutation_arguments) { { name: '', content: '' } }

      it { expect(subject[:saved_reply]).to be_nil }
      it { expect(subject[:errors]).to match_array(["Content can't be blank", "Name can't be blank"]) }
    end

    context 'when service successfully updates the saved reply' do
      it { expect(subject[:saved_reply].name).to eq(mutation_arguments[:name]) }
      it { expect(subject[:saved_reply].content).to eq(mutation_arguments[:content]) }
      it { expect(subject[:errors]).to be_empty }
    end
  end
end