debian-mirror-gitlab/spec/support/services/issuable_update_service_shared_examples.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
1.9 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2020-03-13 15:44:24 +05:30
RSpec.shared_examples 'issuable update service' do
2017-08-17 22:00:37 +05:30
def update_issuable(opts)
described_class.new(project, user, opts).execute(open_issuable)
end
context 'changing state' do
2017-09-10 17:25:29 +05:30
before do
expect(project).to receive(:execute_hooks).once
end
2017-08-17 22:00:37 +05:30
context 'to reopened' do
it 'executes hooks only once' do
2021-06-08 01:23:25 +05:30
described_class.new(project: project, current_user: user, params: { state_event: 'reopen' }).execute(closed_issuable)
2017-08-17 22:00:37 +05:30
end
end
context 'to closed' do
it 'executes hooks only once' do
2021-06-08 01:23:25 +05:30
described_class.new(project: project, current_user: user, params: { state_event: 'close' }).execute(open_issuable)
2017-08-17 22:00:37 +05:30
end
end
end
end
2022-06-21 17:19:12 +05:30
RSpec.shared_examples 'keeps issuable labels sorted after update' do
before do
update_issuable(label_ids: [label_b.id])
end
context 'when label is changed' do
it 'keeps the labels sorted by title ASC' do
update_issuable({ add_label_ids: [label_a.id] })
expect(issuable.labels).to eq([label_a, label_b])
end
end
end
RSpec.shared_examples 'broadcasting issuable labels updates' do
before do
update_issuable(label_ids: [label_a.id])
end
context 'when label is added' do
it 'triggers the GraphQL subscription' do
expect(GraphqlTriggers).to receive(:issuable_labels_updated).with(issuable)
update_issuable({ add_label_ids: [label_b.id] })
end
end
context 'when label is removed' do
it 'triggers the GraphQL subscription' do
expect(GraphqlTriggers).to receive(:issuable_labels_updated).with(issuable)
update_issuable({ remove_label_ids: [label_a.id] })
end
end
context 'when label is unchanged' do
it 'does not trigger the GraphQL subscription' do
expect(GraphqlTriggers).not_to receive(:issuable_labels_updated).with(issuable)
update_issuable({ label_ids: [label_a.id] })
end
end
end