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/milestones/update_service_spec.rb')
-rw-r--r--spec/services/milestones/update_service_spec.rb90
1 files changed, 68 insertions, 22 deletions
diff --git a/spec/services/milestones/update_service_spec.rb b/spec/services/milestones/update_service_spec.rb
index 76110af2514..44de49960d4 100644
--- a/spec/services/milestones/update_service_spec.rb
+++ b/spec/services/milestones/update_service_spec.rb
@@ -2,40 +2,86 @@
require 'spec_helper'
RSpec.describe Milestones::UpdateService, feature_category: :team_planning do
- let(:project) { create(:project) }
- let(:user) { build(:user) }
- let(:milestone) { create(:milestone, project: project) }
+ let_it_be(:user) { create(:user) }
+ let_it_be(:project) { create(:project) }
+ let_it_be(:milestone) { create(:milestone, project: project) }
+ let_it_be(:params) { { title: 'New Title' } }
+
+ subject(:update_milestone) { described_class.new(project, user, params) }
describe '#execute' do
- context "valid params" do
- let(:inner_service) { double(:service) }
+ context 'when state_event is "activate"' do
+ let(:params) { { state_event: 'activate' } }
- before do
- project.add_maintainer(user)
+ it 'calls Milestones::ReopenService' do
+ reopen_service = instance_double(Milestones::ReopenService)
+ expect(Milestones::ReopenService).to receive(:new).with(project, user, {}).and_return(reopen_service)
+ expect(reopen_service).to receive(:execute).with(milestone)
+
+ update_milestone.execute(milestone)
end
+ end
- subject { described_class.new(project, user, { title: 'new_title' }).execute(milestone) }
+ context 'when state_event is "close"' do
+ let(:params) { { state_event: 'close' } }
+
+ it 'calls Milestones::CloseService' do
+ close_service = instance_double(Milestones::CloseService)
+ expect(Milestones::CloseService).to receive(:new).with(project, user, {}).and_return(close_service)
+ expect(close_service).to receive(:execute).with(milestone)
+
+ update_milestone.execute(milestone)
+ end
+ end
- it { expect(subject).to be_valid }
- it { expect(subject.title).to eq('new_title') }
+ context 'when params are present' do
+ it 'assigns the params to the milestone' do
+ expect(milestone).to receive(:assign_attributes).with(params.except(:state_event))
- context 'state_event is activate' do
- it 'calls ReopenService' do
- expect(Milestones::ReopenService).to receive(:new).with(project, user, {}).and_return(inner_service)
- expect(inner_service).to receive(:execute).with(milestone)
+ update_milestone.execute(milestone)
+ end
+ end
- described_class.new(project, user, { state_event: 'activate' }).execute(milestone)
- end
+ context 'when milestone is changed' do
+ before do
+ allow(milestone).to receive(:changed?).and_return(true)
end
- context 'state_event is close' do
- it 'calls ReopenService' do
- expect(Milestones::CloseService).to receive(:new).with(project, user, {}).and_return(inner_service)
- expect(inner_service).to receive(:execute).with(milestone)
+ it 'calls before_update' do
+ expect(update_milestone).to receive(:before_update).with(milestone)
- described_class.new(project, user, { state_event: 'close' }).execute(milestone)
- end
+ update_milestone.execute(milestone)
end
end
+
+ context 'when milestone is not changed' do
+ before do
+ allow(milestone).to receive(:changed?).and_return(false)
+ end
+
+ it 'does not call before_update' do
+ expect(update_milestone).not_to receive(:before_update)
+
+ update_milestone.execute(milestone)
+ end
+ end
+
+ it 'saves the milestone' do
+ expect(milestone).to receive(:save)
+
+ update_milestone.execute(milestone)
+ end
+
+ it 'returns the milestone' do
+ expect(update_milestone.execute(milestone)).to eq(milestone)
+ end
+ end
+
+ describe '#before_update' do
+ it 'checks for spam' do
+ expect(milestone).to receive(:check_for_spam).with(user: user, action: :update)
+
+ update_milestone.send(:before_update, milestone)
+ end
end
end