OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/features/issues/copy_with_watchers.feature

49 lines
2.0 KiB

Feature: Copying an issue should copy the watchers
Background:
Given there is 1 project with the following:
| identifier | omicronpersei8 |
And there is a role "CanCopyIssues"
And the role "CanCopyIssues" may have the following rights:
| add_issues |
| view_issues |
| view_issue_watchers |
And there is a role "CanAddWatchers"
And the role "CanAddWatchers" may have the following rights:
| add_issues |
| view_issues |
| view_issue_watchers |
| add_issue_watchers |
And there is 1 user with the following:
| login | ndnd |
And the user "ndnd" is a "CanCopyIssues" in the project "omicronpersei8"
And there is 1 user with the following:
| login | lrrr |
And the user "lrrr" is a "CanAddWatchers" in the project "omicronpersei8"
And there are the following issue status:
| name | is_default |
| New | true |
And the user "lrrr" has 1 issue with the following:
| subject | Improve drive |
| description | Acquire horn |
And the issue "Improve drive" is watched by:
| lrrr |
| ndnd |
Scenario: Watchers shouldn't be copied when the user doesn't have the permission to
Given I am logged in as "ndnd"
When I go to the copy page for the issue "Improve drive"
Then I should not see "Watchers"
When I fill in "issue_subject" with "Improve drive even more"
When I click on the first button matching "Create"
Then I should not see "Watchers"
And the issue "Improve drive even more" should have 0 watchers
Scenario: Watchers should be copied when the user has the permission to
Given I am logged in as "lrrr"
When I go to the copy page for the issue "Improve drive"
Then I should see "Watchers" within "p#watchers_form"
When I fill in "issue_subject" with "Improve drive even more"
When I click on the first button matching "Create"
Then I should see "Watchers (2)"
And the issue "Improve drive even more" should have 2 watchers