require 'parslet/rig/rspec' require_relative '../../bristlecode.rb' module Bristlecode describe '.to_html' do def to_html(text) Bristlecode.to_html(text) end it 'leaves an empty string unchanged' do expect(to_html("")).to eq("") end it 'handles empty documents' do expect(to_html(" \t \n \n \t")).to eq("") end it 'handles special chars' do expect(to_html('&')).to eq('&') expect(to_html('>')).to eq('>') expect(to_html('<')).to eq('<') expect(to_html("'")).to eq(''') expect(to_html('"')).to eq('"') expect(to_html('/')).to eq('/') end it 'handles plain text just fine' do expect(to_html("plaintext")).to eq("plaintext") end it 'can bold stuff' do expect(to_html("[b]bold[/b]")).to eq("bold") end it 'can italic stuff' do expect(to_html("[i]italic[/i]")).to eq("italic") end it 'can nest tags' do doc = '[b] bold [i] italic [/i] bold [/b]' expected = 'bolditalicbold' out = to_html(doc) expect(out).to eq(expected) doc = '[i] italic [b] bold [/b] italic [/i]' expected = 'italicbolditalic' out = to_html(doc) expect(out).to eq(expected) end it 'auto-closes tags at eof' do expect(to_html("[b]bold")).to eq("bold") expect(to_html("[i]italic")).to eq("italic") end it 'can render simple links' do input = '[url]http://example.com[/url]' output = 'http://example.com' expect(to_html(input)).to eq(output) input = '[url] http://example.com [/url]' output = 'http://example.com' expect(to_html(input)).to eq(output) end it 'passes simple url contents opaquely' do input = '[url]http://x[b]y[/b]z[/url]' output = 'http://x[b]y[/b]z' expect(to_html(input)).to eq(output) end it 'handles urls with titles' do input = '[url=http://google.com]the google[/url]' output = 'the google' expect(to_html(input)).to eq(output) end it 'renders a linebreak' do expect(to_html('[br]')).to eq('
') end end describe Parser do let(:parser) { Parser.new } describe '#parse' do it 'can parse an empty string' do expect(parser).to parse('') end it 'can parse whitespace' do expect(parser).to parse(' ') end it 'can parse plain text' do expect(parser).to parse('this is some plain text') end end describe '#bold' do it 'can parse correct bold text syntax' do expect(parser.bold).to parse('[b]bolded contents here[/b]') expect(parser.bold).to parse('[b]bolded contents here[/B]') expect(parser.bold).to parse('[B]bolded contents here[/b]') expect(parser.bold).to parse('[B]bolded contents here[/B]') end it 'can parse an empty bold tag' do expect(parser.bold).to parse('[b][/b]') end it 'can parse nested tags' do expect(parser.bold).to parse('[b] one [b] two [/b] three [/b]') expect(parser.bold).to parse('[b] one [i] two [/i] three [/b]') end it 'can parse an unclosed tag' do expect(parser.bold).to parse('[b]bolded contents here') expect(parser.bold).to parse('[B]bolded contents here') end it 'fails non-bold text' do expect(parser.bold).not_to parse('this is not bold') end it 'fails dangling close tags' do expect(parser.bold).not_to parse('before [/b] after') end it 'fails nonsense tag' do expect(parser.bold).not_to parse('[bold]fake content[/bold]') end end describe '#italic' do it 'can parse correct italic text syntax' do expect(parser.italic).to parse('[i]italiced contents here[/i]') expect(parser.italic).to parse('[i]italiced contents here[/I]') expect(parser.italic).to parse('[I]italiced contents here[/i]') expect(parser.italic).to parse('[I]italiced contents here[/I]') end it 'can parse an empty italic tag' do expect(parser.italic).to parse('[i][/i]') end it 'can parse nested tags' do expect(parser.italic).to parse('[i] one [i] two [/i] three [/i]') expect(parser.italic).to parse('[i] one [b] two [/b] three [/i]') end it 'can parse an unclosed tag' do expect(parser.italic).to parse('[i]italiced contents here') expect(parser.italic).to parse('[I]italiced contents here') end it 'fails non-italic text' do expect(parser.italic).not_to parse('this is not italic') end it 'fails dangling close tags' do expect(parser.italic).not_to parse('before [/i] after') end it 'fails nonsense tag' do expect(parser.italic).not_to parse('[italic]fake content[/italic]') end end describe '#url' do it 'can parse correct urls' do expect(parser.url).to parse('[url]google.com[/url]') expect(parser.url).to parse('[url=google.com]google[/url]') end it 'can parse title subtrees' do expect(parser.url).to parse('[url=google.com]this is [b]google[/b] yo[/url]') end it "doesn't die on elements nested in simple urls" do expect(parser.url).to parse('[url]goog[b]le.c[/b]om[/url]') end it 'fails nested [url] tags' do expect(parser.url).not_to parse('[url]x[url]y[/url]z[/url]') end end describe '#linebreak' do it 'does its thing' do expect(parser.linebreak).to parse('[br]') end end end end