2012-06-18 18:34:09 +02:00
|
|
|
Feature: Project Team management
|
2012-09-10 15:35:23 +02:00
|
|
|
Background:
|
|
|
|
Given I sign in as a user
|
2012-06-18 18:34:09 +02:00
|
|
|
And I own project "Shop"
|
2012-09-10 15:35:23 +02:00
|
|
|
And gitlab user "Mike"
|
|
|
|
And gitlab user "Sam"
|
2012-06-18 18:34:09 +02:00
|
|
|
And "Sam" is "Shop" developer
|
2012-09-10 15:35:23 +02:00
|
|
|
And I visit project "Shop" team page
|
2012-06-18 18:34:09 +02:00
|
|
|
|
|
|
|
Scenario: See all team members
|
|
|
|
Then I should be able to see myself in team
|
|
|
|
And I should see "Sam" in team list
|
|
|
|
|
|
|
|
Scenario: Add user to project
|
|
|
|
Given I click link "New Team Member"
|
|
|
|
And I select "Mike" as "Reporter"
|
|
|
|
Then I should see "Mike" in team list as "Reporter"
|
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: Update user access
|
|
|
|
Given I should see "Sam" in team list as "Developer"
|
|
|
|
And I change "Sam" role to "Reporter"
|
2012-09-10 15:35:23 +02:00
|
|
|
Then I visit project "Shop" team page
|
2012-06-18 18:34:09 +02:00
|
|
|
And I should see "Sam" in team list as "Reporter"
|
|
|
|
|
|
|
|
Scenario: View team member profile
|
|
|
|
Given I click link "Sam"
|
|
|
|
Then I should see "Sam" team profile
|
|
|
|
|
|
|
|
Scenario: Cancel team member
|
|
|
|
Given I click link "Sam"
|
|
|
|
And I click link "Remove from team"
|
2012-09-10 15:35:23 +02:00
|
|
|
Then I visit project "Shop" team page
|
2012-06-18 18:34:09 +02:00
|
|
|
And I should not see "Sam" in team list
|
2012-10-24 14:23:04 +02:00
|
|
|
|
|
|
|
Scenario: Import team from another project
|
|
|
|
Given I own project "Website"
|
|
|
|
And "Mike" is "Website" reporter
|
|
|
|
And I click link "Import team from another project"
|
|
|
|
When I submit "Website" project for import team
|
|
|
|
Then I should see "Mike" in team list as "Reporter"
|