summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/diff/stats_cache_spec.rb
blob: 8bf510c0bddb5901997606c16bbece7e4ffcf685 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Diff::StatsCache, :use_clean_rails_memory_store_caching do
  subject(:stats_cache) { described_class.new(cachable_key: cachable_key) }

  let(:key) { ['diff_stats', cachable_key, described_class::VERSION].join(":") }
  let(:cachable_key) { 'cachecachecache' }
  let(:stat) { Gitaly::DiffStats.new(path: 'temp', additions: 10, deletions: 15) }
  let(:stats) { Gitlab::Git::DiffStatsCollection.new([stat]) }
  let(:cache) { Rails.cache }

  describe '#read' do
    before do
      stats_cache.write_if_empty(stats)
    end

    it 'returns the expected stats' do
      expect(stats_cache.read.to_json).to eq(stats.to_json)
    end
  end

  describe '#write_if_empty' do
    context 'when the cache already exists' do
      before do
        Rails.cache.write(key, true)
      end

      it 'does not write the stats' do
        expect(cache).not_to receive(:write)

        stats_cache.write_if_empty(stats)
      end
    end

    context 'when the cache does not exist' do
      it 'writes the stats' do
        expect(cache)
          .to receive(:write)
          .with(key, stats.as_json, expires_in: described_class::EXPIRATION)
          .and_call_original

        stats_cache.write_if_empty(stats)

        expect(stats_cache.read.to_a).to eq(stats.to_a)
      end

      context 'when given non utf-8 characters' do
        let(:non_utf8_path) { '你好'.b }
        let(:stat) { Gitaly::DiffStats.new(path: non_utf8_path, additions: 10, deletions: 15) }

        it 'writes the stats' do
          expect(cache)
            .to receive(:write)
            .with(key, stats.as_json, expires_in: described_class::EXPIRATION)
            .and_call_original

          stats_cache.write_if_empty(stats)

          expect(stats_cache.read.to_a).to eq(stats.to_a)
        end
      end

      context 'when given empty stats' do
        let(:stats) { nil }

        it 'does not write the stats' do
          expect(cache).not_to receive(:write)

          stats_cache.write_if_empty(stats)
        end
      end
    end
  end

  describe '#clear' do
    it 'clears cache' do
      expect(cache).to receive(:delete).with(key)

      stats_cache.clear
    end
  end
end