2019-05-12 22:48:15 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-12-29 07:33:02 -05:00
|
|
|
require "rails_helper"
|
2017-07-06 16:50:38 -04:00
|
|
|
|
|
|
|
describe PrettyText do
|
2022-12-29 07:33:02 -05:00
|
|
|
context "with discourse math" do
|
|
|
|
before { SiteSetting.discourse_math_enabled = true }
|
2017-07-06 16:50:38 -04:00
|
|
|
|
2022-12-29 07:33:02 -05:00
|
|
|
it "can handle inline math" do
|
2017-07-18 14:40:05 -04:00
|
|
|
cooked = PrettyText.cook('I like $\{a,b\}\$<a>$ etc')
|
|
|
|
html = '<p>I like <span class="math">\{a,b\}\$<a></span> etc</p>'
|
2017-07-06 16:50:38 -04:00
|
|
|
expect(cooked).to eq(html)
|
|
|
|
end
|
|
|
|
|
2022-12-29 07:33:02 -05:00
|
|
|
it "can correctly ignore bad blocks" do
|
2017-07-06 16:50:38 -04:00
|
|
|
cooked = PrettyText.cook <<~MD
|
|
|
|
$$a
|
|
|
|
a
|
|
|
|
$$"
|
|
|
|
MD
|
|
|
|
|
|
|
|
html = <<~HTML
|
|
|
|
<p>$$a<br>
|
|
|
|
a<br>
|
|
|
|
$$"</p>
|
|
|
|
HTML
|
|
|
|
|
|
|
|
expect(cooked).to eq(html.strip)
|
|
|
|
end
|
|
|
|
|
2022-12-29 07:33:02 -05:00
|
|
|
it "can handle inline edge cases" do
|
|
|
|
expect(PrettyText.cook ",$+500\\$").not_to include("math")
|
|
|
|
expect(PrettyText.cook "$+500$").to include("math")
|
|
|
|
expect(PrettyText.cook ",$+500$,").to include("math")
|
|
|
|
expect(PrettyText.cook "200$ + 500$").not_to include("math")
|
|
|
|
expect(PrettyText.cook ",$+500$x").not_to include("math")
|
|
|
|
expect(PrettyText.cook "y$+500$").not_to include("math")
|
|
|
|
expect(PrettyText.cook "($ +500 $)").to include("math")
|
2017-07-06 16:50:38 -04:00
|
|
|
end
|
|
|
|
|
2022-12-29 07:33:02 -05:00
|
|
|
it "can handle inline math" do
|
2017-07-06 16:50:38 -04:00
|
|
|
cooked = PrettyText.cook <<~MD
|
|
|
|
I like
|
|
|
|
$$
|
|
|
|
\{a,b\}\$<a>
|
|
|
|
$$
|
2017-07-18 14:40:05 -04:00
|
|
|
etc
|
2017-07-06 16:50:38 -04:00
|
|
|
MD
|
|
|
|
|
|
|
|
html = <<~HTML
|
|
|
|
<p>I like</p>
|
|
|
|
<div class="math">
|
|
|
|
{a,b}$<a>
|
|
|
|
</div>
|
2017-07-18 14:40:05 -04:00
|
|
|
<p>etc</p>
|
2017-07-06 16:50:38 -04:00
|
|
|
HTML
|
|
|
|
|
|
|
|
expect(cooked).to eq(html.strip)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|