# Copyright (c) 2010, Diaspora Inc. This file is # licensed under the Affero General Public License version 3 or later. See # the COPYRIGHT file. require 'spec_helper' describe ApplicationHelper do before do @user = make_user @person = Factory.create(:person) end it "should provide a correct show path for a given person" do person_url(@person).should == "/people/#{@person.id}" end it "should provide a correct show path for a given user" do person_url(@user).should == "/users/#{@user.id}" end describe "#object_path" do it "returns an empty string if object is nil" do object_path(nil).should == "" end it "returns person path if it's a person" do object_path(@person).should == person_path(@person) end it "returns person path if it's a user" do object_path(@user).should == person_path(@user.person) end end describe "#person_image_link" do it "returns an empty string if person is nil" do person_image_link(nil).should == "" end it "returns a link containing the person's photo" do person_image_link(@person).should include(image_or_default(@person)) end it "returns a link to the person's profile" do person_image_link(@person).should include(person_path(@person)) end end describe "markdownify" do describe "autolinks" do it "should not allow basic XSS/HTML" do markdownify("").should == "<script>alert('XSS is evil')</script>" end it "should recognize basic http links (1/3)" do proto="http" url="bugs.joindiaspora.com/issues/332" markdownify(proto+"://"+url).should == ""+url+"" end it "should recognize basic http links (2/3)" do proto="http" url="webmail.example.com?~()!*/" markdownify(proto+"://"+url).should == ""+url+"" end it "should recognize basic http links (3/3)" do proto="http" url="127.0.0.1:3000/users/sign_in" markdownify(proto+"://"+url).should == ""+url+"" end it "should recognize secure https links" do proto="https" url="127.0.0.1:3000/users/sign_in" markdownify(proto+"://"+url).should == ""+url+"" end describe "video links" do it "recognizes youtube links" do video_id = "0x__dDWdf23" url = "http://www.youtube.com/watch?v=" + video_id + "&a=GxdCwVVULXdvEBKmx_f5ywvZ0zZHHHDU&list=ML&playnext=1" res = markdownify(url) res.should =~ /data-host="youtube.com"/ res.should =~ /data-video-id="#{video_id}"/ end it "recognizes youtube links with hyphens" do video_id = "ABYnqp-bxvg" url = "http://www.youtube.com/watch?v=" + video_id + "&a=GxdCwVVULXdvEBKmx_f5ywvZ0zZHHHDU&list=ML&playnext=1" res = markdownify(url) res.should =~ /data-host="youtube.com"/ res.should =~ /data-video-id="#{video_id}"/ end end it "recognizes multiple links of different types" do message = "http:// Hello World, this is for www.joindiaspora.com and not for http://www.google.com though their Youtube service is neat, take http://www.youtube.com/watch?v=foobar or www.youtube.com/watch?foo=bar&v=BARFOO&whatever=related It is a good idea we finally have youtube, so enjoy this video http://www.youtube.com/watch?v=rickrolld" res = markdownify(message) res.should =~ /a target=\"_blank\" href=\"http:\/\/www.joindiaspora.com\"/ res.should =~ /a target=\"_blank\" href=\"http:\/\/www.google.com\"/ res.should =~ /data-video-id="foobar"/ res.should =~ /data-video-id="BARFOO"/ res.should =~ /data-video-id="rickrolld"/ end it "should recognize basic ftp links" do proto="ftp" url="ftp.uni-kl.de/CCC/26C3/mp4/26c3-3540-en-a_hackers_utopia.mp4" # I did not watch that one, but the title sounds nice :P markdownify(proto+"://"+url).should == ""+url+"" end it "should recognize www links" do url="www.joindiaspora.com" markdownify(url).should == ""+url+"" end end describe "weak emphasis" do it "should be recognized (1/2)" do message = "*some text* some text *some text* some text" markdownify(message).should == "some text some text some text some text" end it "should be recognized (2/2)" do message = "_some text_ some text _some text_ some text" markdownify(message).should == "some text some text some text some text" end end describe "strong emphasis" do it "should be recognized (1/2)" do message = "**some text** some text **some text** some text" markdownify(message).should == "some text some text some text some text" end it "should be recognized (2/2)" do message = "__some text__ some text __some text__ some text" markdownify(message).should == "some text some text some text some text" end end describe "nested weak and strong emphasis" do it "should be rendered correctly" do message = "__this is _some_ text__" markdownify(message).should == "this is some text" message = "*this is **some** text*" markdownify(message).should == "this is some text" message = "___some text___" markdownify(message).should == "some text" end end describe "links" do it "should be recognized without title attribute" do message = "[link text](http://someurl.com) [link text](http://someurl.com)" markdownify(message).should == 'link text link text' end it "should be recognized with title attribute" do message = '[link text](http://someurl.com "some title") [link text](http://someurl.com "some title")' markdownify(message).should == 'link text link text' end end describe "nested emphasis and links tags" do it "should be rendered correctly" do message = '[**some *link* text**](someurl.com "some title")' markdownify(message).should == 'some link text' end end it "should allow escaping" do message = '*some text* \\*some text* \\**some text* _some text_ \\_some text_ \\__some text_' markdownify(message).should == "some text *some text **some text some text _some text __some text" end describe "newlines" do it 'skips inserting newlines if you pass the newlines option' do message = "These\nare\n\some\nnew\lines" res = markdownify(message, :newlines => false) res.should == message end it 'generates breaklines' do message = "These\nare\nsome\nnew\nlines" res = markdownify(message) res.should == "These
are
some
new
lines" end it 'should render newlines and basic http links correctly' do message = "Some text, then a line break and a link\nhttp://joindiaspora.com\nsome more text" res = markdownify(message) res.should == 'Some text, then a line break and a link
joindiaspora.com
some more text' end end describe '#person_link' do before do @person = Factory(:person) end it 'includes the name of the person if they have a first name' do person_link(@person).should include @person.profile.first_name end it 'uses diaspora handle if the person has no first or last name' do @person.profile.first_name = nil @person.profile.last_name = nil person_link(@person).should include @person.diaspora_handle end it 'uses diaspora handle if first name and first name are rails#blank?' do @person.profile.first_name = " " @person.profile.last_name = " " person_link(@person).should include @person.diaspora_handle end end context 'performance' do before do @message = "HHello,Hello_, I _am a strong robot.*Hello, I am *a strong robot.Hello, I am a strong robot.Hello, I am a strong robot.Hello, I am a strong robot.Hello, I am a **strong robot.Hello, I am _a _strong *robot**.Hello*, I am a strong " end it 'is sub millisecond' do Benchmark.realtime{ markdownify(@message) }.should < 0.001 end end end end