debian-mirror-gitlab/spec/lib/banzai/pipeline/description_pipeline_spec.rb

48 lines
1.1 KiB
Ruby
Raw Normal View History

2016-04-02 18:10:28 +05:30
require 'rails_helper'
describe Banzai::Pipeline::DescriptionPipeline do
def parse(html)
# When we pass HTML to Redcarpet, it gets wrapped in `p` tags...
# ...except when we pass it pre-wrapped text. Rabble rabble.
2016-11-03 12:29:30 +05:30
unwrap = !html.start_with?('<p ')
2016-04-02 18:10:28 +05:30
output = described_class.to_html(html, project: spy)
2016-11-03 12:29:30 +05:30
output.gsub!(%r{\A<p dir="auto">(.*)</p>(.*)\z}, '\1\2') if unwrap
2016-04-02 18:10:28 +05:30
output
end
2019-03-02 22:35:43 +05:30
before do
stub_commonmark_sourcepos_disabled
end
2016-04-02 18:10:28 +05:30
it 'uses a limited whitelist' do
doc = parse('# Description')
expect(doc.strip).to eq 'Description'
end
%w(pre code img ol ul li).each do |elem|
it "removes '#{elem}' elements" do
act = "<#{elem}>Description</#{elem}>"
expect(parse(act).strip).to eq 'Description'
end
end
2016-11-03 12:29:30 +05:30
%w(b i strong em a ins del sup sub).each do |elem|
2016-04-02 18:10:28 +05:30
it "still allows '#{elem}' elements" do
exp = act = "<#{elem}>Description</#{elem}>"
expect(parse(act).strip).to eq exp
end
end
2016-11-03 12:29:30 +05:30
it "still allows 'p' elements" do
exp = act = "<p dir=\"auto\">Description</p>"
expect(parse(act).strip).to eq exp
end
2016-04-02 18:10:28 +05:30
end