BigW Consortium Gitlab

plan_spec.rb 2 KB
Newer Older
1 2 3
require 'spec_helper'

describe 'CycleAnalytics#plan', feature: true do
4 5
  extend CycleAnalyticsHelpers::TestGeneration

6
  let(:project) { create(:project, :repository) }
7 8
  let(:from_date) { 10.days.ago }
  let(:user) { create(:user, :admin) }
9
  subject { CycleAnalytics.new(project, from: from_date) }
10

11 12 13 14 15
  generate_cycle_analytics_spec(
    phase: :plan,
    data_fn: -> (context) do
      {
        issue: context.create(:issue, project: context.project),
16
        branch_name: context.generate(:branch)
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
      }
    end,
    start_time_conditions: [["issue associated with a milestone",
                             -> (context, data) do
                               data[:issue].update(milestone: context.create(:milestone, project: context.project))
                             end],
                            ["list label added to issue",
                             -> (context, data) do
                               data[:issue].update(label_ids: [context.create(:label, lists: [context.create(:list)]).id])
                             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
      context.create_merge_request_closing_issue(data[:issue], source_branch: data[:branch_name])
      context.merge_merge_requests_closing_issue(data[:issue])
    end)
35

36 37
  context "when a regular label (instead of a list label) is added to the issue" do
    it "returns nil" do
38
      branch_name = generate(:branch)
39 40 41
      label = create(:label)
      issue = create(:issue, project: project)
      issue.update(label_ids: [label.id])
42 43 44 45
      create_commit_referencing_issue(issue, branch_name: branch_name)

      create_merge_request_closing_issue(issue, source_branch: branch_name)
      merge_merge_requests_closing_issue(issue)
46

47
      expect(subject[:issue].median).to be_nil
48 49 50
    end
  end
end