2015-12-09 04:50:28 -05:00
|
|
|
@project_commits
|
2014-10-02 12:42:54 -04:00
|
|
|
Feature: Project Commits Diff Comments
|
2013-01-14 18:11:35 -05:00
|
|
|
Background:
|
|
|
|
Given I sign in as a user
|
|
|
|
And I own project "Shop"
|
|
|
|
And I visit project commit page
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can comment on a commit diff
|
|
|
|
Given I leave a diff comment like "Typo, please fix"
|
|
|
|
Then I should see a diff comment saying "Typo, please fix"
|
|
|
|
|
2015-12-03 03:30:30 -05:00
|
|
|
@javascript
|
|
|
|
Scenario: I can add a diff comment with a single emoji
|
|
|
|
Given I open a diff comment form
|
|
|
|
And I write a diff comment like ":smile:"
|
|
|
|
Then I should see a diff comment with an emoji image
|
|
|
|
|
2013-01-14 18:11:35 -05:00
|
|
|
@javascript
|
|
|
|
Scenario: I get a temporary form for the first comment on a diff line
|
|
|
|
Given I open a diff comment form
|
|
|
|
Then I should see a temporary diff comment form
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I have a cancel button on the diff form
|
|
|
|
Given I open a diff comment form
|
|
|
|
Then I should see the cancel comment button
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can cancel a diff form
|
|
|
|
Given I open a diff comment form
|
|
|
|
And I cancel the diff comment
|
|
|
|
Then I should not see the diff comment form
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can't open a second form for a diff line
|
|
|
|
Given I open a diff comment form
|
|
|
|
And I open a diff comment form
|
|
|
|
Then I should only see one diff form
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can have multiple forms
|
|
|
|
Given I open a diff comment form
|
|
|
|
And I write a diff comment like ":-1: I don't like this"
|
|
|
|
And I open another diff comment form
|
|
|
|
Then I should see a diff comment form with ":-1: I don't like this"
|
|
|
|
And I should see an empty diff comment form
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can preview multiple forms separately
|
|
|
|
Given I preview a diff comment text like "Should fix it :smile:"
|
|
|
|
And I preview another diff comment text like "DRY this up"
|
|
|
|
Then I should see two separate previews
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I have a reply button in discussions
|
|
|
|
Given I leave a diff comment like "Typo, please fix"
|
|
|
|
Then I should see a discussion reply button
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can preview with text
|
|
|
|
Given I open a diff comment form
|
|
|
|
And I write a diff comment like ":-1: I don't like this"
|
2014-10-17 00:36:52 -04:00
|
|
|
Then The diff comment preview tab should display rendered Markdown
|
2013-01-14 18:11:35 -05:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I preview a diff comment
|
|
|
|
Given I preview a diff comment text like "Should fix it :smile:"
|
|
|
|
Then I should see the diff comment preview
|
|
|
|
And I should not see the diff comment text field
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can edit after preview
|
|
|
|
Given I preview a diff comment text like "Should fix it :smile:"
|
2014-10-17 00:36:52 -04:00
|
|
|
Then I should see the diff comment write tab
|
2013-01-14 18:11:35 -05:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: The form gets removed after posting
|
|
|
|
Given I preview a diff comment text like "Should fix it :smile:"
|
|
|
|
And I submit the diff comment
|
|
|
|
Then I should not see the diff comment form
|
|
|
|
And I should see a discussion reply button
|
2015-06-05 18:24:05 -04:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can add a comment on a side-by-side commit diff (left side)
|
|
|
|
Given I open a diff comment form
|
|
|
|
And I click side-by-side diff button
|
|
|
|
When I leave a diff comment in a parallel view on the left side like "Old comment"
|
|
|
|
Then I should see a diff comment on the left side saying "Old comment"
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can add a comment on a side-by-side commit diff (right side)
|
|
|
|
Given I open a diff comment form
|
|
|
|
And I click side-by-side diff button
|
|
|
|
When I leave a diff comment in a parallel view on the right side like "New comment"
|
|
|
|
Then I should see a diff comment on the right side saying "New comment"
|