debian-mirror-gitlab/spec/models/cycle_analytics/test_spec.rb

74 lines
2.5 KiB
Ruby
Raw Normal View History

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#test' 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(:issue) { create(:issue, project: project) }
let_it_be(:project_level) { CycleAnalytics::ProjectLevel.new(project, options: { from: from_date }) }
let!(:merge_request) { create_merge_request_closing_issue(user, project, issue) }
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: :test,
data_fn: lambda do |context|
2020-03-13 15:44:24 +05:30
issue = context.issue
2018-03-27 19:54:05 +05:30
merge_request = context.create_merge_request_closing_issue(context.user, context.project, issue)
2017-09-10 17:25:29 +05:30
pipeline = context.create(:ci_pipeline, ref: merge_request.source_branch, sha: merge_request.diff_head_sha, project: context.project, head_pipeline_of: merge_request)
2016-09-29 09:46:39 +05:30
{ pipeline: pipeline, issue: issue }
end,
start_time_conditions: [["pipeline is started", -> (context, data) { data[:pipeline].run! }]],
end_time_conditions: [["pipeline is finished", -> (context, data) { data[:pipeline].succeed! }]],
post_fn: -> (context, data) do
end)
context "when the pipeline is for a regular merge request (that doesn't close an issue)" do
it "returns nil" do
2017-08-17 22:00:37 +05:30
pipeline = create(:ci_pipeline, ref: "refs/heads/#{merge_request.source_branch}", sha: merge_request.diff_head_sha)
2016-09-29 09:46:39 +05:30
2017-08-17 22:00:37 +05:30
pipeline.run!
pipeline.succeed!
2016-09-29 09:46:39 +05:30
2019-10-12 21:52:04 +05:30
expect(subject[:test].project_median).to be_nil
2016-09-29 09:46:39 +05:30
end
end
context "when the pipeline is not for a merge request" do
it "returns nil" do
2017-08-17 22:00:37 +05:30
pipeline = create(:ci_pipeline, ref: "refs/heads/master", sha: project.repository.commit('master').sha)
2016-09-29 09:46:39 +05:30
2017-08-17 22:00:37 +05:30
pipeline.run!
pipeline.succeed!
2016-09-29 09:46:39 +05:30
2019-10-12 21:52:04 +05:30
expect(subject[:test].project_median).to be_nil
2016-09-29 09:46:39 +05:30
end
end
context "when the pipeline is dropped (failed)" do
it "returns nil" do
2017-08-17 22:00:37 +05:30
pipeline = create(:ci_pipeline, ref: "refs/heads/#{merge_request.source_branch}", sha: merge_request.diff_head_sha)
2016-09-29 09:46:39 +05:30
2017-08-17 22:00:37 +05:30
pipeline.run!
pipeline.drop!
2016-09-29 09:46:39 +05:30
2019-10-12 21:52:04 +05:30
expect(subject[:test].project_median).to be_nil
2016-09-29 09:46:39 +05:30
end
end
context "when the pipeline is cancelled" do
it "returns nil" do
2017-08-17 22:00:37 +05:30
pipeline = create(:ci_pipeline, ref: "refs/heads/#{merge_request.source_branch}", sha: merge_request.diff_head_sha)
2016-09-29 09:46:39 +05:30
2017-08-17 22:00:37 +05:30
pipeline.run!
pipeline.cancel!
2016-09-29 09:46:39 +05:30
2019-10-12 21:52:04 +05:30
expect(subject[:test].project_median).to be_nil
2016-09-29 09:46:39 +05:30
end
end
end