2019-07-31 22:56:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Projects::UpdateStatisticsService do
|
2019-07-31 22:56:46 +05:30
|
|
|
let(:service) { described_class.new(project, nil, statistics: statistics)}
|
|
|
|
let(:statistics) { %w(repository_size) }
|
|
|
|
|
|
|
|
describe '#execute' do
|
|
|
|
context 'with a non-existing project' do
|
|
|
|
let(:project) { nil }
|
|
|
|
|
|
|
|
it 'does nothing' do
|
|
|
|
expect_any_instance_of(ProjectStatistics).not_to receive(:refresh!)
|
|
|
|
|
|
|
|
service.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
context 'with an existing project' do
|
2019-07-31 22:56:46 +05:30
|
|
|
let(:project) { create(:project) }
|
|
|
|
|
|
|
|
it 'refreshes the project statistics' do
|
|
|
|
expect_any_instance_of(ProjectStatistics).to receive(:refresh!)
|
|
|
|
.with(only: statistics.map(&:to_sym))
|
|
|
|
.and_call_original
|
|
|
|
|
|
|
|
service.execute
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|