summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/cache_spec.rb
blob: 5b1034a77a311fa7070a7c9a93cebc28f0e7bf42 (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
# frozen_string_literal: true

require "spec_helper"

RSpec.describe Gitlab::Cache, :request_store do
  describe "#fetch_once" do
    subject do
      proc do
        described_class.fetch_once([:test, "key"], expires_in: 10.minutes) do
          "return value"
        end
      end
    end

    it "fetches from the cache once" do
      expect(Rails.cache).to receive(:fetch).once.with([:test, "key"], expires_in: 10.minutes).and_call_original

      expect(subject.call).to eq("return value")
      expect(subject.call).to eq("return value")
    end

    it "always returns from the request store" do
      expect(Gitlab::SafeRequestStore).to receive(:fetch).twice.with([:test, "key"]).and_call_original

      expect(subject.call).to eq("return value")
      expect(subject.call).to eq("return value")
    end
  end
end