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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
fcbb14f6
Commit
fcbb14f6
authored
Jun 11, 2016
by
Alexander Matyushentsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move issue rendering tests into separate contexts
parent
5328930e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
21 deletions
+37
-21
spec/features/atom/dashboard_issues_spec.rb
spec/features/atom/dashboard_issues_spec.rb
+37
-21
No files found.
spec/features/atom/dashboard_issues_spec.rb
View file @
fcbb14f6
...
...
@@ -5,42 +5,58 @@ describe "Dashboard Issues Feed", feature: true do
let!
(
:user
)
{
create
(
:user
)
}
let!
(
:project1
)
{
create
(
:project
)
}
let!
(
:project2
)
{
create
(
:project
)
}
let!
(
:milestone1
)
{
create
(
:milestone
,
project:
project1
,
title:
'v1'
)
}
let!
(
:label1
)
{
create
(
:label
,
project:
project1
,
title:
'label1'
)
}
let!
(
:issue1
)
{
create
(
:issue
,
author:
user
,
assignee:
user
,
project:
project1
,
milestone:
milestone1
)
}
let!
(
:issue2
)
{
create
(
:issue
,
author:
user
,
assignee:
user
,
project:
project2
,
description:
'test desc'
)
}
before
do
project1
.
team
<<
[
user
,
:master
]
project2
.
team
<<
[
user
,
:master
]
issue1
.
labels
<<
label1
end
describe
"atom feed"
do
it
"should render atom feed via private token"
do
visit
issues_dashboard_path
(
:atom
,
private_token:
user
.
private_token
)
expect
(
response_headers
[
'Content-Type'
]).
to
have_content
(
'application/atom+xml'
)
expect
(
response_headers
[
'Content-Type'
]).
to
have_content
(
'application/atom+xml'
)
expect
(
body
).
to
have_selector
(
'title'
,
text:
"
#{
user
.
name
}
issues"
)
end
entry_1
=
find
(
:xpath
,
"//feed/entry[contains(summary/text(),'
#{
issue1
.
title
}
')]"
)
expect
(
entry_1
).
to
be_present
context
"issue with basic fields"
do
let!
(
:issue2
)
{
create
(
:issue
,
author:
user
,
assignee:
user
,
project:
project2
,
description:
'test desc'
)
}
it
"should render issue fields"
do
visit
issues_dashboard_path
(
:atom
,
private_token:
user
.
private_token
)
entry_2
=
find
(
:xpath
,
"//feed/entry[contains(summary/text(),'
#{
issue2
.
title
}
')]"
)
expect
(
entry_2
).
to
be_present
entry
=
find
(
:xpath
,
"//feed/entry[contains(summary/text(),'
#{
issue2
.
title
}
')]"
)
expect
(
entry_1
).
to
have_selector
(
'author email'
,
text:
issue1
.
author_email
)
expect
(
entry_1
).
to
have_selector
(
'assignee email'
,
text:
issue1
.
author_email
)
expect
(
entry_1
).
to
have_selector
(
'labels label'
,
text:
label1
.
title
)
expect
(
entry_1
).
to
have_selector
(
'milestone'
,
text:
milestone1
.
title
)
expect
(
entry_1
).
not_to
have_selector
(
'description'
)
expect
(
entry
).
to
be_present
expect
(
entry
).
to
have_selector
(
'author email'
,
text:
issue2
.
author_email
)
expect
(
entry
).
to
have_selector
(
'assignee email'
,
text:
issue2
.
author_email
)
expect
(
entry
).
not_to
have_selector
(
'labels'
)
expect
(
entry
).
not_to
have_selector
(
'milestone'
)
expect
(
entry
).
to
have_selector
(
'description'
,
text:
issue2
.
description
)
end
end
expect
(
entry_2
).
to
have_selector
(
'author email'
,
text:
issue2
.
author_email
)
expect
(
entry_2
).
to
have_selector
(
'assignee email'
,
text:
issue2
.
author_email
)
expect
(
entry_2
).
not_to
have_selector
(
'labels'
)
expect
(
entry_2
).
not_to
have_selector
(
'milestone'
)
expect
(
entry_2
).
to
have_selector
(
'description'
,
text:
issue1
.
description
)
context
"issue with label and milestone"
do
let!
(
:milestone1
)
{
create
(
:milestone
,
project:
project1
,
title:
'v1'
)
}
let!
(
:label1
)
{
create
(
:label
,
project:
project1
,
title:
'label1'
)
}
let!
(
:issue1
)
{
create
(
:issue
,
author:
user
,
assignee:
user
,
project:
project1
,
milestone:
milestone1
)
}
before
do
issue1
.
labels
<<
label1
end
it
"should render issue label and milestone info"
do
visit
issues_dashboard_path
(
:atom
,
private_token:
user
.
private_token
)
entry
=
find
(
:xpath
,
"//feed/entry[contains(summary/text(),'
#{
issue1
.
title
}
')]"
)
expect
(
entry
).
to
be_present
expect
(
entry
).
to
have_selector
(
'author email'
,
text:
issue1
.
author_email
)
expect
(
entry
).
to
have_selector
(
'assignee email'
,
text:
issue1
.
author_email
)
expect
(
entry
).
to
have_selector
(
'labels label'
,
text:
label1
.
title
)
expect
(
entry
).
to
have_selector
(
'milestone'
,
text:
milestone1
.
title
)
expect
(
entry
).
not_to
have_selector
(
'description'
)
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