2019-04-15 06:17:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-21 09:39:43 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-03 14:08:28 -04:00
|
|
|
RSpec.describe Projects::CycleAnalyticsController do
|
2017-01-25 16:44:33 -05:00
|
|
|
let(:project) { create(:project, :repository) }
|
2016-11-21 09:39:43 -05:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
2018-07-11 10:36:08 -04:00
|
|
|
project.add_maintainer(user)
|
2016-11-21 09:39:43 -05:00
|
|
|
end
|
|
|
|
|
2019-08-14 12:12:12 -04:00
|
|
|
context "counting page views for 'show'" do
|
|
|
|
it 'increases the counter' do
|
|
|
|
expect(Gitlab::UsageDataCounters::CycleAnalyticsCounter).to receive(:count).with(:views)
|
|
|
|
|
|
|
|
get(:show,
|
|
|
|
params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project
|
|
|
|
})
|
|
|
|
|
2019-08-19 05:55:20 -04:00
|
|
|
expect(response).to be_successful
|
2019-08-14 12:12:12 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-21 09:39:43 -05:00
|
|
|
describe 'cycle analytics not set up flag' do
|
|
|
|
context 'with no data' do
|
|
|
|
it 'is true' do
|
|
|
|
get(:show,
|
2018-12-17 17:52:17 -05:00
|
|
|
params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project
|
|
|
|
})
|
2016-11-21 09:39:43 -05:00
|
|
|
|
2019-08-19 05:55:20 -04:00
|
|
|
expect(response).to be_successful
|
2016-11-21 11:29:07 -05:00
|
|
|
expect(assigns(:cycle_analytics_no_data)).to eq(true)
|
2016-11-21 09:39:43 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with data' do
|
|
|
|
before do
|
|
|
|
issue = create(:issue, project: project, created_at: 4.days.ago)
|
|
|
|
milestone = create(:milestone, project: project, created_at: 5.days.ago)
|
|
|
|
issue.update(milestone: milestone)
|
|
|
|
|
2018-02-21 07:13:56 -05:00
|
|
|
create_merge_request_closing_issue(user, project, issue)
|
2016-11-21 09:39:43 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'is false' do
|
|
|
|
get(:show,
|
2018-12-17 17:52:17 -05:00
|
|
|
params: {
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project
|
|
|
|
})
|
2016-11-21 09:39:43 -05:00
|
|
|
|
2019-08-19 05:55:20 -04:00
|
|
|
expect(response).to be_successful
|
2016-11-21 11:29:07 -05:00
|
|
|
expect(assigns(:cycle_analytics_no_data)).to eq(false)
|
2016-11-21 09:39:43 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|