Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
05bbad58
Commit
05bbad58
authored
May 11, 2016
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up EventsHelper spec
parent
459af7ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
47 deletions
+48
-47
spec/helpers/events_helper_spec.rb
spec/helpers/events_helper_spec.rb
+48
-47
No files found.
spec/helpers/events_helper_spec.rb
View file @
05bbad58
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
)
end
let
(
:current_user
)
{
create
(
:user
,
email:
"current@email.com"
)
}
it
'should display one line of plain text without alteration'
do
input
=
'A short, plain note'
expect
(
helper
.
event_note
(
input
)).
to
match
(
input
)
expect
(
helper
.
event_note
(
input
)).
not_to
match
(
/\.\.\.\z/
)
end
it
'should display one line of plain text without alteration'
do
it
'should display inline code'
do
input
=
'A short, plain note'
input
=
'A note with `inline code`'
expect
(
event_note
(
input
)).
to
match
(
input
)
expected
=
'A note with <code>inline code</code>'
expect
(
event_note
(
input
)).
not_to
match
(
/\.\.\.\z/
)
end
it
'should display inline code'
do
expect
(
helper
.
event_note
(
input
)).
to
match
(
expected
)
input
=
'A note with `inline code`'
end
expected
=
'A note with <code>inline code</code>'
expect
(
event_note
(
input
)).
to
match
(
expected
)
it
'should truncate a note with multiple paragraphs'
do
end
input
=
"Paragraph 1
\n\n
Paragraph 2"
expected
=
'Paragraph 1...'
it
'should truncate a note with multiple paragraphs'
do
expect
(
helper
.
event_note
(
input
)).
to
match
(
expected
)
input
=
"Paragraph 1
\n\n
Paragraph 2"
end
expected
=
'Paragraph 1...'
expect
(
event_note
(
input
)).
to
match
(
expected
)
it
'should display the first line of a code block'
do
end
input
=
"```
\n
Code block
\n
with two lines
\n
```"
expected
=
%r{<pre.+><code>Code block
\.\.\.
</code></pre>}
it
'should display the first line of a code block'
do
expect
(
helper
.
event_note
(
input
)).
to
match
(
expected
)
input
=
"```
\n
Code block
\n
with two lines
\n
```"
end
expected
=
%r{<pre.+><code>Code block
\.\.\.
</code></pre>}
expect
(
event_note
(
input
)).
to
match
(
expected
)
it
'should truncate a single long line of text'
do
end
text
=
'The quick brown fox jumped over the lazy dog twice'
# 50 chars
input
=
text
*
4
expected
=
(
text
*
2
).
sub
(
/.{3}/
,
'...'
)
it
'should truncate a single long line of text'
do
expect
(
helper
.
event_note
(
input
)).
to
match
(
expected
)
text
=
'The quick brown fox jumped over the lazy dog twice'
# 50 chars
end
input
=
"
#{
text
}#{
text
}#{
text
}#{
text
}
"
# 200 chars
expected
=
"
#{
text
}#{
text
}
"
.
sub
(
/.{3}/
,
'...'
)
expect
(
event_note
(
input
)).
to
match
(
expected
)
it
'should preserve a link href when link text is truncated'
do
end
text
=
'The quick brown fox jumped over the lazy dog'
# 44 chars
input
=
"
#{
text
}#{
text
}#{
text
}
"
# 133 chars
it
'should preserve a link href when link text is truncated'
do
link_url
=
'http://example.com/foo/bar/baz'
# 30 chars
text
=
'The quick brown fox jumped over the lazy dog'
# 44 chars
input
<<
link_url
input
=
"
#{
text
}#{
text
}#{
text
}
"
# 133 chars
expected_link_text
=
'http://example...</a>'
link_url
=
'http://example.com/foo/bar/baz'
# 30 chars
input
<<
link_url
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
input
=
"```ruby
\n
def test
\n
'hello world'
\n
end
\n
```"
input
=
"```ruby
\n
def test
\n
'hello world'
\n
end
\n
```"
expected
=
'<pre class="code highlight js-syntax-highlight ruby">'
\
expected
=
'<pre class="code highlight js-syntax-highlight ruby">'
\
"<code><span class=
\"
k
\"
>def</span> <span class=
\"
nf
\"
>test</span>
\n
"
\
"<code><span class=
\"
k
\"
>def</span> <span class=
\"
nf
\"
>test</span>
\n
"
\
" <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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment