2020-11-24 15:15:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe IssueLinks::DestroyService do
|
|
|
|
describe '#execute' do
|
2022-05-07 20:08:51 +05:30
|
|
|
let_it_be(:project) { create(:project_empty_repo, :private) }
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:issue_a) { create(:issue, project: project) }
|
|
|
|
let_it_be(:issue_b) { create(:issue, project: project) }
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
let!(:issuable_link) { create(:issue_link, source: issue_a, target: issue_b) }
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
subject { described_class.new(issuable_link, user).execute }
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
it_behaves_like 'a destroyable issuable link'
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
context 'when target is an incident' do
|
2020-11-24 15:15:51 +05:30
|
|
|
before do
|
|
|
|
project.add_reporter(user)
|
|
|
|
end
|
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
let(:issue_b) { create(:incident, project: project) }
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2022-05-07 20:08:51 +05:30
|
|
|
it_behaves_like 'an incident management tracked event', :incident_management_incident_unrelate do
|
|
|
|
let(:current_user) { user }
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
2023-03-04 22:38:38 +05:30
|
|
|
|
|
|
|
it_behaves_like 'Snowplow event tracking with RedisHLL context' do
|
|
|
|
let(:feature_flag_name) { :route_hll_to_snowplow_phase2 }
|
|
|
|
let(:namespace) { issue_b.namespace }
|
|
|
|
let(:category) { described_class.to_s }
|
|
|
|
let(:action) { 'incident_management_incident_unrelate' }
|
|
|
|
let(:label) { 'redis_hll_counters.incident_management.incident_management_total_unique_counts_monthly' }
|
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|