mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
44 lines
1.2 KiB
Ruby
44 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "category_badge"
|
|
|
|
RSpec.describe CategoryBadge do
|
|
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("<b>name</b>")
|
|
expect(html).to include("title='title'")
|
|
end
|
|
|
|
it "escapes code block contents" do
|
|
c = Fabricate(:category, description: '<code>\' <b id="x"></code>')
|
|
html = CategoryBadge.html_for(c)
|
|
|
|
expect(html).to include("title='' <b id="x">'")
|
|
end
|
|
|
|
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
|
|
|
|
it "includes inline color style when inline_style is true" do
|
|
c = Fabricate(:category, color: "123456")
|
|
|
|
html = CategoryBadge.html_for(c, inline_style: true)
|
|
|
|
expect(html).to include("background-color: #123456;")
|
|
end
|
|
end
|