debian-mirror-gitlab/spec/lib/banzai/renderer_spec.rb

59 lines
1.6 KiB
Ruby
Raw Normal View History

2016-11-03 12:29:30 +05:30
require 'spec_helper'
describe Banzai::Renderer do
2017-08-17 22:00:37 +05:30
def fake_object(fresh:)
object = double('object')
2016-11-03 12:29:30 +05:30
2018-03-17 18:26:18 +05:30
allow(object).to receive(:respond_to?).with(:cached_markdown_fields).and_return(true)
2017-08-17 22:00:37 +05:30
allow(object).to receive(:cached_html_up_to_date?).with(:field).and_return(fresh)
allow(object).to receive(:cached_html_for).with(:field).and_return('field_html')
2016-11-03 12:29:30 +05:30
object
end
2017-08-17 22:00:37 +05:30
describe '#render_field' do
let(:renderer) { described_class }
2016-11-03 12:29:30 +05:30
2018-03-17 18:26:18 +05:30
context 'without cache' do
let(:commit) { create(:project, :repository).commit }
2016-11-03 12:29:30 +05:30
2018-03-17 18:26:18 +05:30
it 'returns cacheless render field' do
expect(renderer).to receive(:cacheless_render_field).with(commit, :title, {})
2016-11-03 12:29:30 +05:30
2018-03-17 18:26:18 +05:30
renderer.render_field(commit, :title)
2016-11-03 12:29:30 +05:30
end
end
2018-03-17 18:26:18 +05:30
context 'with cache' do
subject { renderer.render_field(object, :field) }
2016-11-03 12:29:30 +05:30
2018-03-17 18:26:18 +05:30
context 'with a stale cache' do
let(:object) { fake_object(fresh: false) }
2016-11-03 12:29:30 +05:30
2018-03-17 18:26:18 +05:30
it 'caches and returns the result' do
expect(object).to receive(:refresh_markdown_cache!)
is_expected.to eq('field_html')
end
it "skips database caching on a GitLab read-only instance" do
allow(Gitlab::Database).to receive(:read_only?).and_return(true)
expect(object).to receive(:refresh_markdown_cache!)
is_expected.to eq('field_html')
end
end
context 'with an up-to-date cache' do
let(:object) { fake_object(fresh: true) }
it 'uses the cache' do
expect(object).to receive(:refresh_markdown_cache!).never
is_expected.to eq('field_html')
end
2016-11-03 12:29:30 +05:30
end
end
end
end