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
iv
gitlab-ce
Commits
86e368a8
Commit
86e368a8
authored
Apr 10, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduce notes_on_merge_requests_spec time from 3 min to 1min
parent
c7a64311
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
55 deletions
+41
-55
spec/features/notes_on_merge_requests_spec.rb
spec/features/notes_on_merge_requests_spec.rb
+41
-55
No files found.
spec/features/notes_on_merge_requests_spec.rb
View file @
86e368a8
...
@@ -14,15 +14,11 @@ describe "On a merge request", js: true do
...
@@ -14,15 +14,11 @@ describe "On a merge request", js: true do
subject
{
page
}
subject
{
page
}
describe
"the note form"
do
describe
"the note form"
do
# main target form creation
it
'should be valid'
do
it
{
should
have_css
(
".js-main-target-form"
,
visible:
true
,
count:
1
)
}
should
have_css
(
".js-main-target-form"
,
visible:
true
,
count:
1
)
find
(
".js-main-target-form input[type=submit]"
).
value
.
should
==
"Add Comment"
# button initalization
within
(
".js-main-target-form"
)
{
should_not
have_link
(
"Cancel"
)
}
it
{
find
(
".js-main-target-form input[type=submit]"
).
value
.
should
==
"Add Comment"
}
within
(
".js-main-target-form"
)
{
should
have_css
(
".js-note-preview-button"
,
visible:
false
)
}
it
{
within
(
".js-main-target-form"
)
{
should_not
have_link
(
"Cancel"
)
}
}
describe
"without text"
do
it
{
within
(
".js-main-target-form"
)
{
should
have_css
(
".js-note-preview-button"
,
visible:
false
)
}
}
end
end
describe
"with text"
do
describe
"with text"
do
...
@@ -32,9 +28,10 @@ describe "On a merge request", js: true do
...
@@ -32,9 +28,10 @@ describe "On a merge request", js: true do
end
end
end
end
it
{
within
(
".js-main-target-form"
)
{
should_not
have_css
(
".js-comment-button[disabled]"
)
}
}
it
'should have enable submit button and preview button'
do
within
(
".js-main-target-form"
)
{
should_not
have_css
(
".js-comment-button[disabled]"
)
}
it
{
within
(
".js-main-target-form"
)
{
should
have_css
(
".js-note-preview-button"
,
visible:
true
)
}
}
within
(
".js-main-target-form"
)
{
should
have_css
(
".js-note-preview-button"
,
visible:
true
)
}
end
end
end
describe
"with preview"
do
describe
"with preview"
do
...
@@ -45,10 +42,11 @@ describe "On a merge request", js: true do
...
@@ -45,10 +42,11 @@ describe "On a merge request", js: true do
end
end
end
end
it
{
within
(
".js-main-target-form"
)
{
should
have_css
(
".js-note-preview"
,
text:
"This is awesome"
,
visible:
true
)
}
}
it
'should have text and visible edit button'
do
within
(
".js-main-target-form"
)
{
should
have_css
(
".js-note-preview"
,
text:
"This is awesome"
,
visible:
true
)
}
it
{
within
(
".js-main-target-form"
)
{
should
have_css
(
".js-note-preview-button"
,
visible:
false
)
}
}
within
(
".js-main-target-form"
)
{
should
have_css
(
".js-note-preview-button"
,
visible:
false
)
}
it
{
within
(
".js-main-target-form"
)
{
should
have_css
(
".js-note-edit-button"
,
visible:
true
)
}
}
within
(
".js-main-target-form"
)
{
should
have_css
(
".js-note-edit-button"
,
visible:
true
)
}
end
end
end
end
end
...
@@ -61,27 +59,20 @@ describe "On a merge request", js: true do
...
@@ -61,27 +59,20 @@ describe "On a merge request", js: true do
end
end
end
end
# note added
it
'should be added and form reset'
do
it
{
should
have_content
(
"This is awsome!"
)
}
should
have_content
(
"This is awsome!"
)
within
(
".js-main-target-form"
)
{
should
have_no_field
(
"note[note]"
,
with:
"This is awesome!"
)
}
# reset form
within
(
".js-main-target-form"
)
{
should
have_css
(
".js-note-preview"
,
visible:
false
)
}
it
{
within
(
".js-main-target-form"
)
{
should
have_no_field
(
"note[note]"
,
with:
"This is awesome!"
)
}
}
within
(
".js-main-target-form"
)
{
should
have_css
(
".js-note-text"
,
visible:
true
)
}
end
# return from preview
it
{
within
(
".js-main-target-form"
)
{
should
have_css
(
".js-note-preview"
,
visible:
false
)
}
}
it
{
within
(
".js-main-target-form"
)
{
should
have_css
(
".js-note-text"
,
visible:
true
)
}
}
it
"should be removable"
do
it
"should be removable"
do
find
(
".js-note-delete"
).
trigger
(
"click"
)
find
(
".js-note-delete"
).
trigger
(
"click"
)
should_not
have_css
(
".note"
)
should_not
have_css
(
".note"
)
end
end
end
end
end
end
describe
"On a merge request diff"
,
js:
true
,
focus:
true
do
describe
"On a merge request diff"
,
js:
true
,
focus:
true
do
let!
(
:project
)
{
create
(
:project_with_code
)
}
let!
(
:project
)
{
create
(
:project_with_code
)
}
let!
(
:merge_request
)
{
create
(
:merge_request_with_diffs
,
project:
project
)
}
let!
(
:merge_request
)
{
create
(
:merge_request_with_diffs
,
project:
project
)
}
...
@@ -89,12 +80,7 @@ describe "On a merge request diff", js: true, focus: true do
...
@@ -89,12 +80,7 @@ describe "On a merge request diff", js: true, focus: true do
before
do
before
do
login_as
:user
login_as
:user
project
.
team
<<
[
@user
,
:master
]
project
.
team
<<
[
@user
,
:master
]
visit
diffs_project_merge_request_path
(
project
,
merge_request
)
visit
diffs_project_merge_request_path
(
project
,
merge_request
)
within
'.diffs-tab'
do
click_link
(
"Diff"
)
end
end
end
subject
{
page
}
subject
{
page
}
...
@@ -111,15 +97,15 @@ describe "On a merge request diff", js: true, focus: true do
...
@@ -111,15 +97,15 @@ describe "On a merge request diff", js: true, focus: true do
end
end
describe
"the note form"
do
describe
"the note form"
do
# set up hidden fields correctly
it
'should be valid'
do
it
{
within
(
".js-temp-notes-holder"
)
{
find
(
"#note_noteable_type"
).
value
.
should
==
"MergeRequest"
}
}
within
(
".js-temp-notes-holder"
)
{
find
(
"#note_noteable_type"
).
value
.
should
==
"MergeRequest"
}
it
{
within
(
".js-temp-notes-holder"
)
{
find
(
"#note_noteable_id"
).
value
.
should
==
merge_request
.
id
.
to_s
}
}
within
(
".js-temp-notes-holder"
)
{
find
(
"#note_noteable_id"
).
value
.
should
==
merge_request
.
id
.
to_s
}
it
{
within
(
".js-temp-notes-holder"
)
{
find
(
"#note_commit_id"
).
value
.
should
==
""
}
}
within
(
".js-temp-notes-holder"
)
{
find
(
"#note_commit_id"
).
value
.
should
==
""
}
it
{
within
(
".js-temp-notes-holder"
)
{
find
(
"#note_line_code"
).
value
.
should
==
"4735dfc552ad7bf15ca468adc3cad9d05b624490_185_185"
}
}
within
(
".js-temp-notes-holder"
)
{
find
(
"#note_line_code"
).
value
.
should
==
"4735dfc552ad7bf15ca468adc3cad9d05b624490_185_185"
}
# buttons
should
have_button
(
"Add Comment"
)
it
{
should
have_button
(
"Add Comment"
)
}
should
have_css
(
".js-close-discussion-note-form"
,
text:
"Cancel"
)
it
{
should
have_css
(
".js-close-discussion-note-form"
,
text:
"Cancel"
)
}
end
it
"shouldn't add a second form for same row"
do
it
"shouldn't add a second form for same row"
do
find
(
"#4735dfc552ad7bf15ca468adc3cad9d05b624490_185_185.line_holder .js-add-diff-note-button"
).
trigger
(
"click"
)
find
(
"#4735dfc552ad7bf15ca468adc3cad9d05b624490_185_185.line_holder .js-add-diff-note-button"
).
trigger
(
"click"
)
...
@@ -175,11 +161,12 @@ describe "On a merge request diff", js: true, focus: true do
...
@@ -175,11 +161,12 @@ describe "On a merge request diff", js: true, focus: true do
# removed form after submit
# removed form after submit
it
{
should
have_no_css
(
"#342e16cbbd482ac2047dc679b2749d248cc1428f_18_17.line_holder + .js-temp-notes-holder"
)
}
it
{
should
have_no_css
(
"#342e16cbbd482ac2047dc679b2749d248cc1428f_18_17.line_holder + .js-temp-notes-holder"
)
}
# added discussion
it
'should be added as discussion'
do
it
{
should
have_content
(
"Another comment on line 17"
)
}
should
have_content
(
"Another comment on line 17"
)
it
{
should
have_css
(
"#342e16cbbd482ac2047dc679b2749d248cc1428f_18_17.line_holder + .notes_holder"
)
}
should
have_css
(
"#342e16cbbd482ac2047dc679b2749d248cc1428f_18_17.line_holder + .notes_holder"
)
it
{
should
have_css
(
"#342e16cbbd482ac2047dc679b2749d248cc1428f_18_17.line_holder + .notes_holder .note"
,
count:
1
)
}
should
have_css
(
"#342e16cbbd482ac2047dc679b2749d248cc1428f_18_17.line_holder + .notes_holder .note"
,
count:
1
)
it
{
should
have_link
(
"Reply"
)
}
should
have_link
(
"Reply"
)
end
it
"should remove last note of a discussion"
do
it
"should remove last note of a discussion"
do
within
(
"#342e16cbbd482ac2047dc679b2749d248cc1428f_18_17.line_holder + .notes_holder"
)
do
within
(
"#342e16cbbd482ac2047dc679b2749d248cc1428f_18_17.line_holder + .notes_holder"
)
do
...
@@ -209,13 +196,12 @@ describe "On a merge request diff", js: true, focus: true do
...
@@ -209,13 +196,12 @@ describe "On a merge request diff", js: true, focus: true do
end
end
end
end
# inserted note
it
'should be inserted and form removed from reply'
do
it
{
should
have_content
(
"An additional comment in reply"
)
}
should
have_content
(
"An additional comment in reply"
)
it
{
within
(
"#4735dfc552ad7bf15ca468adc3cad9d05b624490_184_184.line_holder + .notes_holder"
)
{
should
have_css
(
".note"
,
count:
2
)
}
}
within
(
"#4735dfc552ad7bf15ca468adc3cad9d05b624490_184_184.line_holder + .notes_holder"
)
{
should
have_css
(
".note"
,
count:
2
)
}
within
(
"#4735dfc552ad7bf15ca468adc3cad9d05b624490_184_184.line_holder + .notes_holder"
)
{
should
have_no_css
(
"form"
)
}
# removed form after reply
within
(
"#4735dfc552ad7bf15ca468adc3cad9d05b624490_184_184.line_holder + .notes_holder"
)
{
should
have_link
(
"Reply"
)
}
it
{
within
(
"#4735dfc552ad7bf15ca468adc3cad9d05b624490_184_184.line_holder + .notes_holder"
)
{
should
have_no_css
(
"form"
)
}
}
end
it
{
within
(
"#4735dfc552ad7bf15ca468adc3cad9d05b624490_184_184.line_holder + .notes_holder"
)
{
should
have_link
(
"Reply"
)
}
}
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