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