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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services/users/saved_replies/update_service_spec.rb')
-rw-r--r--spec/services/users/saved_replies/update_service_spec.rb40
1 files changed, 40 insertions, 0 deletions
diff --git a/spec/services/users/saved_replies/update_service_spec.rb b/spec/services/users/saved_replies/update_service_spec.rb
new file mode 100644
index 00000000000..b67d09977c6
--- /dev/null
+++ b/spec/services/users/saved_replies/update_service_spec.rb
@@ -0,0 +1,40 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe Users::SavedReplies::UpdateService do
+ describe '#execute' do
+ let_it_be(:current_user) { create(:user) }
+ let_it_be(:saved_reply) { create(:saved_reply, user: current_user) }
+ let_it_be(:other_saved_reply) { create(:saved_reply, user: current_user) }
+ let_it_be(:saved_reply_from_other_user) { create(:saved_reply) }
+
+ subject { described_class.new(current_user: current_user, saved_reply: saved_reply, name: name, content: content).execute }
+
+ context 'when update fails' do
+ let(:name) { other_saved_reply.name }
+ let(:content) { '' }
+
+ it { is_expected.not_to be_success }
+
+ it 'returns error messages' do
+ expect(subject.errors).to match_array(["Content can't be blank", "Name has already been taken"])
+ end
+ end
+
+ context 'when update succeeds' do
+ let(:name) { saved_reply_from_other_user.name }
+ let(:content) { 'New content for Saved Reply' }
+
+ it { is_expected.to be_success }
+
+ it 'updates new Saved Reply in database' do
+ expect { subject }.not_to change(::Users::SavedReply, :count)
+ end
+
+ it 'returns saved reply' do
+ expect(subject[:saved_reply]).to eq(saved_reply)
+ end
+ end
+ end
+end