gitlab-org--gitlab-foss/spec/lib/gitlab/git/commit_stats_spec.rb

33 lines
896 B
Ruby

# frozen_string_literal: true
require "spec_helper"
RSpec.describe Gitlab::Git::CommitStats do
let_it_be(:project) { create(:project, :repository) }
let_it_be(:repository) { project.repository.raw }
let(:commit) { Gitlab::Git::Commit.find(repository, TestEnv::BRANCH_SHA['feature']) }
def verify_stats!
stats = described_class.new(repository, commit)
expect(stats).to have_attributes(
additions: eq(5),
deletions: eq(0),
total: eq(5)
)
end
it 'returns commit stats and caches them', :use_clean_rails_redis_caching do
expect(repository.gitaly_commit_client).to receive(:commit_stats).with(commit.id).and_call_original
verify_stats!
expect(Rails.cache.fetch("commit_stats:#{repository.gl_project_path}:#{commit.id}")).to eq([5, 0])
expect(repository.gitaly_commit_client).not_to receive(:commit_stats)
verify_stats!
end
end