/*global module:true test:true ok:true visit:true expect:true exists:true count:true equal:true */
module("Discourse.BBCode");
var format = function(input, expected, text) {
equal(Discourse.BBCode.format(input), expected, text);
}
test('basic bbcode', function() {
format("[b]strong[/b]", "strong", "bolds text");
format("[i]emphasis[/i]", "emphasis", "italics text");
format("[u]underlined[/u]", "underlined", "underlines text");
format("[s]strikethrough[/s]", "strikethrough", "strikes-through text");
format("[code]\nx++\n[/code]", "
\nx++\n
", "makes code into pre");
format("[spoiler]it's a sled[/spoiler]", "it's a sled", "supports spoiler tags");
format("[img]http://eviltrout.com/eviltrout.png[/img]", "
", "links images");
format("[url]http://bettercallsaul.com[/url]", "http://bettercallsaul.com", "supports [url] without a title");
format("[email]eviltrout@mailinator.com[/email]", "eviltrout@mailinator.com", "supports [email] without a title");
});
test('lists', function() {
format("[ul][li]option one[/li][/ul]", "", "creates an ul");
format("[ol][li]option one[/li][/ol]", "- option one
", "creates an ol");
});
test('color', function() {
format("[color=#00f]blue[/color]", "blue", "supports [color=] with a short hex value");
format("[color=#ffff00]yellow[/color]", "yellow", "supports [color=] with a long hex value");
format("[color=red]red[/color]", "red", "supports [color=] with an html color");
format("[color=javascript:alert('wat')]noop[/color]", "noop", "it performs a noop on invalid input");
});
test('tags with arguments', function() {
format("[size=35]BIG[/size]", "BIG", "supports [size=]");
format("[url=http://bettercallsaul.com]better call![/url]", "better call!", "supports [url] with a title");
format("[email=eviltrout@mailinator.com]evil trout[/email]", "evil trout", "supports [email] with a title");
format("[u][i]abc[/i][/u]", "abc", "can nest tags");
format("[b]first[/b] [b]second[/b]", "first second", "can bold two things on the same line");
});