Commit 8f1417c2 authored by James Fargher's avatar James Fargher

Merge branch 'ajk-200089-base-parser-tests' into 'master'

Improve base_parser_spec by asserting response values

See merge request gitlab-org/gitlab!36961
parents bbf984f0 d36221d9
...@@ -8,13 +8,14 @@ RSpec.describe Banzai::ReferenceParser::BaseParser do ...@@ -8,13 +8,14 @@ RSpec.describe Banzai::ReferenceParser::BaseParser do
let(:user) { create(:user) } let(:user) { create(:user) }
let(:project) { create(:project, :public) } let(:project) { create(:project, :public) }
let(:context) { Banzai::RenderContext.new(project, user) } let(:context) { Banzai::RenderContext.new(project, user) }
let(:parser_class) do
subject do Class.new(described_class) do
klass = Class.new(described_class) do
self.reference_type = :foo self.reference_type = :foo
end end
end
klass.new(context) subject do
parser_class.new(context)
end end
describe '.reference_type=' do describe '.reference_type=' do
...@@ -43,12 +44,20 @@ RSpec.describe Banzai::ReferenceParser::BaseParser do ...@@ -43,12 +44,20 @@ RSpec.describe Banzai::ReferenceParser::BaseParser do
let(:link) { empty_html_link } let(:link) { empty_html_link }
context 'when the link has a data-project attribute' do context 'when the link has a data-project attribute' do
it 'checks if user can read the resource' do before do
link['data-project'] = project.id.to_s link['data-project'] = project.id.to_s
end
expect(subject).to receive(:can_read_reference?).with(user, project, link) it 'includes the link if can_read_reference? returns true' do
expect(subject).to receive(:can_read_reference?).with(user, project, link).and_return(true)
subject.nodes_visible_to_user(user, [link]) expect(subject.nodes_visible_to_user(user, [link])).to contain_exactly(link)
end
it 'excludes the link if can_read_reference? returns false' do
expect(subject).to receive(:can_read_reference?).with(user, project, link).and_return(false)
expect(subject.nodes_visible_to_user(user, [link])).to be_empty
end end
end end
...@@ -178,58 +187,56 @@ RSpec.describe Banzai::ReferenceParser::BaseParser do ...@@ -178,58 +187,56 @@ RSpec.describe Banzai::ReferenceParser::BaseParser do
it 'gathers the references for every node matching the reference type' do it 'gathers the references for every node matching the reference type' do
dummy = Class.new(described_class) do dummy = Class.new(described_class) do
self.reference_type = :test self.reference_type = :test
end
instance = dummy.new(Banzai::RenderContext.new(project, user))
document = Nokogiri::HTML.fragment('<a class="gfm"></a><a class="gfm" data-reference-type="test"></a>')
expect(instance).to receive(:gather_references) def gather_references(nodes)
.with([document.children[1]]) nodes
.and_return([user]) end
end
expect(instance.process([document])).to eq([user]) instance = dummy.new(context)
document_a = Nokogiri::HTML.fragment(<<-FRAG)
<a class="gfm">one</a>
<a class="gfm" data-reference-type="test">two</a>
<a class="gfm" data-reference-type="other">three</a>
FRAG
document_b = Nokogiri::HTML.fragment(<<-FRAG)
<a class="gfm" data-reference-type="test">four</a>
FRAG
document_c = Nokogiri::HTML.fragment('')
expect(instance.process([document_a, document_b, document_c]))
.to contain_exactly(document_a.css('a')[1], document_b.css('a')[0])
end end
end end
describe '#gather_references' do describe '#gather_references' do
let(:link) { double(:link) } let(:nodes) { (1..10).map { |n| double(:link, id: n) } }
it 'does not process links a user can not reference' do let(:parser_class) do
expect(subject).to receive(:nodes_user_can_reference) Class.new(described_class) do
.with(user, [link]) def nodes_user_can_reference(_user, nodes)
.and_return([]) nodes.select { |n| n.id.even? }
end
expect(subject).to receive(:referenced_by).with([]) def nodes_visible_to_user(_user, nodes)
nodes.select { |n| n.id > 5 }
end
subject.gather_references([link]) def referenced_by(nodes)
nodes.map(&:id)
end
end
end end
it 'does not process links a user can not see' do it 'returns referenceable and visible objects, alongside nodes that are referenceable but not visible' do
expect(subject).to receive(:nodes_user_can_reference) expect(subject.gather_references(nodes)).to match(
.with(user, [link]) visible: contain_exactly(6, 8, 10),
.and_return([link]) not_visible: match_array(nodes.select { |n| n.id.even? && n.id <= 5 })
)
expect(subject).to receive(:nodes_visible_to_user)
.with(user, [link])
.and_return([])
expect(subject).to receive(:referenced_by).with([])
subject.gather_references([link])
end end
it 'returns the references if a user can reference and see a link' do it 'is always empty if the input is empty' do
expect(subject).to receive(:nodes_user_can_reference) expect(subject.gather_references([])) .to match(visible: be_empty, not_visible: be_empty)
.with(user, [link])
.and_return([link])
expect(subject).to receive(:nodes_visible_to_user)
.with(user, [link])
.and_return([link])
expect(subject).to receive(:referenced_by).with([link])
subject.gather_references([link])
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment