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
Jérome Perrin
gitlab-ce
Commits
40efb4eb
Commit
40efb4eb
authored
Apr 09, 2016
by
Alfredo Sumaran
Committed by
Jacob Schatz
Apr 16, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tests for autocomplete on a Merge Request
parent
a740f0bc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
29 deletions
+52
-29
spec/features/participants_autocomplete_spec.rb
spec/features/participants_autocomplete_spec.rb
+52
-29
No files found.
spec/features/participants_autocomplete_spec.rb
View file @
40efb4eb
...
@@ -5,49 +5,72 @@ feature 'Member autocomplete', feature: true do
...
@@ -5,49 +5,72 @@ feature 'Member autocomplete', feature: true do
let
(
:user
)
{
create
(
:user
)
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:participant
)
{
create
(
:user
)
}
let
(
:participant
)
{
create
(
:user
)
}
let
(
:author
)
{
create
(
:user
)
}
let
(
:author
)
{
create
(
:user
)
}
let
(
:issue
)
{
create
(
:issue
,
author:
author
,
project:
project
)
}
before
do
before
do
login_as
user
login_as
user
end
end
describe
'On a Issue'
,
js:
true
do
shared_examples
"open suggestions"
do
before
do
create
(
:note
,
note:
'ultralight beam'
,
noteable:
issue
,
author:
participant
)
visit_issue
(
project
,
issue
)
end
describe
'adding a new note'
do
describe
'when typing @'
do
before
do
sleep
1
page
.
within
(
'.new-note'
)
do
sleep
1
find
(
'#note_note'
).
native
.
send_keys
(
'@'
)
end
end
it
'suggestions are displayed'
do
it
'suggestions are displayed'
do
expect
(
page
).
to
have_selector
(
'.atwho-view'
,
visible:
true
)
expect
(
page
).
to
have_selector
(
'.atwho-view'
,
visible:
true
)
end
end
it
'author is a suggestion
'
do
it
'author is suggested
'
do
page
.
within
(
'.atwho-view'
,
visible:
true
)
do
page
.
within
(
'.atwho-view'
,
visible:
true
)
do
expect
(
page
).
to
have_content
(
author
.
username
)
expect
(
page
).
to
have_content
(
author
.
username
)
end
end
end
end
it
'participant is a suggestion
'
do
it
'participant is suggested
'
do
page
.
within
(
'.atwho-view'
,
visible:
true
)
do
page
.
within
(
'.atwho-view'
,
visible:
true
)
do
expect
(
page
).
to
have_content
(
participant
.
username
)
expect
(
page
).
to
have_content
(
participant
.
username
)
end
end
end
end
end
end
context
'On a Issue adding a new note'
,
js:
true
do
before
do
issue
=
create
(
:issue
,
author:
author
,
project:
project
)
create
(
:note
,
note:
'Ultralight Beam'
,
noteable:
issue
,
author:
participant
)
visit_issue
(
project
,
issue
)
end
context
'when typing @'
do
include_examples
"open suggestions"
before
do
open_member_suggestions
end
end
end
context
'On a Merge Request adding a new note'
,
js:
true
do
before
do
merge
=
create
(
:merge_request
,
source_project:
project
,
target_project:
project
,
author:
author
)
create
(
:note
,
note:
'Ultralight Beam'
,
noteable:
merge
,
author:
participant
)
visit_merge_request
(
project
,
merge
)
end
context
'when typing @'
do
include_examples
"open suggestions"
before
do
open_member_suggestions
end
end
end
def
open_member_suggestions
sleep
1
page
.
within
(
'.new-note'
)
do
sleep
1
find
(
'#note_note'
).
native
.
send_keys
(
'@'
)
end
end
end
end
def
visit_issue
(
project
,
issue
)
def
visit_issue
(
project
,
issue
)
visit
namespace_project_issue_path
(
project
.
namespace
,
project
,
issue
)
visit
namespace_project_issue_path
(
project
.
namespace
,
project
,
issue
)
end
end
def
visit_merge_request
(
project
,
merge
)
visit
namespace_project_merge_request_path
(
project
.
namespace
,
project
,
merge
)
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