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
Boxiang Sun
gitlab-ce
Commits
4d7b44b5
Commit
4d7b44b5
authored
Nov 16, 2016
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add specs for testing authorization and deny of chat user
parent
6f714dfb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
81 additions
and
0 deletions
+81
-0
changelogs/unreleased/add-chat-names.yml
changelogs/unreleased/add-chat-names.yml
+4
-0
spec/features/profiles/chat_names_spec.rb
spec/features/profiles/chat_names_spec.rb
+77
-0
No files found.
changelogs/unreleased/add-chat-names.yml
0 → 100644
View file @
4d7b44b5
---
title
:
Allow to connect Chat account with GitLab
merge_request
:
7450
author
:
spec/features/profiles/chat_names_spec.rb
0 → 100644
View file @
4d7b44b5
require
'rails_helper'
feature
'Profile > Chat'
,
feature:
true
do
given
(
:user
)
{
create
(
:user
)
}
given
(
:service
)
{
create
(
:service
)
}
before
do
login_as
(
user
)
end
describe
'uses authorization link'
do
given
(
:params
)
do
{
team_id:
'T00'
,
team_domain:
'my_chat_team'
,
user_id:
'U01'
,
user_name:
'my_chat_user'
}
end
given!
(
:authorize_url
)
{
ChatNames
::
AuthorizeUserService
.
new
(
service
,
params
).
execute
}
given
(
:authorize_path
)
{
URI
.
parse
(
authorize_url
).
request_uri
}
before
do
visit
authorize_path
end
context
'clicks authorize'
do
before
do
click_button
'Authorize'
end
scenario
'goes to list of chat names and see chat account'
do
expect
(
page
.
current_path
).
to
eq
(
profile_chat_names_path
)
expect
(
page
).
to
have_content
(
'my_chat_team'
)
expect
(
page
).
to
have_content
(
'my_chat_user'
)
end
scenario
'second use of link is denied'
do
visit
authorize_path
expect
(
page
).
to
have_http_status
(
:not_found
)
end
end
context
'clicks deny'
do
before
do
click_button
'Deny'
end
scenario
'goes to list of chat names and do not see chat account'
do
expect
(
page
.
current_path
).
to
eq
(
profile_chat_names_path
)
expect
(
page
).
not_to
have_content
(
'my_chat_team'
)
expect
(
page
).
not_to
have_content
(
'my_chat_user'
)
end
scenario
'second use of link is denied'
do
visit
authorize_path
expect
(
page
).
to
have_http_status
(
:not_found
)
end
end
end
describe
'visits chat accounts'
do
given!
(
:chat_name
)
{
create
(
:chat_name
,
user:
user
,
service:
service
)
}
before
do
visit
profile_chat_names_path
end
scenario
'sees chat user'
do
expect
(
page
).
to
have_content
(
chat_name
.
team_domain
)
expect
(
page
).
to
have_content
(
chat_name
.
chat_name
)
end
scenario
'removes chat account'
do
click_link
'Remove'
expect
(
page
).
to
have_content
(
"You don't have any active chat names."
)
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