require 'spec_helper' require 'pretty_text' describe PrettyText do describe "Cooking" do describe "with avatar" do before(:each) do eviltrout = User.new eviltrout.stubs(:avatar_template).returns("http://test.localhost/uploads/default/avatars/42d/57c/46ce7ee487/{size}.png") User.expects(:where).with(username_lower: "eviltrout").returns([eviltrout]) end 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 "

" end it "should produce a quote" do PrettyText.cook("[quote=\"EvilTrout, post:123, topic:456, full:true\"]ddd[/quote]").should match_html "

" end it "trims spaces on quote params" do PrettyText.cook("[quote=\"EvilTrout, post:555, topic: 666\"]ddd[/quote]").should match_html "

" end end it "should handle 3 mentions in a row" do PrettyText.cook('@hello @hello @hello').should match_html "

@hello @hello @hello

" end it "should sanitize the html" do PrettyText.cook("").should match_html "

" end it 'should allow for @mentions to have punctuation' do PrettyText.cook("hello @bob's @bob,@bob; @bob\"").should match_html "

hello @bob's @bob,@bob; @bob\"

" end it 'should add spoiler tags' do PrettyText.cook("[spoiler]hello[/spoiler]").should match_html "

hello

" end end describe "rel nofollow" do before do SiteSetting.stubs(:add_rel_nofollow_to_user_content).returns(true) SiteSetting.stubs(:exclude_rel_nofollow_domains).returns("foo.com,bar.com") end it "should inject nofollow in all user provided links" do PrettyText.cook('cnn').should =~ /nofollow/ end it "should not inject nofollow in all local links" do (PrettyText.cook("cnn") !~ /nofollow/).should be_true end it "should not inject nofollow in all subdomain links" do (PrettyText.cook("cnn") !~ /nofollow/).should be_true end it "should not inject nofollow for foo.com" do (PrettyText.cook("cnn") !~ /nofollow/).should be_true end it "should not inject nofollow for bar.foo.com" do (PrettyText.cook("cnn") !~ /nofollow/).should be_true end end describe "Excerpt" do context "images" do it "should dump images" do PrettyText.excerpt("",100).should == "[image]" end it "should keep alt tags" do PrettyText.excerpt("car",100).should == "[car]" end it "should keep title tags" do PrettyText.excerpt("",100).should == "[car]" end it "should convert images to markdown if the option is set" do PrettyText.excerpt("", 100, markdown_images: true).should == "![car](http://cnn.com/a.gif)" end end it "should have an option to strip links" do PrettyText.excerpt("cnn",100, strip_links: true).should == "cnn" end it "should preserve links" do PrettyText.excerpt("cnn",100).should == "cnn" end it "should deal with special keys properly" do PrettyText.excerpt("
",100).should == "" end it "should truncate stuff properly" do PrettyText.excerpt("hello world",5).should == "hello…" PrettyText.excerpt("

hello

world

",6).should == "hello w…" end it "should insert a space between to Ps" do PrettyText.excerpt("

a

b

",5).should == "a b" end it "should strip quotes" do PrettyText.excerpt("boom",5).should == "boom" end it "should not count the surrounds of a link" do PrettyText.excerpt("cnn",3).should == "cnn" end it "uses an ellipsis instead of html entities if provided with the option" do PrettyText.excerpt("cnn", 2, text_entities: true).should == "cn..." end it "should truncate links" do PrettyText.excerpt("cnn",2).should == "cn…" end it "should be able to extract links" do PrettyText.extract_links("http://bla.com").to_a.should == ["http://cnn.com"] end it "should extract links to topics" do PrettyText.extract_links("").to_a.should == ["/t/topic/321"] end it "should extract links to posts" do PrettyText.extract_links("").to_a.should == ["/t/topic/1234/4567"] end it "should not extract links inside quotes" do PrettyText.extract_links(" http://useless1.com http://useless2.com ").to_a.should == ["http://body_only.com", "http://body_and_quote.com", "/t/topic/1234"] end it "should not preserve tags in code blocks" do PrettyText.excerpt("
<h3>Hours</h3>
",100).should == "<h3>Hours</h3>" end it "should handle nil" do PrettyText.excerpt(nil,100).should == '' end end describe "strip links" do it "returns blank for blank input" do expect(PrettyText.strip_links("")).to be_blank end it "does nothing to a string without links" do expect(PrettyText.strip_links("I'm the batman")).to eq("I'm the batman") end it "strips links but leaves the text content" do expect(PrettyText.strip_links("I'm the linked batman")).to eq("I'm the linked batman") end end end