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

38 lines
950 B
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
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 }
subject { renderer.render_field(object, :field) }
2016-11-03 12:29:30 +05:30
2017-08-17 22:00:37 +05:30
context 'with a stale cache' do
let(:object) { fake_object(fresh: false) }
2016-11-03 12:29:30 +05:30
2017-08-17 22:00:37 +05:30
it 'caches and returns the result' do
expect(object).to receive(:refresh_markdown_cache!).with(do_update: true)
2016-11-03 12:29:30 +05:30
2017-08-17 22:00:37 +05:30
is_expected.to eq('field_html')
2016-11-03 12:29:30 +05:30
end
end
2017-08-17 22:00:37 +05:30
context 'with an up-to-date cache' do
let(:object) { fake_object(fresh: true) }
2016-11-03 12:29:30 +05:30
2017-08-17 22:00:37 +05:30
it 'uses the cache' do
expect(object).to receive(:refresh_markdown_cache!).never
2016-11-03 12:29:30 +05:30
2017-08-17 22:00:37 +05:30
is_expected.to eq('field_html')
2016-11-03 12:29:30 +05:30
end
end
end
end