2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-06-28 16:14:55 +08:00
|
|
|
require "category_badge"
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe CategoryBadge do
|
2018-06-28 16:14:55 +08: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-02 00:04:40 +08:00
|
|
|
|
|
|
|
it "escapes code block contents" do
|
|
|
|
c = Fabricate(:category, description: '<code>\' <b id="x"></code>')
|
|
|
|
html = CategoryBadge.html_for(c)
|
|
|
|
|
2023-02-27 09:48:48 +08:00
|
|
|
expect(html).to include("title='' <b id="x">'")
|
2019-10-02 00:04:40 +08:00
|
|
|
end
|
2023-12-07 01:49:19 +08:00
|
|
|
|
|
|
|
it "includes color vars" do
|
|
|
|
c = Fabricate(:category, color: "123456", text_color: "654321")
|
|
|
|
html = CategoryBadge.html_for(c)
|
|
|
|
|
|
|
|
expect(html).to have_tag(
|
|
|
|
"span[data-category-id]",
|
|
|
|
with: {
|
|
|
|
style: "--category-badge-color: #123456; --category-badge-text-color: #654321;",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
end
|
2018-06-28 16:14:55 +08:00
|
|
|
end
|