2020-11-24 15:15:51 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe ProjectFeatureUsage, type: :model do
|
|
|
|
describe '.jira_dvcs_integrations_enabled_count' do
|
|
|
|
it 'returns count of projects with Jira DVCS Cloud enabled' do
|
|
|
|
create(:project).feature_usage.log_jira_dvcs_integration_usage
|
|
|
|
create(:project).feature_usage.log_jira_dvcs_integration_usage
|
|
|
|
|
|
|
|
expect(described_class.with_jira_dvcs_integration_enabled.count).to eq(2)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns count of projects with Jira DVCS Server enabled' do
|
|
|
|
create(:project).feature_usage.log_jira_dvcs_integration_usage(cloud: false)
|
|
|
|
create(:project).feature_usage.log_jira_dvcs_integration_usage(cloud: false)
|
|
|
|
|
|
|
|
expect(described_class.with_jira_dvcs_integration_enabled(cloud: false).count).to eq(2)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#log_jira_dvcs_integration_usage' do
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
|
|
|
|
subject { project.feature_usage }
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
context 'when the feature usage has not been created yet' do
|
|
|
|
it 'logs Jira DVCS Cloud last sync' do
|
|
|
|
freeze_time do
|
|
|
|
subject.log_jira_dvcs_integration_usage
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
expect(subject.jira_dvcs_server_last_sync_at).to be_nil
|
|
|
|
expect(subject.jira_dvcs_cloud_last_sync_at).to be_like_time(Time.current)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'logs Jira DVCS Server last sync' do
|
|
|
|
freeze_time do
|
|
|
|
subject.log_jira_dvcs_integration_usage(cloud: false)
|
|
|
|
|
|
|
|
expect(subject.jira_dvcs_server_last_sync_at).to be_like_time(Time.current)
|
|
|
|
expect(subject.jira_dvcs_cloud_last_sync_at).to be_nil
|
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
context 'when the feature usage already exists' do
|
|
|
|
let(:today) { Time.current.beginning_of_day }
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
|
|
|
|
subject { project.feature_usage }
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
where(:cloud, :timestamp_field) do
|
|
|
|
[
|
|
|
|
[true, :jira_dvcs_cloud_last_sync_at],
|
|
|
|
[false, :jira_dvcs_server_last_sync_at]
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
with_them do
|
|
|
|
context 'when Jira DVCS Cloud last sync has not been logged' do
|
|
|
|
before do
|
|
|
|
travel_to today - 3.days do
|
|
|
|
subject.log_jira_dvcs_integration_usage(cloud: !cloud)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'logs Jira DVCS Cloud last sync' do
|
|
|
|
freeze_time do
|
|
|
|
subject.log_jira_dvcs_integration_usage(cloud: cloud)
|
|
|
|
|
|
|
|
expect(subject.reload.send(timestamp_field)).to be_like_time(Time.current)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when Jira DVCS Cloud last sync was logged today' do
|
|
|
|
let(:last_updated) { today + 1.hour }
|
|
|
|
|
|
|
|
before do
|
|
|
|
travel_to last_updated do
|
|
|
|
subject.log_jira_dvcs_integration_usage(cloud: cloud)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not log Jira DVCS Cloud last sync' do
|
|
|
|
travel_to today + 2.hours do
|
|
|
|
subject.log_jira_dvcs_integration_usage(cloud: cloud)
|
|
|
|
|
|
|
|
expect(subject.reload.send(timestamp_field)).to be_like_time(last_updated)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when Jira DVCS Cloud last sync was logged yesterday' do
|
|
|
|
let(:last_updated) { today - 2.days }
|
|
|
|
|
|
|
|
before do
|
|
|
|
travel_to last_updated do
|
|
|
|
subject.log_jira_dvcs_integration_usage(cloud: cloud)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'logs Jira DVCS Cloud last sync' do
|
|
|
|
travel_to today + 1.hour do
|
|
|
|
subject.log_jira_dvcs_integration_usage(cloud: cloud)
|
|
|
|
|
|
|
|
expect(subject.reload.send(timestamp_field)).to be_like_time(today + 1.hour)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when log_jira_dvcs_integration_usage is called simultaneously for the same project' do
|
|
|
|
it 'logs the latest call' do
|
|
|
|
feature_usage = project.feature_usage
|
|
|
|
feature_usage.log_jira_dvcs_integration_usage
|
|
|
|
first_logged_at = feature_usage.jira_dvcs_cloud_last_sync_at
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
travel_to(1.hour.from_now) do
|
2020-11-24 15:15:51 +05:30
|
|
|
ProjectFeatureUsage.new(project_id: project.id).log_jira_dvcs_integration_usage
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(feature_usage.reload.jira_dvcs_cloud_last_sync_at).to be > first_logged_at
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
context 'ProjectFeatureUsage with DB Load Balancing', :request_store do
|
|
|
|
describe '#log_jira_dvcs_integration_usage' do
|
|
|
|
let!(:project) { create(:project) }
|
|
|
|
|
|
|
|
subject { project.feature_usage }
|
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
context 'database load balancing is configured' do
|
2021-09-04 01:27:46 +05:30
|
|
|
before do
|
|
|
|
::Gitlab::Database::LoadBalancing::Session.clear_session
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'logs Jira DVCS Cloud last sync' do
|
|
|
|
freeze_time do
|
|
|
|
subject.log_jira_dvcs_integration_usage
|
|
|
|
|
|
|
|
expect(subject.jira_dvcs_server_last_sync_at).to be_nil
|
|
|
|
expect(subject.jira_dvcs_cloud_last_sync_at).to be_like_time(Time.current)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not stick to primary' do
|
|
|
|
expect(::Gitlab::Database::LoadBalancing::Session.current).not_to be_performed_write
|
|
|
|
expect(::Gitlab::Database::LoadBalancing::Session.current).not_to be_using_primary
|
|
|
|
|
|
|
|
subject.log_jira_dvcs_integration_usage
|
|
|
|
|
|
|
|
expect(::Gitlab::Database::LoadBalancing::Session.current).to be_performed_write
|
|
|
|
expect(::Gitlab::Database::LoadBalancing::Session.current).not_to be_using_primary
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'database load balancing is not cofigured' do
|
|
|
|
it 'logs Jira DVCS Cloud last sync' do
|
|
|
|
freeze_time do
|
|
|
|
subject.log_jira_dvcs_integration_usage
|
|
|
|
|
|
|
|
expect(subject.jira_dvcs_server_last_sync_at).to be_nil
|
|
|
|
expect(subject.jira_dvcs_cloud_last_sync_at).to be_like_time(Time.current)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|