2019-03-30 03:23:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-07 01:05:01 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 14:09:03 -04:00
|
|
|
RSpec.describe 'CycleAnalytics#code' do
|
2016-09-20 15:17:37 -04:00
|
|
|
extend CycleAnalyticsHelpers::TestGeneration
|
|
|
|
|
2020-01-08 16:08:08 -05:00
|
|
|
let_it_be(:project) { create(:project, :repository) }
|
|
|
|
let_it_be(:from_date) { 10.days.ago }
|
2020-05-15 11:08:04 -04:00
|
|
|
let_it_be(:user) { project.owner }
|
2020-01-08 16:08:08 -05:00
|
|
|
let_it_be(:project_level) { CycleAnalytics::ProjectLevel.new(project, options: { from: from_date }) }
|
2019-07-10 07:42:54 -04:00
|
|
|
|
2020-01-08 16:08:08 -05:00
|
|
|
subject { project_level }
|
2016-09-07 01:05:01 -04:00
|
|
|
|
2016-10-11 06:58:56 -04:00
|
|
|
context 'with deployment' do
|
|
|
|
generate_cycle_analytics_spec(
|
|
|
|
phase: :code,
|
|
|
|
data_fn: -> (context) { { issue: context.create(:issue, project: context.project) } },
|
|
|
|
start_time_conditions: [["issue mentioned in a commit",
|
|
|
|
-> (context, data) do
|
|
|
|
context.create_commit_referencing_issue(data[:issue])
|
|
|
|
end]],
|
2016-11-22 08:29:25 -05:00
|
|
|
end_time_conditions: [["merge request that closes issue is created",
|
|
|
|
-> (context, data) do
|
2018-02-21 07:13:56 -05:00
|
|
|
context.create_merge_request_closing_issue(context.user, context.project, data[:issue])
|
2016-11-22 08:29:25 -05:00
|
|
|
end]],
|
2016-10-11 06:58:56 -04:00
|
|
|
post_fn: -> (context, data) do
|
|
|
|
end)
|
|
|
|
|
|
|
|
context "when a regular merge request (that doesn't close the issue) is created" do
|
|
|
|
it "returns nil" do
|
2017-01-29 17:53:48 -05:00
|
|
|
issue = create(:issue, project: project)
|
2016-10-11 06:58:56 -04:00
|
|
|
|
2017-01-29 17:53:48 -05:00
|
|
|
create_commit_referencing_issue(issue)
|
2018-02-21 07:13:56 -05:00
|
|
|
create_merge_request_closing_issue(user, project, issue, message: "Closes nothing")
|
2016-10-11 06:58:56 -04:00
|
|
|
|
2018-02-21 07:13:56 -05:00
|
|
|
merge_merge_requests_closing_issue(user, project, issue)
|
|
|
|
deploy_master(user, project)
|
2016-10-11 06:58:56 -04:00
|
|
|
|
2019-07-04 10:42:31 -04:00
|
|
|
expect(subject[:code].project_median).to be_nil
|
2016-09-07 01:05:01 -04:00
|
|
|
end
|
2016-10-11 06:58:56 -04:00
|
|
|
end
|
|
|
|
end
|
2016-09-07 01:05:01 -04:00
|
|
|
|
2016-10-11 06:58:56 -04:00
|
|
|
context 'without deployment' do
|
|
|
|
generate_cycle_analytics_spec(
|
|
|
|
phase: :code,
|
|
|
|
data_fn: -> (context) { { issue: context.create(:issue, project: context.project) } },
|
|
|
|
start_time_conditions: [["issue mentioned in a commit",
|
|
|
|
-> (context, data) do
|
|
|
|
context.create_commit_referencing_issue(data[:issue])
|
|
|
|
end]],
|
2016-11-22 08:29:25 -05:00
|
|
|
end_time_conditions: [["merge request that closes issue is created",
|
|
|
|
-> (context, data) do
|
2018-02-21 07:13:56 -05:00
|
|
|
context.create_merge_request_closing_issue(context.user, context.project, data[:issue])
|
2016-11-22 08:29:25 -05:00
|
|
|
end]],
|
2016-10-11 06:58:56 -04:00
|
|
|
post_fn: -> (context, data) do
|
|
|
|
end)
|
|
|
|
|
|
|
|
context "when a regular merge request (that doesn't close the issue) is created" do
|
|
|
|
it "returns nil" do
|
2017-01-29 17:53:48 -05:00
|
|
|
issue = create(:issue, project: project)
|
2016-10-11 06:58:56 -04:00
|
|
|
|
2017-01-29 17:53:48 -05:00
|
|
|
create_commit_referencing_issue(issue)
|
2018-02-21 07:13:56 -05:00
|
|
|
create_merge_request_closing_issue(user, project, issue, message: "Closes nothing")
|
2016-10-11 06:58:56 -04:00
|
|
|
|
2018-02-21 07:13:56 -05:00
|
|
|
merge_merge_requests_closing_issue(user, project, issue)
|
2016-10-11 06:58:56 -04:00
|
|
|
|
2019-07-04 10:42:31 -04:00
|
|
|
expect(subject[:code].project_median).to be_nil
|
2016-10-11 06:58:56 -04:00
|
|
|
end
|
2016-09-07 01:05:01 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|