discourse/spec/components/pretty_text_spec.rb

180 lines
7.4 KiB
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require 'spec_helper'
require 'pretty_text'
describe PrettyText do
2013-02-25 11:42:20 -05:00
describe "Cooking" do
2013-02-05 14:16:51 -05:00
it "should support github style code blocks" do
PrettyText.cook("```
test
```").should match_html "<pre><code class=\"lang-auto\">test \n</code></pre>"
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it "should support quoting [] " do
2013-02-05 14:16:51 -05:00
PrettyText.cook("[quote=\"EvilTrout, post:123, topic:456, full:true\"][sam][/quote]").should =~ /\[sam\]/
end
2013-02-25 11:42:20 -05:00
it "produces a quote even with new lines in it" do
PrettyText.cook("[quote=\"EvilTrout, post:123, topic:456, full:true\"]ddd\n[/quote]").should match_html "<p></p><aside class=\"quote\" data-post=\"123\" data-topic=\"456\" data-full=\"true\"><div class=\"title\">\n <div class=\"quote-controls\"></div>\n <img width=\"20\" height=\"20\" src=\"/users/eviltrout/avatar/40?__ws=http%3A%2F%2Ftest.localhost\" class=\"avatar \" title=\"\">\n EvilTrout\n said:\n </div>\n <blockquote>ddd</blockquote>\n</aside><p> </p>"
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it "should produce a quote" do
PrettyText.cook("[quote=\"EvilTrout, post:123, topic:456, full:true\"]ddd[/quote]").should match_html "<p></p><aside class=\"quote\" data-post=\"123\" data-topic=\"456\" data-full=\"true\"><div class=\"title\">\n <div class=\"quote-controls\"></div>\n <img width=\"20\" height=\"20\" src=\"/users/eviltrout/avatar/40?__ws=http%3A%2F%2Ftest.localhost\" class=\"avatar \" title=\"\">\n EvilTrout\n said:\n </div>\n <blockquote>ddd</blockquote>\n</aside><p> </p>"
2013-02-05 14:16:51 -05:00
end
it "trims spaces on quote params" do
PrettyText.cook("[quote=\"EvilTrout, post:555, topic: 666\"]ddd[/quote]").should match_html "<p></p><aside class=\"quote\" data-post=\"555\" data-topic=\"666\"><div class=\"title\">\n <div class=\"quote-controls\"></div>\n <img width=\"20\" height=\"20\" src=\"/users/eviltrout/avatar/40?__ws=http%3A%2F%2Ftest.localhost\" class=\"avatar \" title=\"\">\n EvilTrout\n said:\n </div>\n <blockquote>ddd</blockquote>\n</aside><p> </p>"
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it "should handle 3 mentions in a row" do
PrettyText.cook('@hello @hello @hello').should match_html "<p><span class=\"mention\">@hello</span> <span class=\"mention\">@hello</span> <span class=\"mention\">@hello</span></p>"
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it "should not do weird @ mention stuff inside a pre block" do
2013-02-05 14:16:51 -05:00
PrettyText.cook("```
a @test
```").should match_html "<pre><code class=\"lang-auto\">a @test \n</code></pre>"
2013-02-25 11:42:20 -05:00
2013-02-05 14:16:51 -05:00
end
it "should sanitize the html" do
PrettyText.cook("<script>alert(42)</script>").should match_html "alert(42)"
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it "should escape html within the code block" do
2013-02-05 14:16:51 -05:00
PrettyText.cook("```text
<header>hello</header>
```").should match_html "<pre><code class=\"text\">&lt;header&gt;hello&lt;/header&gt; \n</code></pre>"
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it "should support language choices" do
2013-02-05 14:16:51 -05:00
PrettyText.cook("```ruby
test
```").should match_html "<pre><code class=\"ruby\">test \n</code></pre>"
2013-02-05 14:16:51 -05:00
end
it 'should decorate @mentions' do
PrettyText.cook("Hello @eviltrout").should match_html "<p>Hello <span class=\"mention\">@eviltrout</span></p>"
2013-02-05 14:16:51 -05:00
end
it 'should allow for @mentions to have punctuation' do
PrettyText.cook("hello @bob's @bob,@bob; @bob\"").should
match_html "<p>hello <span class=\"mention\">@bob</span>'s <span class=\"mention\">@bob</span>,<span class=\"mention\">@bob</span>; <span class=\"mention\">@bob</span>\"</p>"
2013-02-05 14:16:51 -05:00
end
it 'should add spoiler tags' do
PrettyText.cook("[spoiler]hello[/spoiler]").should match_html "<p><span class=\"spoiler\">hello</span></p>"
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it "should only detect ``` at the begining of lines" do
2013-02-05 14:16:51 -05:00
PrettyText.cook(" ```\n hello\n ```")
.should match_html "<pre><code>```\nhello\n```\n</code></pre>"
2013-02-05 14:16:51 -05:00
end
end
2013-02-25 11:42:20 -05:00
describe "rel nofollow" do
2013-02-25 11:42:20 -05:00
before do
SiteSetting.stubs(:add_rel_nofollow_to_user_content).returns(true)
SiteSetting.stubs(:exclude_rel_nofollow_domains).returns("foo.com,bar.com")
end
2013-02-25 11:42:20 -05:00
it "should inject nofollow in all user provided links" do
PrettyText.cook('<a href="http://cnn.com">cnn</a>').should =~ /nofollow/
end
2013-02-25 11:42:20 -05:00
it "should not inject nofollow in all local links" do
(PrettyText.cook("<a href='#{Discourse.base_url}/test.html'>cnn</a>") !~ /nofollow/).should be_true
end
2013-02-25 11:42:20 -05:00
it "should not inject nofollow in all subdomain links" do
(PrettyText.cook("<a href='#{Discourse.base_url.sub('http://', 'http://bla.')}/test.html'>cnn</a>") !~ /nofollow/).should be_true
end
it "should not inject nofollow for foo.com" do
2013-02-25 11:42:20 -05:00
(PrettyText.cook("<a href='http://foo.com/test.html'>cnn</a>") !~ /nofollow/).should be_true
end
2013-02-25 11:42:20 -05:00
it "should not inject nofollow for bar.foo.com" do
2013-02-25 11:42:20 -05:00
(PrettyText.cook("<a href='http://bar.foo.com/test.html'>cnn</a>") !~ /nofollow/).should be_true
end
end
2013-02-05 14:16:51 -05:00
2013-02-25 11:42:20 -05:00
describe "Excerpt" do
it "should preserve links" do
2013-02-05 14:16:51 -05:00
PrettyText.excerpt("<a href='http://cnn.com'>cnn</a>",100).should == "<a href='http://cnn.com'>cnn</a>"
end
2013-02-25 11:42:20 -05:00
it "should dump images" do
2013-02-05 14:16:51 -05:00
PrettyText.excerpt("<img src='http://cnn.com/a.gif'>",100).should == "[image]"
end
2013-02-25 11:42:20 -05:00
it "should keep alt tags" do
2013-02-05 14:16:51 -05:00
PrettyText.excerpt("<img src='http://cnn.com/a.gif' alt='car' title='my big car'>",100).should == "[car]"
end
2013-02-25 11:42:20 -05:00
it "should keep title tags" do
2013-02-05 14:16:51 -05:00
PrettyText.excerpt("<img src='http://cnn.com/a.gif' title='car'>",100).should == "[car]"
end
2013-02-25 11:42:20 -05:00
it "should deal with special keys properly" do
2013-02-05 14:16:51 -05:00
PrettyText.excerpt("<pre><b></pre>",100).should == ""
end
2013-02-25 11:42:20 -05:00
it "should truncate stuff properly" do
2013-02-05 14:16:51 -05:00
PrettyText.excerpt("hello world",5).should == "hello&hellip;"
end
2013-02-25 11:42:20 -05:00
it "should insert a space between to Ps" do
2013-02-05 14:16:51 -05:00
PrettyText.excerpt("<p>a</p><p>b</p>",5).should == "a b "
end
2013-02-25 11:42:20 -05:00
it "should strip quotes" do
2013-02-05 14:16:51 -05:00
PrettyText.excerpt("<aside class='quote'><p>a</p><p>b</p></aside>boom",5).should == "boom"
end
2013-02-25 11:42:20 -05:00
it "should not count the surrounds of a link" do
2013-02-05 14:16:51 -05:00
PrettyText.excerpt("<a href='http://cnn.com'>cnn</a>",3).should == "<a href='http://cnn.com'>cnn</a>"
end
2013-02-25 11:42:20 -05:00
it "should truncate links" do
2013-02-05 14:16:51 -05:00
PrettyText.excerpt("<a href='http://cnn.com'>cnn</a>",2).should == "<a href='http://cnn.com'>cn&hellip;</a>"
end
2013-02-25 11:42:20 -05:00
it "should be able to extract links" do
2013-02-05 14:16:51 -05:00
PrettyText.extract_links("<a href='http://cnn.com'>http://bla.com</a>").to_a.should == ["http://cnn.com"]
end
it "should extract links to topics" do
PrettyText.extract_links("<aside class=\"quote\" data-topic=\"321\">aside</aside>").to_a.should == ["/t/topic/321"]
end
it "should extract links to posts" do
PrettyText.extract_links("<aside class=\"quote\" data-topic=\"1234\" data-post=\"4567\">aside</aside>").to_a.should == ["/t/topic/1234/4567"]
end
2013-02-25 11:42:20 -05:00
it "should not preserve tags in code blocks" do
2013-02-05 14:16:51 -05:00
PrettyText.excerpt("<pre><code class='handlebars'>&lt;h3&gt;Hours&lt;/h3&gt;</code></pre>",100).should == "&lt;h3&gt;Hours&lt;/h3&gt;"
end
it "should handle nil" do
PrettyText.excerpt(nil,100).should == ''
end
end
2013-02-25 11:42:20 -05:00
describe "apply cdn" do
2013-02-05 14:16:51 -05:00
it "should detect bare links to images and apply a CDN" do
PrettyText.apply_cdn("<a href='/hello.png'>hello</a><img src='/a.jpeg'>","http://a.com").should ==
"<a href=\"http://a.com/hello.png\">hello</a><img src=\"http://a.com/a.jpeg\">"
end
2013-02-25 11:42:20 -05:00
it "should not touch non images" do
2013-02-05 14:16:51 -05:00
PrettyText.apply_cdn("<a href='/hello'>hello</a>","http://a.com").should ==
"<a href=\"/hello\">hello</a>"
end
end
end