Welcome to mirror list, hosted at ThFree Co, Russian Federation.

events_spec.rb « cycle_analytics « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4535f467ec117942aaf35a7dbb1e815c59463bf (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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
require 'spec_helper'

describe Gitlab::CycleAnalytics::Events do
  let(:project) { create(:project) }
  let(:from_date) { 10.days.ago }
  let(:user) { create(:user, :admin) }

  subject { described_class.new(project: project, from: from_date) }

  before do
    setup(context)
  end

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

    it 'has the total time' do
      expect(subject.issue_events.first['total_time']).to eq('2 days')
    end

    it 'has a title' do
      expect(subject.issue_events.first['title']).to eq(context.title)
    end

    it 'has an iid' do
      expect(subject.issue_events.first['iid']).to eq(context.iid.to_s)
    end

    it 'has a created_at timestamp' do
      expect(subject.issue_events.first['created_at']).to end_with('ago')
    end

    it "has the author's URL" do
      expect(subject.issue_events.first['author_profile_url']).not_to be_nil
    end

    it "has the author's avatar URL" do
      expect(subject.issue_events.first['author_avatar_url']).not_to be_nil
    end

    it "has the author's name" do
      expect(subject.issue_events.first['author_name']).to eq(context.author.name)
    end
  end

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

    it 'has the first referenced commit' do
      expect(subject.plan_events.first['commit'].message).to eq('commit message')
    end

    it 'has the total time' do
      expect(subject.plan_events.first['total_time']).to eq('less than a minute')
    end
  end

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

    before do
      create_commit_referencing_issue(context)
    end

    it 'has the total time' do
      expect(subject.code_events.first['total_time']).to eq('less than a minute')
    end

    it 'has a title' do
      expect(subject.code_events.first['title']).to eq('Awesome merge_request')
    end

    it 'has an iid' do
      expect(subject.code_events.first['iid']).to eq(context.iid.to_s)
    end

    it 'has a created_at timestamp' do
      expect(subject.code_events.first['created_at']).to end_with('ago')
    end

    it "has the author's email" do
      expect(subject.code_events.first['email']).to eq(context.author.email)
    end

    it "has the author's name" do
      expect(subject.code_events.first['name']).to eq(context.author.name)
    end
  end

  describe '#test_events' do
    let!(:context) { create(:issue, project: project, created_at: 2.days.ago) }
    let(:merge_request) { MergeRequest.first }
    let!(:pipeline) do
      create(:ci_pipeline,
             ref: merge_request.source_branch,
             sha: merge_request.diff_head_sha,
             project: context.project)
    end

    before do
      pipeline.run!
      pipeline.succeed!
    end

    it 'has the build info as a pipeline' do
      expect(subject.test_events.first['pipeline']).to eq(pipeline)
    end

    it 'has the total time' do
      expect(subject.test_events.first['total_time']).to eq('less than a minute')
    end
  end

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

    it 'has the total time' do
      expect(subject.review_events.first['total_time']).to eq('less than a minute')
    end

    it 'has a title' do
      expect(subject.review_events.first['title']).to eq('Awesome merge_request')
    end

    it 'has an iid' do
      expect(subject.review_events.first['iid']).to eq(context.iid.to_s)
    end

    it 'has a created_at timestamp' do
      expect(subject.review_events.first['created_at']).to end_with('ago')
    end

    it "has the author's email" do
      expect(subject.review_events.first['email']).to eq(MergeRequest.first.author.email)
    end

    it "has the author's name" do
      expect(subject.review_events.first['name']).to eq(MergeRequest.first.author.name)
    end
  end

  describe '#staging_events' do
    let!(:context) { create(:issue, project: project, created_at: 2.days.ago) }
    let(:merge_request) { MergeRequest.first }
    let!(:pipeline) do
      create(:ci_pipeline,
             ref: merge_request.source_branch,
             sha: merge_request.diff_head_sha,
             project: context.project)
    end

    before do
      pipeline.run!
      pipeline.succeed!
      merge_merge_requests_closing_issue(context)
      deploy_master
    end

    it 'has the build info as a pipeline' do
      expect(subject.staging_events.first['pipeline']).to eq(pipeline)
    end

    it 'has the total time' do
      expect(subject.staging_events.first['total_time']).to eq('less than a minute')
    end
  end

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

    before do
      merge_merge_requests_closing_issue(context)
      deploy_master
    end

    it 'has the total time' do
      expect(subject.production_events.first['total_time']).to eq('2 days')
    end

    it 'has a title' do
      expect(subject.production_events.first['title']).to eq(context.title)
    end

    it 'has an iid' do
      expect(subject.production_events.first['iid']).to eq(context.iid.to_s)
    end

    it 'has a created_at timestamp' do
      expect(subject.production_events.first['created_at']).to end_with('ago')
    end

    it "has the author's email" do
      expect(subject.production_events.first['email']).to eq(context.author.email)
    end

    it "has the author's name" do
      expect(subject.production_events.first['name']).to eq(context.author.name)
    end
  end

  def setup(context)
    milestone = create(:milestone, project: project)
    context.update(milestone: milestone)
    create_merge_request_closing_issue(context)
  end
end