2019-04-30 10:27:42 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-06-28 18:14:55 +10:00
|
|
|
require "category_badge"
|
|
|
|
|
2022-07-28 05:27:38 +03:00
|
|
|
RSpec.describe CategoryBadge do
|
2018-06-28 18:14:55 +10:00
|
|
|
it "escapes HTML in category names / descriptions" do
|
|
|
|
c = Fabricate(:category, name: "<b>name</b>", description: "<b>title</b>")
|
|
|
|
|
|
|
|
html = CategoryBadge.html_for(c)
|
|
|
|
|
|
|
|
expect(html).not_to include("<b>title</b>")
|
|
|
|
expect(html).not_to include("<b>name</b>")
|
|
|
|
expect(html).to include(ERB::Util.html_escape("<b>name</b>"))
|
|
|
|
expect(html).to include("title='title'")
|
|
|
|
end
|
2019-10-01 18:04:40 +02:00
|
|
|
|
|
|
|
it "escapes code block contents" do
|
|
|
|
c = Fabricate(:category, description: '<code>\' <b id="x"></code>')
|
|
|
|
html = CategoryBadge.html_for(c)
|
|
|
|
|
2023-02-27 12:48:48 +11:00
|
|
|
expect(html).to include("title='' <b id="x">'")
|
2019-10-01 18:04:40 +02:00
|
|
|
end
|
2018-06-28 18:14:55 +10:00
|
|
|
end
|