2015-12-09 04:50:28 -05:00
|
|
|
@project_merge_requests
|
2012-09-10 09:35:23 -04:00
|
|
|
Feature: Project Merge Requests
|
2012-08-09 01:13:29 -04:00
|
|
|
Background:
|
2012-09-10 09:35:23 -04:00
|
|
|
Given I sign in as a user
|
2012-08-09 01:13:29 -04:00
|
|
|
And I own project "Shop"
|
|
|
|
And project "Shop" have "Bug NS-04" open merge request
|
|
|
|
And project "Shop" have "Feature NS-03" closed merge request
|
2012-09-10 09:35:23 -04:00
|
|
|
And I visit project "Shop" merge requests page
|
2012-08-09 01:13:29 -04:00
|
|
|
|
|
|
|
Scenario: I should see open merge requests
|
|
|
|
Then I should see "Bug NS-04" in merge requests
|
|
|
|
And I should not see "Feature NS-03" in merge requests
|
|
|
|
|
2015-10-23 11:01:25 -04:00
|
|
|
Scenario: I should see CI status for merge requests
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
Given "Bug NS-05" has CI status
|
|
|
|
When I visit project "Shop" merge requests page
|
|
|
|
Then I should see merge request "Bug NS-05" with CI status
|
|
|
|
|
2015-11-03 09:44:14 -05:00
|
|
|
Scenario: I should not see target branch name when it is project's default branch
|
|
|
|
Then I should see "Bug NS-04" in merge requests
|
|
|
|
And I should not see "master" branch
|
|
|
|
|
|
|
|
Scenario: I should see target branch when it is different from default
|
|
|
|
Given project "Shop" have "Bug NS-06" open merge request
|
|
|
|
When I visit project "Shop" merge requests page
|
|
|
|
Then I should see "other_branch" branch
|
|
|
|
|
2016-02-04 13:23:58 -05:00
|
|
|
Scenario: I should not see the numbers of diverged commits if the branch is rebased on the target
|
|
|
|
Given project "Shop" have "Bug NS-07" open merge request with rebased branch
|
|
|
|
When I visit merge request page "Bug NS-07"
|
|
|
|
Then I should not see the diverged commits count
|
|
|
|
|
|
|
|
Scenario: I should see the numbers of diverged commits if the branch diverged from the target
|
|
|
|
Given project "Shop" have "Bug NS-08" open merge request with diverged branch
|
|
|
|
When I visit merge request page "Bug NS-08"
|
|
|
|
Then I should see the diverged commits count
|
|
|
|
|
2015-05-25 11:36:17 -04:00
|
|
|
Scenario: I should see rejected merge requests
|
2015-06-18 13:15:17 -04:00
|
|
|
Given I click link "Closed"
|
2012-08-09 01:13:29 -04:00
|
|
|
Then I should see "Feature NS-03" in merge requests
|
|
|
|
And I should not see "Bug NS-04" in merge requests
|
|
|
|
|
|
|
|
Scenario: I should see all merge requests
|
|
|
|
Given I click link "All"
|
|
|
|
Then I should see "Feature NS-03" in merge requests
|
|
|
|
And I should see "Bug NS-04" in merge requests
|
|
|
|
|
2016-03-01 06:32:20 -05:00
|
|
|
Scenario: I visit an open merge request page
|
2012-08-09 01:13:29 -04:00
|
|
|
Given I click link "Bug NS-04"
|
|
|
|
Then I should see merge request "Bug NS-04"
|
2016-02-15 09:19:23 -05:00
|
|
|
And I should see "1 of 1" in the sidebar
|
2012-08-09 01:13:29 -04:00
|
|
|
|
2016-03-01 06:32:20 -05:00
|
|
|
Scenario: I visit a merged merge request page
|
|
|
|
Given project "Shop" have "Feature NS-05" merged merge request
|
|
|
|
And I click link "Merged"
|
|
|
|
And I click link "Feature NS-05"
|
|
|
|
Then I should see merge request "Feature NS-05"
|
|
|
|
And I should see "3 of 3" in the sidebar
|
|
|
|
|
2012-08-09 01:13:29 -04:00
|
|
|
Scenario: I close merge request page
|
|
|
|
Given I click link "Bug NS-04"
|
|
|
|
And I click link "Close"
|
|
|
|
Then I should see closed merge request "Bug NS-04"
|
|
|
|
|
2014-03-03 03:21:50 -05:00
|
|
|
Scenario: I reopen merge request page
|
|
|
|
Given I click link "Bug NS-04"
|
|
|
|
And I click link "Close"
|
|
|
|
Then I should see closed merge request "Bug NS-04"
|
|
|
|
When I click link "Reopen"
|
|
|
|
Then I should see reopened merge request "Bug NS-04"
|
|
|
|
|
2016-04-06 07:52:07 -04:00
|
|
|
@javascript
|
2012-08-09 01:13:29 -04:00
|
|
|
Scenario: I submit new unassigned merge request
|
|
|
|
Given I click link "New Merge Request"
|
|
|
|
And I submit new merge request "Wiki Feature"
|
|
|
|
Then I should see merge request "Wiki Feature"
|
|
|
|
|
2015-06-23 08:30:21 -04:00
|
|
|
Scenario: I download a diff on a public merge request
|
|
|
|
Given public project "Community"
|
|
|
|
And "John Doe" owns public project "Community"
|
|
|
|
And project "Community" has "Bug CO-01" open merge request with diffs inside
|
|
|
|
Given I logout directly
|
|
|
|
And I visit merge request page "Bug CO-01"
|
|
|
|
And I click on "Email Patches"
|
|
|
|
Then I should see a patch diff
|
|
|
|
And I visit merge request page "Bug CO-01"
|
|
|
|
And I click on "Plain Diff"
|
|
|
|
Then I should see a patch diff
|
|
|
|
|
2013-02-28 02:43:48 -05:00
|
|
|
@javascript
|
|
|
|
Scenario: I comment on a merge request
|
|
|
|
Given I visit merge request page "Bug NS-04"
|
|
|
|
And I leave a comment like "XML attached"
|
|
|
|
Then I should see comment "XML attached"
|
2012-08-09 01:13:29 -04:00
|
|
|
|
2016-01-21 12:54:10 -05:00
|
|
|
@javascript
|
|
|
|
Scenario: Visiting Merge Requests after being sorted the list
|
|
|
|
Given I visit project "Shop" merge requests page
|
|
|
|
And I sort the list by "Oldest updated"
|
|
|
|
And I visit my project's home page
|
|
|
|
And I visit project "Shop" merge requests page
|
|
|
|
Then The list should be sorted by "Oldest updated"
|
|
|
|
|
2016-01-22 18:43:21 -05:00
|
|
|
@javascript
|
|
|
|
Scenario: Visiting Issues after being sorted the list
|
|
|
|
Given I visit project "Shop" merge requests page
|
|
|
|
And I sort the list by "Oldest updated"
|
|
|
|
And I visit project "Shop" issues page
|
|
|
|
Then The list should be sorted by "Oldest updated"
|
|
|
|
|
2016-01-22 17:00:35 -05:00
|
|
|
@javascript
|
|
|
|
Scenario: Visiting Merge Requests from a differente Project after sorting
|
|
|
|
Given I visit project "Shop" merge requests page
|
|
|
|
And I sort the list by "Oldest updated"
|
|
|
|
And I visit dashboard merge requests page
|
|
|
|
Then The list should be sorted by "Oldest updated"
|
|
|
|
|
2016-02-17 08:32:02 -05:00
|
|
|
@javascript
|
|
|
|
Scenario: Sort merge requests by upvotes/downvotes
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
And project "Shop" have "Bug NS-06" open merge request
|
|
|
|
And merge request "Bug NS-04" have 2 upvotes and 1 downvote
|
|
|
|
And merge request "Bug NS-06" have 1 upvote and 2 downvotes
|
|
|
|
And I sort the list by "Most popular"
|
|
|
|
Then The list should be sorted by "Most popular"
|
|
|
|
And I sort the list by "Least popular"
|
|
|
|
Then The list should be sorted by "Least popular"
|
|
|
|
|
2012-10-29 17:23:49 -04:00
|
|
|
@javascript
|
|
|
|
Scenario: I comment on a merge request diff
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
And I visit merge request page "Bug NS-05"
|
2015-06-25 21:30:18 -04:00
|
|
|
And I click on the Changes tab
|
2014-07-31 12:19:40 -04:00
|
|
|
And I leave a comment like "Line is wrong" on diff
|
2012-10-29 17:23:49 -04:00
|
|
|
And I switch to the merge request's comments tab
|
2014-07-31 12:19:40 -04:00
|
|
|
Then I should see a discussion has started on diff
|
2016-01-19 12:17:56 -05:00
|
|
|
And I should see a badge of "1" next to the discussion link
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I see a new comment on merge request diff from another user in the discussion tab
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
And I visit merge request page "Bug NS-05"
|
|
|
|
And user "John Doe" leaves a comment like "Line is wrong" on diff
|
|
|
|
Then I should see a discussion by user "John Doe" has started on diff
|
|
|
|
And I should see a badge of "1" next to the discussion link
|
2012-10-29 17:23:49 -04:00
|
|
|
|
2015-12-09 08:30:21 -05:00
|
|
|
@javascript
|
|
|
|
Scenario: I edit a comment on a merge request diff
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
And I visit merge request page "Bug NS-05"
|
|
|
|
And I click on the Changes tab
|
|
|
|
And I leave a comment like "Line is wrong" on diff
|
|
|
|
And I change the comment "Line is wrong" to "Typo, please fix" on diff
|
|
|
|
Then I should not see a diff comment saying "Line is wrong"
|
|
|
|
And I should see a diff comment saying "Typo, please fix"
|
|
|
|
|
2015-12-10 19:07:25 -05:00
|
|
|
@javascript
|
|
|
|
Scenario: I delete a comment on a merge request diff
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
And I visit merge request page "Bug NS-05"
|
|
|
|
And I click on the Changes tab
|
|
|
|
And I leave a comment like "Line is wrong" on diff
|
2016-01-19 12:17:56 -05:00
|
|
|
And I should see a badge of "1" next to the discussion link
|
2015-12-10 19:07:25 -05:00
|
|
|
And I delete the comment "Line is wrong" on diff
|
|
|
|
And I click on the Discussion tab
|
|
|
|
Then I should not see any discussion
|
2016-01-19 12:17:56 -05:00
|
|
|
And I should see a badge of "0" next to the discussion link
|
2015-12-10 19:07:25 -05:00
|
|
|
|
2012-10-29 17:23:49 -04:00
|
|
|
@javascript
|
|
|
|
Scenario: I comment on a line of a commit in merge request
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
And I visit merge request page "Bug NS-05"
|
2014-07-31 12:19:40 -04:00
|
|
|
And I click on the commit in the merge request
|
|
|
|
And I leave a comment like "Line is wrong" on diff in commit
|
2012-10-29 17:23:49 -04:00
|
|
|
And I switch to the merge request's comments tab
|
2014-07-31 12:19:40 -04:00
|
|
|
Then I should see a discussion has started on commit diff
|
2012-10-29 17:23:49 -04:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I comment on a commit in merge request
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
And I visit merge request page "Bug NS-05"
|
2014-07-31 12:19:40 -04:00
|
|
|
And I click on the commit in the merge request
|
2014-01-23 05:55:43 -05:00
|
|
|
And I leave a comment on the diff page in commit
|
2012-10-29 17:23:49 -04:00
|
|
|
And I switch to the merge request's comments tab
|
2014-07-31 12:19:40 -04:00
|
|
|
Then I should see a discussion has started on commit
|
2014-01-14 04:49:54 -05:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I accept merge request with custom commit message
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
And merge request "Bug NS-05" is mergeable
|
|
|
|
And I visit merge request page "Bug NS-05"
|
|
|
|
And merge request is mergeable
|
|
|
|
Then I modify merge commit message
|
|
|
|
And I accept this merge request
|
|
|
|
Then I should see merged request
|
2014-02-04 02:48:33 -05:00
|
|
|
|
|
|
|
# Markdown
|
|
|
|
|
|
|
|
Scenario: Headers inside the description should have ids generated for them.
|
|
|
|
When I visit merge request page "Bug NS-04"
|
|
|
|
Then Header "Description header" should have correct id and link
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: Headers inside comments should not have ids generated for them.
|
|
|
|
Given I visit merge request page "Bug NS-04"
|
|
|
|
And I leave a comment with a header containing "Comment with a header"
|
|
|
|
Then The comment with the header should not have an ID
|
2014-01-09 11:50:27 -05:00
|
|
|
|
|
|
|
# Toggling inline comments
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I hide comments on a merge request diff with comments in a single file
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
And I visit merge request page "Bug NS-05"
|
2015-06-25 21:30:18 -04:00
|
|
|
And I click on the Changes tab
|
2015-09-30 09:29:52 -04:00
|
|
|
And I leave a comment like "Line is wrong" on line 39 of the third file
|
|
|
|
And I click link "Hide inline discussion" of the third file
|
|
|
|
Then I should not see a comment like "Line is wrong here" in the third file
|
2014-01-09 11:50:27 -05:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I show comments on a merge request diff with comments in a single file
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
And I visit merge request page "Bug NS-05"
|
2015-06-25 21:30:18 -04:00
|
|
|
And I click on the Changes tab
|
2015-09-30 09:29:52 -04:00
|
|
|
And I leave a comment like "Line is wrong" on line 39 of the third file
|
|
|
|
Then I should see a comment like "Line is wrong" in the third file
|
2014-01-09 11:50:27 -05:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I hide comments on a merge request diff with comments in multiple files
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
And I visit merge request page "Bug NS-05"
|
2015-06-25 21:30:18 -04:00
|
|
|
And I click on the Changes tab
|
2015-09-30 09:29:52 -04:00
|
|
|
And I leave a comment like "Line is correct" on line 12 of the second file
|
|
|
|
And I leave a comment like "Line is wrong" on line 39 of the third file
|
|
|
|
And I click link "Hide inline discussion" of the third file
|
|
|
|
Then I should not see a comment like "Line is wrong here" in the third file
|
|
|
|
And I should still see a comment like "Line is correct" in the second file
|
2014-01-09 11:50:27 -05:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I show comments on a merge request diff with comments in multiple files
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
And I visit merge request page "Bug NS-05"
|
2015-06-25 21:30:18 -04:00
|
|
|
And I click on the Changes tab
|
2015-09-30 09:29:52 -04:00
|
|
|
And I leave a comment like "Line is correct" on line 12 of the second file
|
|
|
|
And I leave a comment like "Line is wrong" on line 39 of the third file
|
|
|
|
And I click link "Hide inline discussion" of the third file
|
|
|
|
And I click link "Show inline discussion" of the third file
|
|
|
|
Then I should see a comment like "Line is wrong" in the third file
|
|
|
|
And I should still see a comment like "Line is correct" in the second file
|
2014-08-02 11:12:01 -04:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I unfold diff
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
And I visit merge request page "Bug NS-05"
|
2015-06-25 21:30:18 -04:00
|
|
|
And I click on the Changes tab
|
2014-08-02 11:12:01 -04:00
|
|
|
And I unfold diff
|
|
|
|
Then I should see additional file lines
|
2014-09-12 14:12:31 -04:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I show comments on a merge request side-by-side diff with comments in multiple files
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
And I visit merge request page "Bug NS-05"
|
2015-06-25 21:30:18 -04:00
|
|
|
And I click on the Changes tab
|
2015-09-30 09:29:52 -04:00
|
|
|
And I leave a comment like "Line is correct" on line 12 of the second file
|
|
|
|
And I leave a comment like "Line is wrong" on line 39 of the third file
|
2014-09-12 14:12:31 -04:00
|
|
|
And I click Side-by-side Diff tab
|
|
|
|
Then I should see comments on the side-by-side diff page
|
2014-10-06 02:59:03 -04:00
|
|
|
|
2015-03-26 02:39:34 -04:00
|
|
|
@javascript
|
|
|
|
Scenario: I view diffs on a merge request
|
|
|
|
Given project "Shop" have "Bug NS-05" open merge request with diffs inside
|
|
|
|
And I visit merge request page "Bug NS-05"
|
2015-06-25 21:30:18 -04:00
|
|
|
And I click on the Changes tab
|
2015-03-26 02:39:34 -04:00
|
|
|
Then I should see the proper Inline and Side-by-side links
|
|
|
|
|
2014-10-15 03:21:21 -04:00
|
|
|
# Description preview
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can't preview without text
|
|
|
|
Given I visit merge request page "Bug NS-04"
|
2014-10-17 00:10:50 -04:00
|
|
|
And I click link "Edit" for the merge request
|
2014-10-15 03:21:21 -04:00
|
|
|
And I haven't written any description text
|
2014-10-18 19:43:45 -04:00
|
|
|
Then The Markdown preview tab should say there is nothing to do
|
2014-10-15 03:21:21 -04:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can preview with text
|
|
|
|
Given I visit merge request page "Bug NS-04"
|
2014-10-17 00:10:50 -04:00
|
|
|
And I click link "Edit" for the merge request
|
2014-10-18 19:43:45 -04:00
|
|
|
And I write a description like ":+1: Nice"
|
|
|
|
Then The Markdown preview tab should display rendered Markdown
|
2014-10-15 03:21:21 -04:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I preview a merge request description
|
|
|
|
Given I visit merge request page "Bug NS-04"
|
2014-10-17 00:10:50 -04:00
|
|
|
And I click link "Edit" for the merge request
|
2014-10-15 03:21:21 -04:00
|
|
|
And I preview a description text like "Bug fixed :smile:"
|
|
|
|
Then I should see the Markdown preview
|
|
|
|
And I should not see the Markdown text field
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can edit after preview
|
|
|
|
Given I visit merge request page "Bug NS-04"
|
2014-10-17 00:10:50 -04:00
|
|
|
And I click link "Edit" for the merge request
|
2014-10-15 03:21:21 -04:00
|
|
|
And I preview a description text like "Bug fixed :smile:"
|
2014-10-18 19:43:45 -04:00
|
|
|
Then I should see the Markdown write tab
|
2015-03-12 19:20:58 -04:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I search merge request
|
|
|
|
Given I click link "All"
|
|
|
|
When I fill in merge request search with "Fe"
|
|
|
|
Then I should see "Feature NS-03" in merge requests
|
|
|
|
And I should not see "Bug NS-04" in merge requests
|
2015-03-16 11:20:17 -04:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can unsubscribe from merge request
|
|
|
|
Given I visit merge request page "Bug NS-04"
|
|
|
|
Then I should see that I am subscribed
|
|
|
|
When I click button "Unsubscribe"
|
|
|
|
Then I should see that I am unsubscribed
|
2015-05-28 21:00:37 -04:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can change the target branch
|
|
|
|
Given I visit merge request page "Bug NS-04"
|
|
|
|
And I click link "Edit" for the merge request
|
|
|
|
When I click the "Target branch" dropdown
|
|
|
|
And I select a new target branch
|
|
|
|
Then I should see new target branch changes
|
2016-03-18 08:42:30 -04:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can close merge request after commenting
|
|
|
|
Given I visit merge request page "Bug NS-04"
|
|
|
|
And I leave a comment like "XML attached"
|
|
|
|
Then I should see comment "XML attached"
|
|
|
|
And I click link "Close"
|
|
|
|
Then I should see closed merge request "Bug NS-04"
|