summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/cycle_analytics/events_spec.rb
blob: a31f34d82d78c2a9c0142d46c0f549495c065635 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'cycle analytics events', :aggregate_failures do
  let_it_be(:project) { create(:project, :repository) }
  let_it_be(:user) { create(:user, :admin) }
  let(:from_date) { 10.days.ago }
  let!(:context) { create(:issue, project: project, created_at: 2.days.ago) }

  let(:events) do
    CycleAnalytics::ProjectLevel
      .new(project, options: { from: from_date, current_user: user })[stage]
      .events
  end

  let(:event) { events.first }

  before do
    setup(context)
  end

  describe '#issue_events' do
    let(:stage) { :issue }

    it 'has correct attributes' do
      expect(event[:total_time]).not_to be_empty
      expect(event[:title]).to eq(context.title)
      expect(event[:url]).not_to be_nil
      expect(event[:iid]).to eq(context.iid.to_s)
      expect(event[:created_at]).to end_with('ago')
      expect(event[:author][:web_url]).not_to be_nil
      expect(event[:author][:avatar_url]).not_to be_nil
      expect(event[:author][:name]).to eq(context.author.name)
    end
  end

  describe '#plan_events' do
    let(:stage) { :plan }

    before do
      create_commit_referencing_issue(context)
    end

    it 'has correct attributes' do
      expect(event[:total_time]).not_to be_empty
      expect(event[:title]).to eq(context.title)
      expect(event[:url]).not_to be_nil
      expect(event[:iid]).to eq(context.iid.to_s)
      expect(event[:created_at]).to end_with('ago')
      expect(event[:author][:web_url]).not_to be_nil
      expect(event[:author][:avatar_url]).not_to be_nil
      expect(event[:author][:name]).to eq(context.author.name)
    end
  end

  describe '#code_events' do
    let(:stage) { :code }
    let!(:merge_request) { MergeRequest.first }

    before do
      create_commit_referencing_issue(context)
    end

    it 'has correct attributes' do
      expect(event[:total_time]).not_to be_empty
      expect(event[:title]).to eq('Awesome merge_request')
      expect(event[:iid]).to eq(context.iid.to_s)
      expect(event[:created_at]).to end_with('ago')
      expect(event[:author][:web_url]).not_to be_nil
      expect(event[:author][:avatar_url]).not_to be_nil
      expect(event[:author][:name]).to eq(MergeRequest.first.author.name)
    end
  end

  describe '#test_events', :sidekiq_might_not_need_inline do
    let(:stage) { :test }

    let(:merge_request) { MergeRequest.first }
    let!(:context) { create(:issue, project: project, created_at: 2.days.ago) }

    let!(:pipeline) do
      create(:ci_pipeline,
             ref: merge_request.source_branch,
             sha: merge_request.diff_head_sha,
             project: project,
             head_pipeline_of: merge_request)
    end

    before do
      create(:ci_build, :success, pipeline: pipeline, author: user)
      create(:ci_build, :success, pipeline: pipeline, author: user)

      pipeline.run!
      pipeline.succeed!
      merge_merge_requests_closing_issue(user, project, context)
    end

    it 'has correct attributes' do
      expect(event[:name]).not_to be_nil
      expect(event[:id]).not_to be_nil
      expect(event[:url]).not_to be_nil
      expect(event[:branch]).not_to be_nil
      expect(event[:branch][:url]).not_to be_nil
      expect(event[:short_sha]).not_to be_nil
      expect(event[:commit_url]).not_to be_nil
      expect(event[:date]).not_to be_nil
      expect(event[:total_time]).not_to be_empty
    end
  end

  describe '#review_events' do
    let(:stage) { :review }
    let!(:context) { create(:issue, project: project, created_at: 2.days.ago) }

    before do
      merge_merge_requests_closing_issue(user, project, context)
    end

    it 'has correct attributes' do
      expect(event[:total_time]).not_to be_empty
      expect(event[:title]).to eq('Awesome merge_request')
      expect(event[:iid]).to eq(context.iid.to_s)
      expect(event[:url]).not_to be_nil
      expect(event[:state]).not_to be_nil
      expect(event[:created_at]).not_to be_nil
      expect(event[:author][:web_url]).not_to be_nil
      expect(event[:author][:avatar_url]).not_to be_nil
      expect(event[:author][:name]).to eq(MergeRequest.first.author.name)
    end
  end

  describe '#staging_events', :sidekiq_might_not_need_inline do
    let(:stage) { :staging }
    let(:merge_request) { MergeRequest.first }

    let!(:pipeline) do
      create(:ci_pipeline,
             ref: merge_request.source_branch,
             sha: merge_request.diff_head_sha,
             project: project,
             head_pipeline_of: merge_request)
    end

    before do
      create(:ci_build, :success, pipeline: pipeline, author: user)
      create(:ci_build, :success, pipeline: pipeline, author: user)

      pipeline.run!
      pipeline.succeed!

      merge_merge_requests_closing_issue(user, project, context)
      deploy_master(user, project)
    end

    it 'has correct attributes' do
      expect(event[:name]).not_to be_nil
      expect(event[:id]).not_to be_nil
      expect(event[:url]).not_to be_nil
      expect(event[:branch]).not_to be_nil
      expect(event[:branch][:url]).not_to be_nil
      expect(event[:short_sha]).not_to be_nil
      expect(event[:commit_url]).not_to be_nil
      expect(event[:date]).not_to be_nil
      expect(event[:total_time]).not_to be_empty
      expect(event[:author][:web_url]).not_to be_nil
      expect(event[:author][:avatar_url]).not_to be_nil
      expect(event[:author][:name]).to eq(MergeRequest.first.author.name)
    end
  end

  def setup(context)
    milestone = create(:milestone, project: project)
    context.update!(milestone: milestone)
    mr = create_merge_request_closing_issue(user, project, context, commit_message: "References #{context.to_reference}")

    ProcessCommitWorker.new.perform(project.id, user.id, mr.commits.last.to_hash)
  end
end