2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe 'CycleAnalytics#plan' do
|
2016-09-29 09:46:39 +05:30
|
|
|
extend CycleAnalyticsHelpers::TestGeneration
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
let_it_be(:project) { create(:project, :repository) }
|
|
|
|
let_it_be(:from_date) { 10.days.ago }
|
2020-05-24 23:13:21 +05:30
|
|
|
let_it_be(:user) { project.owner }
|
2020-03-13 15:44:24 +05:30
|
|
|
let_it_be(:project_level) { CycleAnalytics::ProjectLevel.new(project, options: { from: from_date }) }
|
2019-09-30 21:07:59 +05:30
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
subject { project_level }
|
2016-09-29 09:46:39 +05:30
|
|
|
|
|
|
|
generate_cycle_analytics_spec(
|
|
|
|
phase: :plan,
|
|
|
|
data_fn: -> (context) do
|
|
|
|
{
|
2020-03-13 15:44:24 +05:30
|
|
|
issue: context.build(:issue, project: context.project),
|
2017-08-17 22:00:37 +05:30
|
|
|
branch_name: context.generate(:branch)
|
2016-09-29 09:46:39 +05:30
|
|
|
}
|
|
|
|
end,
|
|
|
|
start_time_conditions: [["issue associated with a milestone",
|
|
|
|
-> (context, data) do
|
2020-11-24 15:15:51 +05:30
|
|
|
data[:issue].update!(milestone: context.create(:milestone, project: context.project))
|
2016-09-29 09:46:39 +05:30
|
|
|
end],
|
|
|
|
["list label added to issue",
|
|
|
|
-> (context, data) do
|
2020-11-24 15:15:51 +05:30
|
|
|
data[:issue].update!(label_ids: [context.create(:list).label_id])
|
2016-09-29 09:46:39 +05:30
|
|
|
end]],
|
|
|
|
end_time_conditions: [["issue mentioned in a commit",
|
|
|
|
-> (context, data) do
|
|
|
|
context.create_commit_referencing_issue(data[:issue], branch_name: data[:branch_name])
|
|
|
|
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
|
2017-08-17 22:00:37 +05:30
|
|
|
branch_name = generate(:branch)
|
2016-09-29 09:46:39 +05:30
|
|
|
label = create(:label)
|
|
|
|
issue = create(:issue, project: project)
|
2020-11-24 15:15:51 +05:30
|
|
|
issue.update!(label_ids: [label.id])
|
2016-09-29 09:46:39 +05:30
|
|
|
create_commit_referencing_issue(issue, branch_name: branch_name)
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
create_merge_request_closing_issue(user, project, issue, source_branch: branch_name)
|
|
|
|
merge_merge_requests_closing_issue(user, project, issue)
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
expect(subject[:issue].project_median).to be_nil
|
2016-09-29 09:46:39 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|