2014-01-04 01:18:30 +01:00
/*global Dict */
2013-12-04 17:16:08 +01:00
var assert = require ( 'assert' ) ;
2014-01-17 21:08:45 +01:00
var path = require ( 'path' ) ;
var fs = require ( 'fs' ) ;
2014-01-24 22:52:37 +01:00
set _global ( 'page_params' , { realm _emoji : { } } ) ;
2013-12-04 17:16:08 +01:00
add _dependencies ( {
_ : 'third/underscore/underscore.js' ,
2014-01-04 01:18:30 +01:00
marked : 'third/marked/lib/marked.js' ,
2014-01-24 22:52:37 +01:00
Dict : 'js/dict.js' ,
emoji : 'js/emoji.js'
2013-12-04 17:16:08 +01:00
} ) ;
2014-01-16 20:18:55 +01:00
var doc = "" ;
set _global ( 'document' , doc ) ;
2013-12-04 17:16:08 +01:00
set _global ( '$' , function ( obj ) {
if ( typeof obj === 'function' ) {
// Run on-load setup
obj ( ) ;
} else if ( typeof obj === 'string' ) {
2014-01-16 20:18:55 +01:00
// $(document).on usage
2013-12-04 17:16:08 +01:00
// Selector usage
return { on : function ( ) { } } ;
}
} ) ;
2014-01-06 23:42:52 +01:00
set _global ( 'page_params' , {
2014-01-24 21:48:56 +01:00
realm _filters : [ [ "#(?P<id>[0-9]{2,8})" , "https://trac.zulip.net/ticket/%(id)s" ] ,
2014-01-24 22:02:42 +01:00
[ "ZBUG_(?P<id>[0-9]{2,8})" , "https://trac2.zulip.net/ticket/%(id)s" ] ,
[ "ZGROUP_(?P<id>[0-9]{2,8}):(?P<zone>[0-9]{1,8})" , "https://zone_%(zone)s.zulip.net/ticket/%(id)s" ] ]
2014-01-06 23:42:52 +01:00
} ) ;
2014-01-04 01:18:30 +01:00
set _global ( 'people_by_name_dict' , Dict . from ( { 'Cordelia Lear' : { full _name : 'Cordelia Lear' , email : 'cordelia@zulip.com' } } ) ) ;
2013-12-04 17:16:08 +01:00
var echo = require ( 'js/echo.js' ) ;
2014-01-17 21:08:45 +01:00
var bugdown _data = JSON . parse ( fs . readFileSync ( path . join ( _ _dirname , '../../../fixtures/bugdown-data.json' ) , 'utf8' , 'r' ) ) ;
2013-12-04 17:16:08 +01:00
( function test _bugdown _detection ( ) {
var no _markup = [
"This is a plaintext message" ,
"This is a plaintext: message" ,
"This is a :plaintext message" ,
"This is a :plaintext message: message" ,
"Contains a not an image.jpeg/ok file" ,
"Contains a not an http://www.google.com/ok/image.png/stop file" ,
"No png to be found here, a png" ,
"No user mention **leo**" ,
2014-01-03 22:51:00 +01:00
"No user mention @what there" ,
2014-01-04 00:21:06 +01:00
"We like to code\n~~~\ndef code():\n we = \"like to do\"\n~~~" ,
"This is a\nmultiline :emoji: here\n message" ,
2014-01-04 01:18:30 +01:00
"This is an :emoji: message" ,
"User Mention @**leo**" ,
"User Mention @**leo f**" ,
"User Mention @**leo with some name**"
2013-12-04 17:16:08 +01:00
] ;
var markup = [
"Contains a https://zulip.com/image.png file" ,
"Contains a https://zulip.com/image.jpg file" ,
"https://zulip.com/image.jpg" ,
"also https://zulip.com/image.jpg" ,
"https://zulip.com/image.jpg too" ,
"Contains a zulip.com/foo.jpeg file" ,
"Contains a https://zulip.com/image.png file" ,
"twitter url https://twitter.com/jacobian/status/407886996565016579" ,
"https://twitter.com/jacobian/status/407886996565016579" ,
"then https://twitter.com/jacobian/status/407886996565016579" ,
"twitter url http://twitter.com/jacobian/status/407886996565016579" ,
"youtube url https://www.youtube.com/watch?v=HHZ8iqswiCw&feature=youtu.be&a" ,
"This contains !gravatar(leo@zulip.com)" ,
"And an avatar !avatar(leo@zulip.com) is here"
] ;
no _markup . forEach ( function ( content ) {
assert . equal ( echo . contains _bugdown ( content ) , false ) ;
} ) ;
markup . forEach ( function ( content ) {
assert . equal ( echo . contains _bugdown ( content ) , true ) ;
} ) ;
} ( ) ) ;
2014-01-17 21:08:45 +01:00
( function test _marked _shared ( ) {
var tests = bugdown _data . regular _tests ;
tests . forEach ( function ( test ) {
console . log ( "Doing " + test . name ) ;
var output = echo . apply _markdown ( test . input ) ;
if ( test . bugdown _matches _marked ) {
assert . equal ( test . expected _output , output ) ;
} else {
assert . notEqual ( test . expected _output , output ) ;
}
} ) ;
} ( ) ) ;
2013-12-04 17:16:08 +01:00
( function test _marked ( ) {
var test _cases = [
{ input : 'hello' , expected : '<p>hello</p>' } ,
{ input : 'hello there' , expected : '<p>hello there</p>' } ,
{ input : 'hello **bold** for you' , expected : '<p>hello <strong>bold</strong> for you</p>' } ,
{ input : '__hello__' , expected : '<p>__hello__</p>' } ,
2014-01-21 20:46:43 +01:00
{ input : '\n```\nfenced code\n```\n\nand then after\n' , expected : '<div class="codehilite"><pre>fenced code\n</pre></div>\n\n\n<p>and then after</p>' } ,
2013-12-04 17:16:08 +01:00
{ input : '* a\n* list \n* here' ,
expected : '<ul>\n<li>a</li>\n<li>list </li>\n<li>here</li>\n</ul>' } ,
{ input : 'Some text first\n* a\n* list \n* here\n\nand then after' ,
expected : '<p>Some text first</p>\n<ul>\n<li>a</li>\n<li>list </li>\n<li>here</li>\n</ul>\n<p>and then after</p>' } ,
{ input : '1. an\n2. ordered \n3. list' ,
2014-01-03 22:51:00 +01:00
expected : '<p>1. an</p>\n<p>2. ordered </p>\n<p>3. list</p>' } ,
{ input : '\n~~~quote\nquote this for me\n~~~\nthanks\n' ,
2014-01-21 20:46:43 +01:00
expected : '<blockquote>\n<p>quote this for me</p>\n</blockquote>\n\n\n<p>thanks</p>' } ,
2014-01-04 01:18:30 +01:00
{ input : 'This is a @**Cordelia Lear** mention' ,
expected : '<p>This is a <span class="user-mention" data-user-email="cordelia@zulip.com">@Cordelia Lear</span> mention</p>' } ,
2014-01-24 22:52:37 +01:00
{ input : 'This is an :poop: message' ,
expected : '<p>This is an <img alt=":poop:" class="emoji" src="static/third/gemoji/images/emoji/poop.png" title=":poop:"> message</p>' } ,
2014-01-06 23:42:52 +01:00
{ input : 'This is a realm filter #1234 with text after it' ,
2014-01-24 22:02:42 +01:00
expected : '<p>This is a realm filter <a href="https://trac.zulip.net/ticket/1234" target="_blank" title="https://trac.zulip.net/ticket/1234">#1234</a> with text after it</p>' } ,
{ input : 'This is a realm filter with ZGROUP_123:45 groups' ,
expected : '<p>This is a realm filter with <a href="https://zone_45.zulip.net/ticket/123" target="_blank" title="https://zone_45.zulip.net/ticket/123">ZGROUP_123:45</a> groups</p>' }
2013-12-04 17:16:08 +01:00
] ;
test _cases . forEach ( function ( test _case ) {
var input = test _case . input ;
var expected = test _case . expected ;
var output = echo . apply _markdown ( input ) ;
assert . equal ( expected , output ) ;
} ) ;
2014-01-24 21:48:56 +01:00
} ( ) ) ;
( function test _subject _links ( ) {
var message = { subject : "No links here" } ;
echo . _add _subject _links ( message ) ;
assert . equal ( message . subject _links . length , [ ] ) ;
message = { subject : "One #123 link here" } ;
echo . _add _subject _links ( message ) ;
assert . equal ( message . subject _links . length , 1 ) ;
assert . equal ( message . subject _links [ 0 ] , "https://trac.zulip.net/ticket/123" ) ;
message = { subject : "Two #123 #456 link here" } ;
echo . _add _subject _links ( message ) ;
assert . equal ( message . subject _links . length , 2 ) ;
assert . equal ( message . subject _links [ 0 ] , "https://trac.zulip.net/ticket/123" ) ;
assert . equal ( message . subject _links [ 1 ] , "https://trac.zulip.net/ticket/456" ) ;
message = { subject : "New ZBUG_123 link here" } ;
echo . _add _subject _links ( message ) ;
assert . equal ( message . subject _links . length , 1 ) ;
assert . equal ( message . subject _links [ 0 ] , "https://trac2.zulip.net/ticket/123" ) ;
message = { subject : "New ZBUG_123 with #456 link here" } ;
echo . _add _subject _links ( message ) ;
assert . equal ( message . subject _links . length , 2 ) ;
assert ( message . subject _links . indexOf ( "https://trac2.zulip.net/ticket/123" ) !== - 1 ) ;
assert ( message . subject _links . indexOf ( "https://trac.zulip.net/ticket/456" ) !== - 1 ) ;
2014-01-24 22:02:42 +01:00
message = { subject : "One ZGROUP_123:45 link here" } ;
echo . _add _subject _links ( message ) ;
assert . equal ( message . subject _links . length , 1 ) ;
assert . equal ( message . subject _links [ 0 ] , "https://zone_45.zulip.net/ticket/123" ) ;
2013-12-04 17:16:08 +01:00
} ( ) ) ;
2014-01-27 17:06:59 +01:00
( function test _message _flags ( ) {
var input = "/me is testing this" ;
var message = { subject : "No links here" , content : echo . apply _markdown ( input ) , raw _content : input } ;
echo . _add _message _flags ( message ) ;
assert . equal ( message . flags . length , 2 ) ;
assert ( message . flags . indexOf ( 'read' ) !== - 1 ) ;
assert ( message . flags . indexOf ( 'is_me_message' ) !== - 1 ) ;
} ( ) ) ;