summaryrefslogtreecommitdiff
path: root/spec/models/cycle_analytics/plan_spec.rb
blob: aa779e5050fd3e13cf6e5fe0542e9c217baf7ba0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
require 'spec_helper'

describe 'CycleAnalytics#plan', feature: true do
  let(:project) { create(:project) }
  let(:from_date) { 10.days.ago }
  let(:user) { create(:user, :admin) }
  subject { CycleAnalytics.new(project, from: from_date) }

  generate_cycle_analytics_spec(phase: :plan,
                                data_fn: -> (context) { { issue: context.create(:issue, project: context.project),
                                                          branch_name: context.random_git_name } },
                                start_time_conditions: [["issue associated with a milestone", -> (context, data) { data[:issue].update(milestone: context.create(:milestone, project: context.project)) }],
                                                        ["list label added to issue", -> (context, data) { data[:issue].update(label_ids: [context.create(:label, lists: [context.create(:list)]).id]) }]],
                                end_time_conditions:   [["issue mentioned in a commit", -> (context, data) { context.create_commit_referencing_issue(data[:issue], branch_name: data[:branch_name]) }]],
                                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])
                                  context.deploy_master
                                end)

  context "when a regular label (instead of a list label) is added to the issue" do
    it "returns nil" do
      branch_name = random_git_name
      label = create(:label)
      issue = create(:issue, project: project)
      issue.update(label_ids: [label.id])
      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)
      deploy_master

      expect(subject.issue).to be_nil
    end
  end
end