Clean up EventsHelper spec
This commit is contained in:
parent
459af7ff65
commit
05bbad5817
1 changed files with 48 additions and 47 deletions
|
@ -1,44 +1,44 @@
|
||||||
require 'spec_helper'
|
require 'spec_helper'
|
||||||
|
|
||||||
describe EventsHelper do
|
describe EventsHelper do
|
||||||
include ApplicationHelper
|
describe '#event_note' do
|
||||||
include GitlabMarkdownHelper
|
before do
|
||||||
|
allow(helper).to receive(:current_user).and_return(double)
|
||||||
let(:current_user) { create(:user, email: "current@email.com") }
|
end
|
||||||
|
|
||||||
it 'should display one line of plain text without alteration' do
|
it 'should display one line of plain text without alteration' do
|
||||||
input = 'A short, plain note'
|
input = 'A short, plain note'
|
||||||
expect(event_note(input)).to match(input)
|
expect(helper.event_note(input)).to match(input)
|
||||||
expect(event_note(input)).not_to match(/\.\.\.\z/)
|
expect(helper.event_note(input)).not_to match(/\.\.\.\z/)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should display inline code' do
|
it 'should display inline code' do
|
||||||
input = 'A note with `inline code`'
|
input = 'A note with `inline code`'
|
||||||
expected = 'A note with <code>inline code</code>'
|
expected = 'A note with <code>inline code</code>'
|
||||||
|
|
||||||
expect(event_note(input)).to match(expected)
|
expect(helper.event_note(input)).to match(expected)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should truncate a note with multiple paragraphs' do
|
it 'should truncate a note with multiple paragraphs' do
|
||||||
input = "Paragraph 1\n\nParagraph 2"
|
input = "Paragraph 1\n\nParagraph 2"
|
||||||
expected = 'Paragraph 1...'
|
expected = 'Paragraph 1...'
|
||||||
|
|
||||||
expect(event_note(input)).to match(expected)
|
expect(helper.event_note(input)).to match(expected)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should display the first line of a code block' do
|
it 'should display the first line of a code block' do
|
||||||
input = "```\nCode block\nwith two lines\n```"
|
input = "```\nCode block\nwith two lines\n```"
|
||||||
expected = %r{<pre.+><code>Code block\.\.\.</code></pre>}
|
expected = %r{<pre.+><code>Code block\.\.\.</code></pre>}
|
||||||
|
|
||||||
expect(event_note(input)).to match(expected)
|
expect(helper.event_note(input)).to match(expected)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should truncate a single long line of text' do
|
it 'should truncate a single long line of text' do
|
||||||
text = 'The quick brown fox jumped over the lazy dog twice' # 50 chars
|
text = 'The quick brown fox jumped over the lazy dog twice' # 50 chars
|
||||||
input = "#{text}#{text}#{text}#{text}" # 200 chars
|
input = text * 4
|
||||||
expected = "#{text}#{text}".sub(/.{3}/, '...')
|
expected = (text * 2).sub(/.{3}/, '...')
|
||||||
|
|
||||||
expect(event_note(input)).to match(expected)
|
expect(helper.event_note(input)).to match(expected)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should preserve a link href when link text is truncated' do
|
it 'should preserve a link href when link text is truncated' do
|
||||||
|
@ -48,8 +48,8 @@ describe EventsHelper do
|
||||||
input << link_url
|
input << link_url
|
||||||
expected_link_text = 'http://example...</a>'
|
expected_link_text = 'http://example...</a>'
|
||||||
|
|
||||||
expect(event_note(input)).to match(link_url)
|
expect(helper.event_note(input)).to match(link_url)
|
||||||
expect(event_note(input)).to match(expected_link_text)
|
expect(helper.event_note(input)).to match(expected_link_text)
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should preserve code color scheme' do
|
it 'should preserve code color scheme' do
|
||||||
|
@ -59,6 +59,7 @@ describe EventsHelper do
|
||||||
" <span class=\"s1\">\'hello world\'</span>\n" \
|
" <span class=\"s1\">\'hello world\'</span>\n" \
|
||||||
"<span class=\"k\">end</span>" \
|
"<span class=\"k\">end</span>" \
|
||||||
'</code></pre>'
|
'</code></pre>'
|
||||||
expect(event_note(input)).to eq(expected)
|
expect(helper.event_note(input)).to eq(expected)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue