2013-06-20 13:58:54 -04:00
/*global sanitizeHtml:true */
2013-06-18 18:03:36 -04:00
2013-06-21 11:36:33 -04:00
module ( "Discourse.Markdown" , {
setup : function ( ) {
Discourse . SiteSettings . traditional _markdown _linebreaks = false ;
}
} ) ;
2013-06-18 18:03:36 -04:00
var cooked = function ( input , expected , text ) {
2013-08-08 18:14:12 -04:00
var result = Discourse . Markdown . cook ( input , { mentionLookup : false , sanitize : true } ) ;
equal ( result , expected , text ) ;
2013-06-18 18:03:36 -04:00
} ;
var cookedOptions = function ( input , opts , expected , text ) {
equal ( Discourse . Markdown . cook ( input , opts ) , expected , text ) ;
2013-06-21 14:06:20 -04:00
} ;
2013-06-18 18:03:36 -04:00
test ( "basic cooking" , function ( ) {
cooked ( "hello" , "<p>hello</p>" , "surrounds text with paragraphs" ) ;
2013-06-21 11:36:33 -04:00
} ) ;
test ( "Line Breaks" , function ( ) {
var input = "1\n2\n3" ;
2013-08-08 18:14:12 -04:00
cooked ( input , "<p>1<br>2<br>3</p>" , "automatically handles trivial newlines" ) ;
2013-06-21 11:36:33 -04:00
var traditionalOutput = "<p>1\n2\n3</p>" ;
cookedOptions ( input ,
{ traditional _markdown _linebreaks : true } ,
traditionalOutput ,
2013-06-21 14:06:20 -04:00
"It supports traditional markdown via an option" ) ;
2013-06-21 11:36:33 -04:00
Discourse . SiteSettings . traditional _markdown _linebreaks = true ;
2013-06-21 14:06:20 -04:00
cooked ( input , traditionalOutput , "It supports traditional markdown via a Site Setting" ) ;
2013-06-21 11:36:33 -04:00
2013-06-18 18:03:36 -04:00
} ) ;
test ( "Links" , function ( ) {
2013-08-08 18:14:12 -04:00
2013-06-18 18:03:36 -04:00
cooked ( "Youtube: http://www.youtube.com/watch?v=1MrpeBRkM5A" ,
'<p>Youtube: <a href="http://www.youtube.com/watch?v=1MrpeBRkM5A">http://www.youtube.com/watch?v=1MrpeBRkM5A</a></p>' ,
"allows links to contain query params" ) ;
cooked ( "Derpy: http://derp.com?__test=1" ,
2013-08-08 18:14:12 -04:00
'<p>Derpy: <a href="http://derp.com?__test=1">http://derp.com?__test=1</a></p>' ,
"works with double underscores in urls" ) ;
cooked ( "Derpy: http://derp.com?_test_=1" ,
'<p>Derpy: <a href="http://derp.com?_test_=1">http://derp.com?_test_=1</a></p>' ,
"works with underscores in urls" ) ;
2013-06-18 18:03:36 -04:00
cooked ( "Atwood: www.codinghorror.com" ,
'<p>Atwood: <a href="http://www.codinghorror.com">www.codinghorror.com</a></p>' ,
"autolinks something that begins with www" ) ;
cooked ( "Atwood: http://www.codinghorror.com" ,
'<p>Atwood: <a href="http://www.codinghorror.com">http://www.codinghorror.com</a></p>' ,
"autolinks a URL with http://www" ) ;
cooked ( "EvilTrout: http://eviltrout.com" ,
'<p>EvilTrout: <a href="http://eviltrout.com">http://eviltrout.com</a></p>' ,
"autolinks a URL" ) ;
2013-08-21 22:49:55 -04:00
cooked ( "EvilTrout: http://eviltrout.com hello" ,
'<p>EvilTrout: <a href="http://eviltrout.com">http://eviltrout.com</a> hello</p>' ,
"autolinks with trailing text" ) ;
2013-06-18 18:03:36 -04:00
cooked ( "here is [an example](http://twitter.com)" ,
'<p>here is <a href="http://twitter.com">an example</a></p>' ,
"supports markdown style links" ) ;
cooked ( "Batman: http://en.wikipedia.org/wiki/The_Dark_Knight_(film)" ,
'<p>Batman: <a href="http://en.wikipedia.org/wiki/The_Dark_Knight_(film)">http://en.wikipedia.org/wiki/The_Dark_Knight_(film)</a></p>' ,
"autolinks a URL with parentheses (like Wikipedia)" ) ;
2013-08-08 18:14:12 -04:00
cooked ( "Here's a tweet:\nhttps://twitter.com/evil_trout/status/345954894420787200" ,
"<p>Here's a tweet:<br><a href=\"https://twitter.com/evil_trout/status/345954894420787200\" class=\"onebox\">https://twitter.com/evil_trout/status/345954894420787200</a></p>" ,
"It doesn't strip the new line." ) ;
cooked ( "[3]: http://eviltrout.com" , "" , "It doesn't autolink markdown link references" ) ;
cooked ( "http://discourse.org and http://discourse.org/another_url and http://www.imdb.com/name/nm2225369" ,
"<p><a href=\"http://discourse.org\">http://discourse.org</a> and " +
"<a href=\"http://discourse.org/another_url\">http://discourse.org/another_url</a> and " +
"<a href=\"http://www.imdb.com/name/nm2225369\">http://www.imdb.com/name/nm2225369</a></p>" ,
'allows multiple links on one line' ) ;
2013-06-18 18:03:36 -04:00
} ) ;
test ( "Quotes" , function ( ) {
2013-08-21 22:36:02 -04:00
cookedOptions ( "[quote=\"eviltrout, post: 1\"]\na quote\n\nsecond line\n[/quote]" ,
{ topicId : 2 } ,
"<p><aside class=\"quote\" data-post=\"1\"><div class=\"title\"><div class=\"quote-controls\"></div>eviltrout said:</div><blockquote>\n" +
"a quote<br/><br/>second line<br/></blockquote></aside></p>" ,
"works with multiple lines" ) ;
2013-06-18 18:03:36 -04:00
cookedOptions ( "1[quote=\"bob, post:1\"]my quote[/quote]2" ,
{ topicId : 2 , lookupAvatar : function ( name ) { return "" + name ; } } ,
2013-08-21 22:36:02 -04:00
"<p>1</p>\n\n<p><aside class=\"quote\" data-post=\"1\"><div class=\"title\"><div class=\"quote-controls\"></div>bob\n" +
"bob said:</div><blockquote>my quote</blockquote></aside></p>\n\n<p>2</p>" ,
2013-06-18 18:03:36 -04:00
"handles quotes properly" ) ;
cookedOptions ( "1[quote=\"bob, post:1\"]my quote[/quote]2" ,
{ topicId : 2 , lookupAvatar : function ( name ) { } } ,
2013-08-21 22:36:02 -04:00
"<p>1</p>\n\n<p><aside class=\"quote\" data-post=\"1\"><div class=\"title\"><div class=\"quote-controls\"></div>bob said:" +
"</div><blockquote>my quote</blockquote></aside></p>\n\n<p>2</p>" ,
2013-06-18 18:03:36 -04:00
"includes no avatar if none is found" ) ;
2013-06-26 18:41:48 -04:00
} ) ;
2013-06-18 18:03:36 -04:00
test ( "Mentions" , function ( ) {
cookedOptions ( "Hello @sam" , { mentionLookup : ( function ( ) { return true ; } ) } ,
2013-08-08 18:14:12 -04:00
"<p>Hello <a class=\"mention\" href=\"/users/sam\">@sam</a></p>" ,
2013-06-18 18:03:36 -04:00
"translates mentions to links" ) ;
2013-08-08 18:14:12 -04:00
cooked ( "Hello @EvilTrout" , "<p>Hello <span class=\"mention\">@EvilTrout</span></p>" , "adds a mention class" ) ;
2013-06-18 18:03:36 -04:00
cooked ( "robin@email.host" , "<p>robin@email.host</p>" , "won't add mention class to an email address" ) ;
cooked ( "hanzo55@yahoo.com" , "<p>hanzo55@yahoo.com</p>" , "won't be affected by email addresses that have a number before the @ symbol" ) ;
2013-08-08 18:14:12 -04:00
cooked ( "@EvilTrout yo" , "<p><span class=\"mention\">@EvilTrout</span> yo</p>" , "it handles mentions at the beginning of a string" ) ;
cooked ( "yo\n@EvilTrout" , "<p>yo<br><span class=\"mention\">@EvilTrout</span></p>" , "it handles mentions at the beginning of a new line" ) ;
2013-06-18 18:03:36 -04:00
cooked ( "`evil` @EvilTrout `trout`" ,
2013-08-08 18:14:12 -04:00
"<p><code>evil</code> <span class=\"mention\">@EvilTrout</span> <code>trout</code></p>" ,
2013-06-18 18:03:36 -04:00
"deals correctly with multiple <code> blocks" ) ;
2013-08-08 18:14:12 -04:00
cooked ( "```\na @test\n```" , "<p><pre><code class=\"lang-auto\">a @test</code></pre></p>" , "should not do mentions within a code block." ) ;
2013-06-18 18:03:36 -04:00
2013-08-21 16:10:16 -04:00
cooked ( "> foo bar baz @eviltrout" ,
"<blockquote><p>foo bar baz <span class=\"mention\">@eviltrout</span></p></blockquote>" ,
"handles mentions in simple quotes" ) ;
cooked ( "> foo bar baz @eviltrout ohmagerd\nlook at this" ,
"<blockquote><p>foo bar baz <span class=\"mention\">@eviltrout</span></p><p> ohmagerd\nlook at this</p></blockquote>" ,
"does mentions properly with trailing text within a simple quote" ) ;
2013-06-18 18:03:36 -04:00
} ) ;
test ( "Oneboxing" , function ( ) {
var matches = function ( input , regexp ) {
return Discourse . Markdown . cook ( input , { mentionLookup : false } ) . match ( regexp ) ;
} ;
ok ( ! matches ( "- http://www.textfiles.com/bbs/MINDVOX/FORUMS/ethics\n\n- http://drupal.org" , /onebox/ ) ,
2013-08-08 18:14:12 -04:00
"doesn't onebox a link within a list" ) ;
2013-06-18 18:03:36 -04:00
ok ( matches ( "http://test.com" , /onebox/ ) , "adds a onebox class to a link on its own line" ) ;
ok ( matches ( "http://test.com\nhttp://test2.com" , /onebox[\s\S]+onebox/m ) , "supports multiple links" ) ;
ok ( ! matches ( "http://test.com bob" , /onebox/ ) , "doesn't onebox links that have trailing text" ) ;
cooked ( "http://en.wikipedia.org/wiki/Homicide:_Life_on_the_Street" ,
2013-08-08 18:14:12 -04:00
"<p><a href=\"http://en.wikipedia.org/wiki/Homicide:_Life_on_the_Street\" class=\"onebox\"" +
2013-06-18 18:03:36 -04:00
">http://en.wikipedia.org/wiki/Homicide:_Life_on_the_Street</a></p>" ,
"works with links that have underscores in them" ) ;
} ) ;
2013-08-08 18:14:12 -04:00
test ( "Code Blocks" , function ( ) {
cooked ( "```\ntest\n```" ,
"<p><pre><code class=\"lang-auto\">test</code></pre></p>" ,
"it supports basic code blocks" ) ;
cooked ( "```json\n{hello: 'world'}\n```\ntrailing" ,
"<p><pre><code class=\"json\">{hello: 'world'}</code></pre></p>\n\n<p>\ntrailing</p>" ,
"It does not truncate text after a code block." ) ;
cooked ( "```json\nline 1\n\nline 2\n\n\nline3\n```" ,
"<p><pre><code class=\"json\">line 1\n\nline 2\n\n\nline3</code></pre></p>" ,
"it maintains new lines inside a code block." ) ;
cooked ( "hello\nworld\n```json\nline 1\n\nline 2\n\n\nline3\n```" ,
"<p>hello<br>world<br></p>\n\n<p><pre><code class=\"json\">line 1\n\nline 2\n\n\nline3</code></pre></p>" ,
"it maintains new lines inside a code block with leading content." ) ;
cooked ( "```text\n<header>hello</header>\n```" ,
"<p><pre><code class=\"text\"><header>hello</header></code></pre></p>" ,
"it escapes code in the code block" ) ;
cooked ( "```ruby\n# cool\n```" ,
"<p><pre><code class=\"ruby\"># cool</code></pre></p>" ,
"it supports changing the language" ) ;
cooked ( " ```\n hello\n ```" ,
"<pre><code>```\nhello\n```</code></pre>" ,
"only detect ``` at the begining of lines" ) ;
} ) ;
2013-06-19 15:06:23 -04:00
test ( "SanitizeHTML" , function ( ) {
equal ( sanitizeHtml ( "<div><script>alert('hi');</script></div>" ) , "<div></div>" ) ;
equal ( sanitizeHtml ( "<div><p class=\"funky\" wrong='1'>hello</p></div>" ) , "<div><p class=\"funky\">hello</p></div>" ) ;
2013-08-08 18:14:12 -04:00
cooked ( "hello<script>alert(42)</script>" , "<p>hello</p>" , "it sanitizes while cooking" ) ;
cooked ( "<a href='http://disneyland.disney.go.com/'>disney</a> <a href='http://reddit.com'>reddit</a>" ,
"<p><a href=\"http://disneyland.disney.go.com/\">disney</a> <a href=\"http://reddit.com\">reddit</a></p>" ,
"we can embed proper links" ) ;
2013-06-19 15:06:23 -04:00
2013-06-24 16:25:08 -04:00
} ) ;
2013-06-26 18:41:48 -04:00
test ( "URLs in BBCode tags" , function ( ) {
cooked ( "[img]http://eviltrout.com/eviltrout.png[/img][img]http://samsaffron.com/samsaffron.png[/img]" ,
"<p><img src=\"http://eviltrout.com/eviltrout.png\"><img src=\"http://samsaffron.com/samsaffron.png\"></p>" ,
"images are properly parsed" ) ;
cooked ( "[url]http://discourse.org[/url]" ,
"<p><a href=\"http://discourse.org\">http://discourse.org</a></p>" ,
"links are properly parsed" ) ;
cooked ( "[url=http://discourse.org]discourse[/url]" ,
"<p><a href=\"http://discourse.org\">discourse</a></p>" ,
"named links are properly parsed" ) ;
} ) ;