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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
97cedc5d
Commit
97cedc5d
authored
Jul 20, 2015
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Break up SanitizationFilter feature specs
parent
3cafa743
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
16 deletions
+37
-16
spec/features/markdown_spec.rb
spec/features/markdown_spec.rb
+37
-16
No files found.
spec/features/markdown_spec.rb
View file @
97cedc5d
...
...
@@ -124,29 +124,52 @@ describe 'GitLab Markdown', feature: true do
describe
'HTML::Pipeline'
do
describe
'SanitizationFilter'
do
it
'uses a permissive whitelist'
do
aggregate_failures
do
expect
(
doc
).
to
have_selector
(
'b:contains("b tag")'
)
expect
(
doc
).
to
have_selector
(
'em:contains("em tag")'
)
expect
(
doc
).
to
have_selector
(
'code:contains("code tag")'
)
expect
(
doc
).
to
have_selector
(
'kbd:contains("s")'
)
expect
(
doc
).
to
have_selector
(
'strike:contains(Emoji)'
)
expect
(
doc
).
to
have_selector
(
'img[src*="smile.png"]'
)
expect
(
doc
).
to
have_selector
(
'br'
)
expect
(
doc
).
to
have_selector
(
'hr'
)
end
it
'permits b elements'
do
expect
(
doc
).
to
have_selector
(
'b:contains("b tag")'
)
end
it
'permits em elements'
do
expect
(
doc
).
to
have_selector
(
'em:contains("em tag")'
)
end
it
'permits code elements'
do
expect
(
doc
).
to
have_selector
(
'code:contains("code tag")'
)
end
it
'permits kbd elements'
do
expect
(
doc
).
to
have_selector
(
'kbd:contains("s")'
)
end
it
'permits strike elements'
do
expect
(
doc
).
to
have_selector
(
'strike:contains(Emoji)'
)
end
it
'permits img elements'
do
expect
(
doc
).
to
have_selector
(
'img[src*="smile.png"]'
)
end
it
'permits br elements'
do
expect
(
doc
).
to
have_selector
(
'br'
)
end
it
'permits hr elements'
do
expect
(
doc
).
to
have_selector
(
'hr'
)
end
it
'permits span elements'
do
expect
(
doc
).
to
have_selector
(
'span:contains("span tag")'
)
end
it
'permits
table alignment
'
do
it
'permits
style attribute in th elements
'
do
aggregate_failures
do
expect
(
doc
.
at_css
(
'th:contains("Header")'
)[
'style'
]).
to
eq
'text-align: center'
expect
(
doc
.
at_css
(
'th:contains("Row")'
)[
'style'
]).
to
eq
'text-align: right'
expect
(
doc
.
at_css
(
'th:contains("Example")'
)[
'style'
]).
to
eq
'text-align: left'
end
end
it
'permits style attribute in td elements'
do
aggregate_failures
do
expect
(
doc
.
at_css
(
'td:contains("Foo")'
)[
'style'
]).
to
eq
'text-align: center'
expect
(
doc
.
at_css
(
'td:contains("Bar")'
)[
'style'
]).
to
eq
'text-align: right'
expect
(
doc
.
at_css
(
'td:contains("Baz")'
)[
'style'
]).
to
eq
'text-align: left'
...
...
@@ -154,8 +177,7 @@ describe 'GitLab Markdown', feature: true do
end
it
'removes `rel` attribute from links'
do
body
=
get_section
(
'sanitizationfilter'
)
expect
(
body
).
not_to
have_selector
(
'a[rel="bookmark"]'
)
expect
(
doc
).
not_to
have_selector
(
'a[rel="bookmark"]'
)
end
it
"removes `href` from `a` elements if it's fishy"
do
...
...
@@ -164,9 +186,8 @@ describe 'GitLab Markdown', feature: true do
end
describe
'Escaping'
do
let
(
:table
)
{
doc
.
css
(
'table'
).
last
.
at_css
(
'tbody'
)
}
it
'escapes non-tag angle brackets'
do
table
=
doc
.
css
(
'table'
).
last
.
at_css
(
'tbody'
)
expect
(
table
.
at_xpath
(
'.//tr[1]/td[3]'
).
inner_html
).
to
eq
'1 < 3 & 5'
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