46 lines
1.8 KiB
Ruby
46 lines
1.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe 'CycleAnalytics#issue' do
|
|
extend CycleAnalyticsHelpers::TestGeneration
|
|
|
|
let_it_be(:project) { create(:project, :repository) }
|
|
let_it_be(:from_date) { 10.days.ago }
|
|
let_it_be(:user) { project.owner }
|
|
let_it_be(:project_level) { CycleAnalytics::ProjectLevel.new(project, options: { from: from_date }) }
|
|
|
|
subject { project_level }
|
|
|
|
generate_cycle_analytics_spec(
|
|
phase: :issue,
|
|
data_fn: -> (context) { { issue: context.build(:issue, project: context.project) } },
|
|
start_time_conditions: [["issue created", -> (context, data) { data[:issue].save! }]],
|
|
end_time_conditions: [["issue associated with a milestone",
|
|
-> (context, data) do
|
|
if data[:issue].persisted?
|
|
data[:issue].update!(milestone: context.create(:milestone, project: context.project))
|
|
end
|
|
end],
|
|
["list label added to issue",
|
|
-> (context, data) do
|
|
if data[:issue].persisted?
|
|
data[:issue].update!(label_ids: [context.create(:list).label_id])
|
|
end
|
|
end]],
|
|
post_fn: -> (context, data) do
|
|
end)
|
|
|
|
context "when a regular label (instead of a list label) is added to the issue" do
|
|
it "returns nil" do
|
|
regular_label = create(:label)
|
|
issue = create(:issue, project: project)
|
|
issue.update!(label_ids: [regular_label.id])
|
|
|
|
create_merge_request_closing_issue(user, project, issue)
|
|
merge_merge_requests_closing_issue(user, project, issue)
|
|
|
|
expect(subject[:issue].project_median).to be_nil
|
|
end
|
|
end
|
|
end
|